conftest.py 895 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. import os
  2. import shutil
  3. import pytest
  4. # pylint: disable=redefined-outer-name
  5. @pytest.fixture
  6. def tracks_dir_path():
  7. return os.path.join(os.path.dirname(__file__), 'tracks')
  8. @pytest.fixture
  9. def empty_id3_path(tmpdir, tracks_dir_path):
  10. path = tmpdir.join('empty.mp3').strpath
  11. shutil.copyfile(
  12. src=os.path.join(tracks_dir_path, 'id3v2.4-empty.mp3'),
  13. dst=path,
  14. )
  15. return path
  16. @pytest.fixture
  17. def empty_ogg_opus_path(tmpdir, tracks_dir_path):
  18. path = tmpdir.join('empty.opus').strpath
  19. shutil.copyfile(
  20. src=os.path.join(tracks_dir_path, 'ogg-opus-empty.opus'),
  21. dst=path,
  22. )
  23. return path
  24. @pytest.fixture
  25. def empty_ogg_vorbis_path(tmpdir, tracks_dir_path):
  26. path = tmpdir.join('empty.ogg').strpath
  27. shutil.copyfile(
  28. src=os.path.join(tracks_dir_path, 'ogg-vorbis-empty.ogg'),
  29. dst=path,
  30. )
  31. return path