Compare commits
12 Commits
a70a24d93e
...
fix/cachin
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b0b830d64 | |||
| 1ba6c97f5a | |||
| c8cbfc7cb9 | |||
| c131924577 | |||
| 8cdb5c1f99 | |||
| 356ba658ce | |||
| 000a6c0dba | |||
| 83a3334f1a | |||
| ab61ff7e9b | |||
| 3cb35909d1 | |||
| e87075a809 | |||
| 86e985acec |
@@ -354,21 +354,23 @@ class Downloader:
|
|||||||
command, query = _[0], ":".join(_[1:])
|
command, query = _[0], ":".join(_[1:])
|
||||||
|
|
||||||
do_search = "s" in command
|
do_search = "s" in command
|
||||||
|
do_fetch = "f" in command
|
||||||
do_download = "d" in command
|
do_download = "d" in command
|
||||||
do_merge = "m" in command
|
do_merge = "m" in command
|
||||||
|
|
||||||
if do_search and do_download:
|
if do_search and (do_download or do_fetch or do_merge):
|
||||||
raise MKInvalidInputException(message="You can't search and download at the same time.")
|
raise MKInvalidInputException(message="You can't search and do another operation at the same time.")
|
||||||
|
|
||||||
if do_search and do_merge:
|
|
||||||
raise MKInvalidInputException(message="You can't search and merge at the same time.")
|
|
||||||
|
|
||||||
if do_search:
|
if do_search:
|
||||||
self.search(":".join(input_str.split(":")[1:]))
|
self.search(":".join(input_str.split(":")[1:]))
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
def get_selected_objects(q: str):
|
||||||
|
if q.strip().lower() == "all":
|
||||||
|
return list(self.current_results)
|
||||||
|
|
||||||
indices = []
|
indices = []
|
||||||
for possible_index in query.split(","):
|
for possible_index in q.split(","):
|
||||||
possible_index = possible_index.strip()
|
possible_index = possible_index.strip()
|
||||||
if possible_index == "":
|
if possible_index == "":
|
||||||
continue
|
continue
|
||||||
@@ -384,7 +386,9 @@ class Downloader:
|
|||||||
|
|
||||||
indices.append(i)
|
indices.append(i)
|
||||||
|
|
||||||
selected_objects = [self.current_results[i] for i in indices]
|
return [self.current_results[i] for i in indices]
|
||||||
|
|
||||||
|
selected_objects = get_selected_objects(query)
|
||||||
|
|
||||||
if do_merge:
|
if do_merge:
|
||||||
old_selected_objects = selected_objects
|
old_selected_objects = selected_objects
|
||||||
@@ -397,6 +401,13 @@ class Downloader:
|
|||||||
|
|
||||||
selected_objects = [a]
|
selected_objects = [a]
|
||||||
|
|
||||||
|
if do_fetch:
|
||||||
|
for data_object in selected_objects:
|
||||||
|
self.pages.fetch_details(data_object)
|
||||||
|
|
||||||
|
self.print_current_options()
|
||||||
|
return False
|
||||||
|
|
||||||
if do_download:
|
if do_download:
|
||||||
self.download(selected_objects)
|
self.download(selected_objects)
|
||||||
return False
|
return False
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ from typing import List, Optional
|
|||||||
from functools import lru_cache
|
from functools import lru_cache
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
from ..utils import output, BColors
|
||||||
from ..utils.config import main_settings
|
from ..utils.config import main_settings
|
||||||
from ..utils.string_processing import fit_to_file_system
|
from ..utils.string_processing import fit_to_file_system
|
||||||
|
|
||||||
@@ -204,9 +205,12 @@ class Cache:
|
|||||||
for path in self._dir.iterdir():
|
for path in self._dir.iterdir():
|
||||||
if path.is_dir():
|
if path.is_dir():
|
||||||
for file in path.iterdir():
|
for file in path.iterdir():
|
||||||
|
output(f"Deleting file {file}", color=BColors.GREY)
|
||||||
file.unlink()
|
file.unlink()
|
||||||
|
output(f"Deleting folder {path}", color=BColors.HEADER)
|
||||||
path.rmdir()
|
path.rmdir()
|
||||||
else:
|
else:
|
||||||
|
output(f"Deleting folder {path}", color=BColors.HEADER)
|
||||||
path.unlink()
|
path.unlink()
|
||||||
|
|
||||||
self.cached_attributes.clear()
|
self.cached_attributes.clear()
|
||||||
|
|||||||
@@ -235,14 +235,14 @@ class Pages:
|
|||||||
|
|
||||||
# manage the naming
|
# manage the naming
|
||||||
naming: Dict[str, List[str]] = defaultdict(list, naming)
|
naming: Dict[str, List[str]] = defaultdict(list, naming)
|
||||||
naming["song"].append(song.title_string)
|
naming["song"].append(song.title_value)
|
||||||
naming["isrc"].append(song.isrc)
|
naming["isrc"].append(song.isrc)
|
||||||
naming["album"].extend(a.title_string for a in song.album_collection)
|
naming["album"].extend(a.title_value for a in song.album_collection)
|
||||||
naming["album_type"].extend(a.album_type.value for a in song.album_collection)
|
naming["album_type"].extend(a.album_type.value for a in song.album_collection)
|
||||||
naming["artist"].extend(a.name for a in song.artist_collection)
|
naming["artist"].extend(a.name for a in song.artist_collection)
|
||||||
naming["artist"].extend(a.name for a in song.feature_artist_collection)
|
naming["artist"].extend(a.name for a in song.feature_artist_collection)
|
||||||
for a in song.album_collection:
|
for a in song.album_collection:
|
||||||
naming["label"].extend([l.title_string for l in a.label_collection])
|
naming["label"].extend([l.title_value for l in a.label_collection])
|
||||||
# removing duplicates from the naming, and process the strings
|
# removing duplicates from the naming, and process the strings
|
||||||
for key, value in naming.items():
|
for key, value in naming.items():
|
||||||
# https://stackoverflow.com/a/17016257
|
# https://stackoverflow.com/a/17016257
|
||||||
|
|||||||
@@ -115,7 +115,6 @@ class Collection(Generic[T]):
|
|||||||
self._data.append(other)
|
self._data.append(other)
|
||||||
other._inner._is_in_collection.add(self)
|
other._inner._is_in_collection.add(self)
|
||||||
|
|
||||||
"""
|
|
||||||
for attribute, a in self.sync_on_append.items():
|
for attribute, a in self.sync_on_append.items():
|
||||||
# syncing two collections by reference
|
# syncing two collections by reference
|
||||||
b = other.__getattribute__(attribute)
|
b = other.__getattribute__(attribute)
|
||||||
@@ -134,7 +133,6 @@ class Collection(Generic[T]):
|
|||||||
a._collection_for[synced_with] = key
|
a._collection_for[synced_with] = key
|
||||||
|
|
||||||
a.extend(b_data, **kwargs)
|
a.extend(b_data, **kwargs)
|
||||||
"""
|
|
||||||
|
|
||||||
# all of the existing hooks to get the defined datastructures
|
# all of the existing hooks to get the defined datastructures
|
||||||
for collection_attribute, generator in self.extend_object_to_attribute.items():
|
for collection_attribute, generator in self.extend_object_to_attribute.items():
|
||||||
@@ -162,6 +160,7 @@ class Collection(Generic[T]):
|
|||||||
|
|
||||||
object_trace(f"Appending {other.option_string} to {self}")
|
object_trace(f"Appending {other.option_string} to {self}")
|
||||||
|
|
||||||
|
|
||||||
# switching collection in the case of push to
|
# switching collection in the case of push to
|
||||||
for c in self.push_to:
|
for c in self.push_to:
|
||||||
r = c._find_object(other)
|
r = c._find_object(other)
|
||||||
|
|||||||
@@ -339,6 +339,10 @@ class OuterProxy:
|
|||||||
def title_string(self) -> str:
|
def title_string(self) -> str:
|
||||||
return str(self.__getattribute__(self.TITEL)) + (f" {self.id}" if DEBUG_PRINT_ID else "")
|
return str(self.__getattribute__(self.TITEL)) + (f" {self.id}" if DEBUG_PRINT_ID else "")
|
||||||
|
|
||||||
|
@property
|
||||||
|
def title_value(self) -> str:
|
||||||
|
return str(self.__getattribute__(self.TITEL))
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return f"{type(self).__name__}({self.title_string})"
|
return f"{type(self).__name__}({self.title_string})"
|
||||||
|
|
||||||
|
|||||||
@@ -148,7 +148,7 @@ class Song(Base):
|
|||||||
self.feature_artist_collection.push_to = [self.artist_collection]
|
self.feature_artist_collection.push_to = [self.artist_collection]
|
||||||
self.artist_collection.pull_from = [self.feature_artist_collection]
|
self.artist_collection.pull_from = [self.feature_artist_collection]
|
||||||
|
|
||||||
self.album_collection.extend_object_to_attribute = {
|
self.album_collection.sync_on_append = {
|
||||||
"artist_collection": self.artist_collection,
|
"artist_collection": self.artist_collection,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -219,7 +219,8 @@ class Song(Base):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def option_string(self) -> str:
|
def option_string(self) -> str:
|
||||||
r = OPTION_FOREGROUND.value + self.title_string + BColors.ENDC.value + OPTION_BACKGROUND.value
|
r = "song "
|
||||||
|
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.album_collection, " from {}", ignore_titles={self.title})
|
||||||
r += get_collection_string(self.artist_collection, " by {}")
|
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 {}")
|
r += get_collection_string(self.feature_artist_collection, " feat. {}" if len(self.artist_collection) > 0 else " by {}")
|
||||||
@@ -310,7 +311,7 @@ class Album(Base):
|
|||||||
self.song_collection.append_object_to_attribute = {
|
self.song_collection.append_object_to_attribute = {
|
||||||
"album_collection": self
|
"album_collection": self
|
||||||
}
|
}
|
||||||
self.song_collection.extend_object_to_attribute = {
|
self.song_collection.sync_on_append = {
|
||||||
"artist_collection": self.artist_collection
|
"artist_collection": self.artist_collection
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -369,9 +370,11 @@ class Album(Base):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def option_string(self) -> str:
|
def option_string(self) -> str:
|
||||||
r = OPTION_FOREGROUND.value + self.title_string + BColors.ENDC.value + OPTION_BACKGROUND.value
|
r = "album "
|
||||||
|
r += OPTION_FOREGROUND.value + self.title_string + BColors.ENDC.value + OPTION_BACKGROUND.value
|
||||||
r += get_collection_string(self.artist_collection, " by {}")
|
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 {}")
|
if len(self.artist_collection) <= 0:
|
||||||
|
r += get_collection_string(self.feature_artist_collection, " by {}")
|
||||||
r += get_collection_string(self.label_collection, " under {}")
|
r += get_collection_string(self.label_collection, " under {}")
|
||||||
|
|
||||||
if len(self.song_collection) > 0:
|
if len(self.song_collection) > 0:
|
||||||
@@ -627,7 +630,8 @@ class Artist(Base):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def option_string(self) -> str:
|
def option_string(self) -> str:
|
||||||
r = OPTION_FOREGROUND.value + self.title_string + BColors.ENDC.value + OPTION_BACKGROUND.value
|
r = "artist "
|
||||||
|
r += OPTION_FOREGROUND.value + self.title_string + BColors.ENDC.value + OPTION_BACKGROUND.value
|
||||||
r += get_collection_string(self.label_collection, " under {}")
|
r += get_collection_string(self.label_collection, " under {}")
|
||||||
|
|
||||||
r += OPTION_BACKGROUND.value
|
r += OPTION_BACKGROUND.value
|
||||||
@@ -720,4 +724,4 @@ class Label(Base):
|
|||||||
|
|
||||||
@property
|
@property
|
||||||
def option_string(self):
|
def option_string(self):
|
||||||
return OPTION_FOREGROUND.value + self.name + BColors.ENDC.value
|
return "label " + OPTION_FOREGROUND.value + self.name + BColors.ENDC.value
|
||||||
|
|||||||
@@ -549,6 +549,11 @@ class YoutubeMusic(SuperYouTube):
|
|||||||
return album
|
return album
|
||||||
|
|
||||||
def fetch_lyrics(self, video_id: str, playlist_id: str = None) -> str:
|
def fetch_lyrics(self, video_id: str, playlist_id: str = None) -> str:
|
||||||
|
"""
|
||||||
|
1. fetches the tabs of a song, to get the browse id
|
||||||
|
2. finds the browse id of the lyrics
|
||||||
|
3. fetches the lyrics with the browse id
|
||||||
|
"""
|
||||||
request_data = {
|
request_data = {
|
||||||
"context": {**self.credentials.context, "adSignalsInfo": {"params": []}},
|
"context": {**self.credentials.context, "adSignalsInfo": {"params": []}},
|
||||||
"videoId": video_id,
|
"videoId": video_id,
|
||||||
@@ -575,6 +580,7 @@ class YoutubeMusic(SuperYouTube):
|
|||||||
pageType = traverse_json_path(tab, "tabRenderer.endpoint.browseEndpoint.browseEndpointContextSupportedConfigs.browseEndpointContextMusicConfig.pageType", default="")
|
pageType = traverse_json_path(tab, "tabRenderer.endpoint.browseEndpoint.browseEndpointContextSupportedConfigs.browseEndpointContextMusicConfig.pageType", default="")
|
||||||
if pageType in ("MUSIC_TAB_TYPE_LYRICS", "MUSIC_PAGE_TYPE_TRACK_LYRICS") or "lyrics" in pageType.lower():
|
if pageType in ("MUSIC_TAB_TYPE_LYRICS", "MUSIC_PAGE_TYPE_TRACK_LYRICS") or "lyrics" in pageType.lower():
|
||||||
browse_id = traverse_json_path(tab, "tabRenderer.endpoint.browseEndpoint.browseId", default=None)
|
browse_id = traverse_json_path(tab, "tabRenderer.endpoint.browseEndpoint.browseId", default=None)
|
||||||
|
if browse_id is not None:
|
||||||
break
|
break
|
||||||
|
|
||||||
if browse_id is None:
|
if browse_id is None:
|
||||||
@@ -589,6 +595,8 @@ class YoutubeMusic(SuperYouTube):
|
|||||||
},
|
},
|
||||||
name=f"fetch_song_lyrics_{video_id}.json"
|
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)
|
dump_to_file(f"fetch_song_lyrics_{video_id}.json", r.text, is_json=True, exit_after_dump=False)
|
||||||
|
|
||||||
@@ -719,7 +727,6 @@ class YoutubeMusic(SuperYouTube):
|
|||||||
|
|
||||||
self.download_values_by_url[source.url] = {
|
self.download_values_by_url[source.url] = {
|
||||||
"url": _best_format.get("url"),
|
"url": _best_format.get("url"),
|
||||||
"chunk_size": _best_format.get("downloader_options", {}).get("http_chunk_size", main_settings["chunk_size"]),
|
|
||||||
"headers": _best_format.get("http_headers", {}),
|
"headers": _best_format.get("http_headers", {}),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ config = Config((
|
|||||||
You can use Audio formats which support ID3.2 and ID3.1,
|
You can use Audio formats which support ID3.2 and ID3.1,
|
||||||
but you will have cleaner Metadata using ID3.2."""),
|
but you will have cleaner Metadata using ID3.2."""),
|
||||||
|
|
||||||
Attribute(name="result_history", default_value=False, description="""If enabled, you can go back to the previous results.
|
Attribute(name="result_history", default_value=True, description="""If enabled, you can go back to the previous results.
|
||||||
The consequence is a higher meory consumption, because every result is saved."""),
|
The consequence is a higher meory consumption, because every result is saved."""),
|
||||||
Attribute(name="history_length", default_value=8, description="""You can choose how far back you can go in the result history.
|
Attribute(name="history_length", default_value=8, description="""You can choose how far back you can go in the result history.
|
||||||
The further you choose to be able to go back, the higher the memory usage.
|
The further you choose to be able to go back, the higher the memory usage.
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ __stage__ = os.getenv("STAGE", "prod")
|
|||||||
DEBUG = (__stage__ == "dev") and True
|
DEBUG = (__stage__ == "dev") and True
|
||||||
DEBUG_LOGGING = DEBUG and False
|
DEBUG_LOGGING = DEBUG and False
|
||||||
DEBUG_TRACE = DEBUG and True
|
DEBUG_TRACE = DEBUG and True
|
||||||
DEBUG_OBJECT_TRACE = DEBUG and False
|
DEBUG_OBJECT_TRACE = DEBUG and True
|
||||||
DEBUG_OBJECT_TRACE_CALLSTACK = DEBUG_OBJECT_TRACE and False
|
DEBUG_OBJECT_TRACE_CALLSTACK = DEBUG_OBJECT_TRACE and False
|
||||||
DEBUG_YOUTUBE_INITIALIZING = DEBUG and False
|
DEBUG_YOUTUBE_INITIALIZING = DEBUG and False
|
||||||
DEBUG_PAGES = DEBUG and False
|
DEBUG_PAGES = DEBUG and False
|
||||||
|
|||||||
@@ -3,78 +3,76 @@ import unittest
|
|||||||
from music_kraken.objects import Song, Album, Artist, Collection, Country
|
from music_kraken.objects import Song, Album, Artist, Collection, Country
|
||||||
|
|
||||||
class TestCollection(unittest.TestCase):
|
class TestCollection(unittest.TestCase):
|
||||||
@staticmethod
|
def test_song_contains_album(self):
|
||||||
def complicated_object() -> Artist:
|
"""
|
||||||
return Artist(
|
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(
|
||||||
name="artist",
|
name="artist",
|
||||||
country=Country.by_alpha_2("DE"),
|
|
||||||
album_list=[
|
album_list=[
|
||||||
Album(
|
Album(
|
||||||
title="album",
|
title="album",
|
||||||
song_list=[
|
artist_list=[
|
||||||
Song(
|
Artist(name="artist"),
|
||||||
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]
|
||||||
|
|
||||||
def test_song_album_relation(self):
|
self.assertTrue(a_1.id == a_2.id)
|
||||||
"""
|
|
||||||
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):
|
def test_artist_artist_relation(self):
|
||||||
artist = Artist(
|
"""
|
||||||
name="artist",
|
Tests the proper syncing between album.artist_collection and song.artist_collection
|
||||||
album_list=[
|
"""
|
||||||
Album(
|
|
||||||
|
album = Album(
|
||||||
title="album",
|
title="album",
|
||||||
song_list=[
|
song_list=[
|
||||||
Song(title="song"),
|
Song(title="song"),
|
||||||
@@ -83,12 +81,16 @@ class TestCollection(unittest.TestCase):
|
|||||||
Artist(name="artist"),
|
Artist(name="artist"),
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
]
|
a_1 = album.artist_collection[0]
|
||||||
)
|
a_2 = album.song_collection[0].artist_collection[0]
|
||||||
|
|
||||||
self.assertTrue(artist.id == artist.album_collection[0].song_collection[0].artist_collection[0].id)
|
self.assertTrue(a_1.id == a_2.id)
|
||||||
|
|
||||||
def test_artist_collection_sync(self):
|
def test_artist_collection_sync(self):
|
||||||
|
"""
|
||||||
|
tests the actual implementation of the test above
|
||||||
|
"""
|
||||||
|
|
||||||
album_1 = Album(
|
album_1 = Album(
|
||||||
title="album",
|
title="album",
|
||||||
song_list=[
|
song_list=[
|
||||||
@@ -113,15 +115,5 @@ 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))
|
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__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|||||||
Reference in New Issue
Block a user