Compare commits
No commits in common. "8cdb5c1f996ee115cfe07ae9e086cabc08a5b55f" and "83a3334f1a760ce530202a7c6e237f1d2fe97d61" have entirely different histories.
8cdb5c1f99
...
83a3334f1a
@ -115,6 +115,7 @@ class Collection(Generic[T]):
|
||||
self._data.append(other)
|
||||
other._inner._is_in_collection.add(self)
|
||||
|
||||
"""
|
||||
for attribute, a in self.sync_on_append.items():
|
||||
# syncing two collections by reference
|
||||
b = other.__getattribute__(attribute)
|
||||
@ -133,6 +134,7 @@ class Collection(Generic[T]):
|
||||
a._collection_for[synced_with] = key
|
||||
|
||||
a.extend(b_data, **kwargs)
|
||||
"""
|
||||
|
||||
# all of the existing hooks to get the defined datastructures
|
||||
for collection_attribute, generator in self.extend_object_to_attribute.items():
|
||||
@ -160,6 +162,24 @@ class Collection(Generic[T]):
|
||||
|
||||
object_trace(f"Appending {other.option_string} to {self}")
|
||||
|
||||
for attribute, a in self.sync_on_append.items():
|
||||
# syncing two collections by reference
|
||||
b = other.__getattribute__(attribute)
|
||||
if a is b:
|
||||
continue
|
||||
|
||||
object_trace(f"Syncing [{a}] = [{b}]")
|
||||
|
||||
b_data = b.data.copy()
|
||||
b_collection_for = b._collection_for.copy()
|
||||
|
||||
del b
|
||||
|
||||
for synced_with, key in b_collection_for.items():
|
||||
synced_with.__setattr__(key, a)
|
||||
a._collection_for[synced_with] = key
|
||||
|
||||
a.extend(b_data, **kwargs)
|
||||
|
||||
# switching collection in the case of push to
|
||||
for c in self.push_to:
|
||||
|
@ -219,8 +219,7 @@ class Song(Base):
|
||||
|
||||
@property
|
||||
def option_string(self) -> str:
|
||||
r = "song "
|
||||
r += OPTION_FOREGROUND.value + self.title_string + BColors.ENDC.value + OPTION_BACKGROUND.value
|
||||
r = OPTION_FOREGROUND.value + self.title_string + BColors.ENDC.value + OPTION_BACKGROUND.value
|
||||
r += get_collection_string(self.album_collection, " from {}", ignore_titles={self.title})
|
||||
r += get_collection_string(self.artist_collection, " by {}")
|
||||
r += get_collection_string(self.feature_artist_collection, " feat. {}" if len(self.artist_collection) > 0 else " by {}")
|
||||
@ -370,11 +369,9 @@ class Album(Base):
|
||||
|
||||
@property
|
||||
def option_string(self) -> str:
|
||||
r = "album "
|
||||
r += OPTION_FOREGROUND.value + self.title_string + BColors.ENDC.value + OPTION_BACKGROUND.value
|
||||
r = OPTION_FOREGROUND.value + self.title_string + BColors.ENDC.value + OPTION_BACKGROUND.value
|
||||
r += get_collection_string(self.artist_collection, " by {}")
|
||||
if len(self.artist_collection) <= 0:
|
||||
r += get_collection_string(self.feature_artist_collection, " by {}")
|
||||
r += get_collection_string(self.feature_artist_collection, " feat. {}" if len(self.artist_collection) > 0 else " by {}")
|
||||
r += get_collection_string(self.label_collection, " under {}")
|
||||
|
||||
if len(self.song_collection) > 0:
|
||||
@ -630,8 +627,7 @@ class Artist(Base):
|
||||
|
||||
@property
|
||||
def option_string(self) -> str:
|
||||
r = "artist "
|
||||
r += OPTION_FOREGROUND.value + self.title_string + BColors.ENDC.value + OPTION_BACKGROUND.value
|
||||
r = OPTION_FOREGROUND.value + self.title_string + BColors.ENDC.value + OPTION_BACKGROUND.value
|
||||
r += get_collection_string(self.label_collection, " under {}")
|
||||
|
||||
r += OPTION_BACKGROUND.value
|
||||
@ -724,4 +720,4 @@ class Label(Base):
|
||||
|
||||
@property
|
||||
def option_string(self):
|
||||
return "label " + OPTION_FOREGROUND.value + self.name + BColors.ENDC.value
|
||||
return OPTION_FOREGROUND.value + self.name + BColors.ENDC.value
|
||||
|
@ -589,8 +589,6 @@ class YoutubeMusic(SuperYouTube):
|
||||
},
|
||||
name=f"fetch_song_lyrics_{video_id}.json"
|
||||
)
|
||||
if r is None:
|
||||
return None
|
||||
|
||||
dump_to_file(f"fetch_song_lyrics_{video_id}.json", r.text, is_json=True, exit_after_dump=False)
|
||||
|
||||
|
@ -15,7 +15,7 @@ __stage__ = os.getenv("STAGE", "prod")
|
||||
DEBUG = (__stage__ == "dev") and True
|
||||
DEBUG_LOGGING = DEBUG and False
|
||||
DEBUG_TRACE = DEBUG and True
|
||||
DEBUG_OBJECT_TRACE = DEBUG and True
|
||||
DEBUG_OBJECT_TRACE = DEBUG and False
|
||||
DEBUG_OBJECT_TRACE_CALLSTACK = DEBUG_OBJECT_TRACE and False
|
||||
DEBUG_YOUTUBE_INITIALIZING = DEBUG and False
|
||||
DEBUG_PAGES = DEBUG and False
|
||||
|
@ -3,76 +3,78 @@ import unittest
|
||||
from music_kraken.objects import Song, Album, Artist, Collection, Country
|
||||
|
||||
class TestCollection(unittest.TestCase):
|
||||
def test_song_contains_album(self):
|
||||
"""
|
||||
Tests that every song contains the album it is added to in its album_collection
|
||||
"""
|
||||
|
||||
a_1 = Album(
|
||||
title="album",
|
||||
song_list= [
|
||||
Song(title="song"),
|
||||
]
|
||||
)
|
||||
a_2 = a_1.song_collection[0].album_collection[0]
|
||||
self.assertTrue(a_1.id == a_2.id)
|
||||
|
||||
def test_album_contains_song(self):
|
||||
"""
|
||||
Tests that every album contains the song it is added to in its song_collection
|
||||
"""
|
||||
s_1 = Song(
|
||||
title="song",
|
||||
album_list=[
|
||||
Album(title="album"),
|
||||
]
|
||||
)
|
||||
s_2 = s_1.album_collection[0].song_collection[0]
|
||||
self.assertTrue(s_1.id == s_2.id)
|
||||
|
||||
|
||||
def test_auto_add_artist_to_album_feature_artist(self):
|
||||
"""
|
||||
Tests that every artist is added to the album's feature_artist_collection per default
|
||||
"""
|
||||
|
||||
a_1 = Artist(
|
||||
name="artist",
|
||||
album_list=[
|
||||
Album(title="album")
|
||||
]
|
||||
)
|
||||
a_2 = a_1.album_collection[0].feature_artist_collection[0]
|
||||
|
||||
self.assertTrue(a_1.id == a_2.id)
|
||||
|
||||
def test_auto_add_artist_to_album_feature_artist_push(self):
|
||||
"""
|
||||
Tests that every artist is added to the album's feature_artist_collection per default but pulled into the album's artist_collection if a merge exitst
|
||||
"""
|
||||
|
||||
a_1 = Artist(
|
||||
@staticmethod
|
||||
def complicated_object() -> Artist:
|
||||
return Artist(
|
||||
name="artist",
|
||||
country=Country.by_alpha_2("DE"),
|
||||
album_list=[
|
||||
Album(
|
||||
title="album",
|
||||
artist_list=[
|
||||
Artist(name="artist"),
|
||||
song_list=[
|
||||
Song(
|
||||
title="song",
|
||||
album_list=[
|
||||
Album(title="album", albumsort=123),
|
||||
],
|
||||
),
|
||||
Song(
|
||||
title="other_song",
|
||||
album_list=[
|
||||
Album(title="album", albumsort=423),
|
||||
],
|
||||
),
|
||||
]
|
||||
),
|
||||
Album(title="album", barcode="1234567890123"),
|
||||
]
|
||||
)
|
||||
]
|
||||
)
|
||||
a_2 = a_1.album_collection[0].artist_collection[0]
|
||||
|
||||
self.assertTrue(a_1.id == a_2.id)
|
||||
def test_song_album_relation(self):
|
||||
"""
|
||||
Tests that
|
||||
album = album.any_song.one_album
|
||||
is the same object
|
||||
"""
|
||||
|
||||
a = self.complicated_object().album_collection[0]
|
||||
b = a.song_collection[0].album_collection[0]
|
||||
c = a.song_collection[1].album_collection[0]
|
||||
d = b.song_collection[0].album_collection[0]
|
||||
e = d.song_collection[0].album_collection[0]
|
||||
f = e.song_collection[0].album_collection[0]
|
||||
g = f.song_collection[0].album_collection[0]
|
||||
|
||||
self.assertTrue(a.id == b.id == c.id == d.id == e.id == f.id == g.id)
|
||||
self.assertTrue(a.title == b.title == c.title == d.title == e.title == f.title == g.title == "album")
|
||||
self.assertTrue(a.barcode == b.barcode == c.barcode == d.barcode == e.barcode == f.barcode == g.barcode == "1234567890123")
|
||||
self.assertTrue(a.albumsort == b.albumsort == c.albumsort == d.albumsort == e.albumsort == f.albumsort == g.albumsort == 123)
|
||||
|
||||
d.title = "new_title"
|
||||
|
||||
self.assertTrue(a.title == b.title == c.title == d.title == e.title == f.title == g.title == "new_title")
|
||||
|
||||
def test_album_artist_relation(self):
|
||||
"""
|
||||
Tests that
|
||||
artist = artist.any_album.any_song.one_artist
|
||||
is the same object
|
||||
"""
|
||||
|
||||
a = self.complicated_object()
|
||||
b = a.album_collection[0].artist_collection[0]
|
||||
c = b.album_collection[0].artist_collection[0]
|
||||
d = c.album_collection[0].artist_collection[0]
|
||||
|
||||
self.assertTrue(a.id == b.id == c.id == d.id)
|
||||
self.assertTrue(a.name == b.name == c.name == d.name == "artist")
|
||||
self.assertTrue(a.country == b.country == c.country == d.country)
|
||||
|
||||
def test_artist_artist_relation(self):
|
||||
"""
|
||||
Tests the proper syncing between album.artist_collection and song.artist_collection
|
||||
"""
|
||||
|
||||
album = Album(
|
||||
artist = Artist(
|
||||
name="artist",
|
||||
album_list=[
|
||||
Album(
|
||||
title="album",
|
||||
song_list=[
|
||||
Song(title="song"),
|
||||
@ -81,16 +83,12 @@ class TestCollection(unittest.TestCase):
|
||||
Artist(name="artist"),
|
||||
]
|
||||
)
|
||||
a_1 = album.artist_collection[0]
|
||||
a_2 = album.song_collection[0].artist_collection[0]
|
||||
]
|
||||
)
|
||||
|
||||
self.assertTrue(a_1.id == a_2.id)
|
||||
self.assertTrue(artist.id == artist.album_collection[0].song_collection[0].artist_collection[0].id)
|
||||
|
||||
def test_artist_collection_sync(self):
|
||||
"""
|
||||
tests the actual implementation of the test above
|
||||
"""
|
||||
|
||||
album_1 = Album(
|
||||
title="album",
|
||||
song_list=[
|
||||
@ -115,5 +113,15 @@ class TestCollection(unittest.TestCase):
|
||||
|
||||
self.assertTrue(id(album_1.artist_collection) == id(album_1.artist_collection) == id(album_1.song_collection[0].artist_collection) == id(album_1.song_collection[0].artist_collection))
|
||||
|
||||
def test_song_artist_relations(self):
|
||||
a = self.complicated_object()
|
||||
b = a.album_collection[0].song_collection[0].artist_collection[0]
|
||||
c = b.album_collection[0].song_collection[0].artist_collection[0]
|
||||
d = c.album_collection[0].song_collection[0].artist_collection[0]
|
||||
|
||||
self.assertTrue(a.id == b.id == c.id == d.id)
|
||||
self.assertTrue(a.name == b.name == c.name == d.name == "artist")
|
||||
self.assertTrue(a.country == b.country == c.country == d.country)
|
||||
|
||||
if __name__ == "__main__":
|
||||
unittest.main()
|
||||
|
Loading…
Reference in New Issue
Block a user