2017-12-24 18:15:21 +00:00
|
|
|
import datetime
|
|
|
|
import os
|
2018-04-21 14:33:15 +00:00
|
|
|
import uuid
|
2017-12-24 18:15:21 +00:00
|
|
|
|
2018-06-10 08:55:16 +00:00
|
|
|
import pytest
|
|
|
|
|
2017-12-24 18:15:21 +00:00
|
|
|
from funkwhale_api.music import metadata
|
|
|
|
|
|
|
|
DATA_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
|
|
|
2018-09-23 12:38:42 +00:00
|
|
|
def test_get_all_metadata_at_once():
|
|
|
|
path = os.path.join(DATA_DIR, "test.ogg")
|
|
|
|
data = metadata.Metadata(path)
|
|
|
|
|
|
|
|
expected = {
|
|
|
|
"title": "Peer Gynt Suite no. 1, op. 46: I. Morning",
|
|
|
|
"artist": "Edvard Grieg",
|
|
|
|
"album_artist": "Edvard Grieg",
|
|
|
|
"album": "Peer Gynt Suite no. 1, op. 46",
|
|
|
|
"date": datetime.date(2012, 8, 15),
|
|
|
|
"track_number": 1,
|
|
|
|
"musicbrainz_albumid": uuid.UUID("a766da8b-8336-47aa-a3ee-371cc41ccc75"),
|
|
|
|
"musicbrainz_recordingid": uuid.UUID("bd21ac48-46d8-4e78-925f-d9cc2a294656"),
|
|
|
|
"musicbrainz_artistid": uuid.UUID("013c8e5b-d72a-4cd3-8dee-6c64d6125823"),
|
|
|
|
"musicbrainz_albumartistid": uuid.UUID("013c8e5b-d72a-4cd3-8dee-6c64d6125823"),
|
|
|
|
}
|
|
|
|
|
|
|
|
assert data.all() == expected
|
|
|
|
|
|
|
|
|
2018-08-29 19:02:57 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"field,value",
|
|
|
|
[
|
|
|
|
("title", "Peer Gynt Suite no. 1, op. 46: I. Morning"),
|
|
|
|
("artist", "Edvard Grieg"),
|
2018-09-23 12:38:42 +00:00
|
|
|
("album_artist", "Edvard Grieg"),
|
2018-08-29 19:02:57 +00:00
|
|
|
("album", "Peer Gynt Suite no. 1, op. 46"),
|
|
|
|
("date", datetime.date(2012, 8, 15)),
|
|
|
|
("track_number", 1),
|
|
|
|
("musicbrainz_albumid", uuid.UUID("a766da8b-8336-47aa-a3ee-371cc41ccc75")),
|
|
|
|
("musicbrainz_recordingid", uuid.UUID("bd21ac48-46d8-4e78-925f-d9cc2a294656")),
|
|
|
|
("musicbrainz_artistid", uuid.UUID("013c8e5b-d72a-4cd3-8dee-6c64d6125823")),
|
2018-09-23 12:38:42 +00:00
|
|
|
(
|
|
|
|
"musicbrainz_albumartistid",
|
|
|
|
uuid.UUID("013c8e5b-d72a-4cd3-8dee-6c64d6125823"),
|
|
|
|
),
|
2018-08-29 19:02:57 +00:00
|
|
|
],
|
|
|
|
)
|
2018-09-23 12:38:42 +00:00
|
|
|
def test_can_get_metadata_from_ogg_file(field, value):
|
|
|
|
path = os.path.join(DATA_DIR, "test.ogg")
|
2018-08-29 19:02:57 +00:00
|
|
|
data = metadata.Metadata(path)
|
|
|
|
|
|
|
|
assert data.get(field) == value
|
|
|
|
|
|
|
|
|
2018-06-09 13:36:16 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"field,value",
|
|
|
|
[
|
|
|
|
("title", "Peer Gynt Suite no. 1, op. 46: I. Morning"),
|
|
|
|
("artist", "Edvard Grieg"),
|
2018-09-23 12:38:42 +00:00
|
|
|
("album_artist", "Edvard Grieg"),
|
2018-06-09 13:36:16 +00:00
|
|
|
("album", "Peer Gynt Suite no. 1, op. 46"),
|
|
|
|
("date", datetime.date(2012, 8, 15)),
|
|
|
|
("track_number", 1),
|
|
|
|
("musicbrainz_albumid", uuid.UUID("a766da8b-8336-47aa-a3ee-371cc41ccc75")),
|
|
|
|
("musicbrainz_recordingid", uuid.UUID("bd21ac48-46d8-4e78-925f-d9cc2a294656")),
|
|
|
|
("musicbrainz_artistid", uuid.UUID("013c8e5b-d72a-4cd3-8dee-6c64d6125823")),
|
2018-09-23 12:38:42 +00:00
|
|
|
(
|
|
|
|
"musicbrainz_albumartistid",
|
|
|
|
uuid.UUID("013c8e5b-d72a-4cd3-8dee-6c64d6125823"),
|
|
|
|
),
|
2018-06-09 13:36:16 +00:00
|
|
|
],
|
|
|
|
)
|
2018-09-23 12:38:42 +00:00
|
|
|
def test_can_get_metadata_from_opus_file(field, value):
|
|
|
|
path = os.path.join(DATA_DIR, "test.opus")
|
2017-12-24 18:15:21 +00:00
|
|
|
data = metadata.Metadata(path)
|
|
|
|
|
|
|
|
assert data.get(field) == value
|
|
|
|
|
2018-06-09 13:36:16 +00:00
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"field,value",
|
|
|
|
[
|
|
|
|
("title", "Drei Kreuze (dass wir hier sind)"),
|
|
|
|
("artist", "Die Toten Hosen"),
|
2018-09-23 12:38:42 +00:00
|
|
|
("album_artist", "Die Toten Hosen"),
|
2018-06-09 13:36:16 +00:00
|
|
|
("album", "Ballast der Republik"),
|
|
|
|
("date", datetime.date(2012, 5, 4)),
|
|
|
|
("track_number", 1),
|
|
|
|
("musicbrainz_albumid", uuid.UUID("1f0441ad-e609-446d-b355-809c445773cf")),
|
|
|
|
("musicbrainz_recordingid", uuid.UUID("124d0150-8627-46bc-bc14-789a3bc960c8")),
|
|
|
|
("musicbrainz_artistid", uuid.UUID("c3bc80a6-1f4a-4e17-8cf0-6b1efe8302f1")),
|
2018-09-23 12:38:42 +00:00
|
|
|
(
|
|
|
|
"musicbrainz_albumartistid",
|
|
|
|
uuid.UUID("c3bc80a6-1f4a-4e17-8cf0-6b1efe8302f1"),
|
|
|
|
),
|
2018-06-09 13:36:16 +00:00
|
|
|
],
|
|
|
|
)
|
2018-05-23 21:33:19 +00:00
|
|
|
def test_can_get_metadata_from_ogg_theora_file(field, value):
|
2018-06-09 13:36:16 +00:00
|
|
|
path = os.path.join(DATA_DIR, "test_theora.ogg")
|
2018-05-23 21:33:19 +00:00
|
|
|
data = metadata.Metadata(path)
|
|
|
|
|
|
|
|
assert data.get(field) == value
|
|
|
|
|
2017-12-24 18:15:21 +00:00
|
|
|
|
2018-06-09 13:36:16 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"field,value",
|
|
|
|
[
|
|
|
|
("title", "Bend"),
|
2018-09-23 12:38:42 +00:00
|
|
|
("artist", "Binärpilot"),
|
|
|
|
("album_artist", "Binärpilot"),
|
2018-06-09 13:36:16 +00:00
|
|
|
("album", "You Can't Stop Da Funk"),
|
|
|
|
("date", datetime.date(2006, 2, 7)),
|
|
|
|
("track_number", 2),
|
|
|
|
("musicbrainz_albumid", uuid.UUID("ce40cdb1-a562-4fd8-a269-9269f98d4124")),
|
|
|
|
("musicbrainz_recordingid", uuid.UUID("f269d497-1cc0-4ae4-a0c4-157ec7d73fcb")),
|
|
|
|
("musicbrainz_artistid", uuid.UUID("9c6bddde-6228-4d9f-ad0d-03f6fcb19e13")),
|
2018-09-23 12:38:42 +00:00
|
|
|
(
|
|
|
|
"musicbrainz_albumartistid",
|
|
|
|
uuid.UUID("9c6bddde-6228-4d9f-ad0d-03f6fcb19e13"),
|
|
|
|
),
|
2018-06-09 13:36:16 +00:00
|
|
|
],
|
|
|
|
)
|
2017-12-24 18:15:21 +00:00
|
|
|
def test_can_get_metadata_from_id3_mp3_file(field, value):
|
2018-06-09 13:36:16 +00:00
|
|
|
path = os.path.join(DATA_DIR, "test.mp3")
|
2017-12-24 18:15:21 +00:00
|
|
|
data = metadata.Metadata(path)
|
|
|
|
|
|
|
|
assert data.get(field) == value
|
2018-05-12 10:06:14 +00:00
|
|
|
|
|
|
|
|
2018-06-09 13:36:16 +00:00
|
|
|
@pytest.mark.parametrize("name", ["test.mp3", "sample.flac"])
|
2018-06-02 07:21:55 +00:00
|
|
|
def test_can_get_pictures(name):
|
|
|
|
path = os.path.join(DATA_DIR, name)
|
|
|
|
data = metadata.Metadata(path)
|
|
|
|
|
2018-06-09 13:36:16 +00:00
|
|
|
pictures = data.get("pictures")
|
2018-06-02 07:21:55 +00:00
|
|
|
assert len(pictures) == 1
|
2018-06-09 13:36:16 +00:00
|
|
|
cover_data = data.get_picture("cover_front")
|
|
|
|
assert cover_data["mimetype"].startswith("image/")
|
|
|
|
assert len(cover_data["content"]) > 0
|
|
|
|
assert type(cover_data["content"]) == bytes
|
|
|
|
assert type(cover_data["description"]) == str
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"field,value",
|
|
|
|
[
|
|
|
|
("title", "999,999"),
|
|
|
|
("artist", "Nine Inch Nails"),
|
2018-09-23 12:38:42 +00:00
|
|
|
("album_artist", "Nine Inch Nails"),
|
2018-06-09 13:36:16 +00:00
|
|
|
("album", "The Slip"),
|
|
|
|
("date", datetime.date(2008, 5, 5)),
|
|
|
|
("track_number", 1),
|
|
|
|
("musicbrainz_albumid", uuid.UUID("12b57d46-a192-499e-a91f-7da66790a1c1")),
|
|
|
|
("musicbrainz_recordingid", uuid.UUID("30f3f33e-8d0c-4e69-8539-cbd701d18f28")),
|
|
|
|
("musicbrainz_artistid", uuid.UUID("b7ffd2af-418f-4be2-bdd1-22f8b48613da")),
|
2018-09-23 12:38:42 +00:00
|
|
|
(
|
|
|
|
"musicbrainz_albumartistid",
|
|
|
|
uuid.UUID("b7ffd2af-418f-4be2-bdd1-22f8b48613da"),
|
|
|
|
),
|
2018-06-09 13:36:16 +00:00
|
|
|
],
|
|
|
|
)
|
2018-05-12 10:06:14 +00:00
|
|
|
def test_can_get_metadata_from_flac_file(field, value):
|
2018-06-09 13:36:16 +00:00
|
|
|
path = os.path.join(DATA_DIR, "sample.flac")
|
2018-05-12 10:06:14 +00:00
|
|
|
data = metadata.Metadata(path)
|
|
|
|
|
|
|
|
assert data.get(field) == value
|
2018-05-22 21:53:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_can_get_metadata_from_flac_file_not_crash_if_empty():
|
2018-06-09 13:36:16 +00:00
|
|
|
path = os.path.join(DATA_DIR, "sample.flac")
|
2018-05-22 21:53:45 +00:00
|
|
|
data = metadata.Metadata(path)
|
|
|
|
|
|
|
|
with pytest.raises(metadata.TagNotFound):
|
2018-06-09 13:36:16 +00:00
|
|
|
data.get("test")
|
2018-06-05 17:44:00 +00:00
|
|
|
|
|
|
|
|
2018-06-09 13:36:16 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"field_name",
|
2018-09-23 12:38:42 +00:00
|
|
|
[
|
|
|
|
"musicbrainz_artistid",
|
|
|
|
"musicbrainz_albumid",
|
|
|
|
"musicbrainz_recordingid",
|
|
|
|
"musicbrainz_albumartistid",
|
|
|
|
],
|
2018-06-09 13:36:16 +00:00
|
|
|
)
|
2018-06-05 17:44:00 +00:00
|
|
|
def test_mbid_clean_keeps_only_first(field_name):
|
|
|
|
u1 = str(uuid.uuid4())
|
|
|
|
u2 = str(uuid.uuid4())
|
|
|
|
field = metadata.VALIDATION[field_name]
|
2018-06-09 13:36:16 +00:00
|
|
|
result = field.to_python("/".join([u1, u2]))
|
2018-06-05 17:44:00 +00:00
|
|
|
|
|
|
|
assert str(result) == u1
|
2018-07-24 21:05:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"raw,expected",
|
|
|
|
[("2017", datetime.date(2017, 1, 1)), ("2017-12-31", datetime.date(2017, 12, 31))],
|
|
|
|
)
|
|
|
|
def test_date_parsing(raw, expected):
|
|
|
|
assert metadata.get_date(raw) == expected
|