mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-10 06:04:15 +00:00
Add PlayedUnplayedMixin
(#984)
* Add PlayedUnplayedMixin * Deprecate Video isPlayed, markWatched, and markUnwatched * Rename all deprecated methods * Return self to enable method chaining * Update tests for audio markPlayed / markUnplayed using history * Remove duplicate video history tests
This commit is contained in:
parent
716d8edb52
commit
f0ed19c2fe
13 changed files with 132 additions and 131 deletions
|
@ -81,8 +81,8 @@ Usage Examples
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
# Example 2: Mark all Game of Thrones episodes watched.
|
# Example 2: Mark all Game of Thrones episodes as played.
|
||||||
plex.library.section('TV Shows').get('Game of Thrones').markWatched()
|
plex.library.section('TV Shows').get('Game of Thrones').markPlayed()
|
||||||
|
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
|
@ -6,7 +6,7 @@ from plexapi import media, utils
|
||||||
from plexapi.base import Playable, PlexPartialObject, PlexSession
|
from plexapi.base import Playable, PlexPartialObject, PlexSession
|
||||||
from plexapi.exceptions import BadRequest
|
from plexapi.exceptions import BadRequest
|
||||||
from plexapi.mixins import (
|
from plexapi.mixins import (
|
||||||
AdvancedSettingsMixin, SplitMergeMixin, UnmatchMatchMixin, ExtrasMixin, HubsMixin, RatingMixin,
|
AdvancedSettingsMixin, SplitMergeMixin, UnmatchMatchMixin, ExtrasMixin, HubsMixin, PlayedUnplayedMixin, RatingMixin,
|
||||||
ArtUrlMixin, ArtMixin, PosterUrlMixin, PosterMixin, ThemeMixin, ThemeUrlMixin,
|
ArtUrlMixin, ArtMixin, PosterUrlMixin, PosterMixin, ThemeMixin, ThemeUrlMixin,
|
||||||
OriginallyAvailableMixin, SortTitleMixin, StudioMixin, SummaryMixin, TitleMixin,
|
OriginallyAvailableMixin, SortTitleMixin, StudioMixin, SummaryMixin, TitleMixin,
|
||||||
TrackArtistMixin, TrackDiscNumberMixin, TrackNumberMixin,
|
TrackArtistMixin, TrackDiscNumberMixin, TrackNumberMixin,
|
||||||
|
@ -15,7 +15,7 @@ from plexapi.mixins import (
|
||||||
from plexapi.playlist import Playlist
|
from plexapi.playlist import Playlist
|
||||||
|
|
||||||
|
|
||||||
class Audio(PlexPartialObject):
|
class Audio(PlexPartialObject, PlayedUnplayedMixin):
|
||||||
""" Base class for all audio objects including :class:`~plexapi.audio.Artist`,
|
""" Base class for all audio objects including :class:`~plexapi.audio.Artist`,
|
||||||
:class:`~plexapi.audio.Album`, and :class:`~plexapi.audio.Track`.
|
:class:`~plexapi.audio.Album`, and :class:`~plexapi.audio.Track`.
|
||||||
|
|
||||||
|
|
|
@ -786,7 +786,8 @@ class Playable:
|
||||||
""" Set the watched progress for this video.
|
""" Set the watched progress for this video.
|
||||||
|
|
||||||
Note that setting the time to 0 will not work.
|
Note that setting the time to 0 will not work.
|
||||||
Use `markWatched` or `markUnwatched` to achieve
|
Use :func:`~plexapi.mixins.PlayedMixin.markPlayed` or
|
||||||
|
:func:`~plexapi.mixins.PlayedMixin.markUnplayed` to achieve
|
||||||
that goal.
|
that goal.
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
|
|
|
@ -255,6 +255,45 @@ class HubsMixin:
|
||||||
return self.findItems(data, Hub)
|
return self.findItems(data, Hub)
|
||||||
|
|
||||||
|
|
||||||
|
class PlayedUnplayedMixin:
|
||||||
|
""" Mixin for Plex objects that can be marked played and unplayed. """
|
||||||
|
|
||||||
|
@property
|
||||||
|
def isPlayed(self):
|
||||||
|
""" Returns True if this video is played. """
|
||||||
|
return bool(self.viewCount > 0) if self.viewCount else False
|
||||||
|
|
||||||
|
def markPlayed(self):
|
||||||
|
""" Mark the Plex object as played. """
|
||||||
|
key = '/:/scrobble'
|
||||||
|
params = {'key': self.ratingKey, 'identifier': 'com.plexapp.plugins.library'}
|
||||||
|
self._server.query(key, params=params)
|
||||||
|
return self
|
||||||
|
|
||||||
|
def markUnplayed(self):
|
||||||
|
""" Mark the Plex object as unplayed. """
|
||||||
|
key = '/:/unscrobble'
|
||||||
|
params = {'key': self.ratingKey, 'identifier': 'com.plexapp.plugins.library'}
|
||||||
|
self._server.query(key, params=params)
|
||||||
|
return self
|
||||||
|
|
||||||
|
@property
|
||||||
|
@deprecated('use "isPlayed" instead', stacklevel=3)
|
||||||
|
def isWatched(self):
|
||||||
|
""" Returns True if the show is watched. """
|
||||||
|
return self.isPlayed
|
||||||
|
|
||||||
|
@deprecated('use "markPlayed" instead')
|
||||||
|
def markWatched(self):
|
||||||
|
""" Mark the video as played. """
|
||||||
|
self.markPlayed()
|
||||||
|
|
||||||
|
@deprecated('use "markUnplayed" instead')
|
||||||
|
def markUnwatched(self):
|
||||||
|
""" Mark the video as unplayed. """
|
||||||
|
self.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
class RatingMixin:
|
class RatingMixin:
|
||||||
""" Mixin for Plex objects that can have user star ratings. """
|
""" Mixin for Plex objects that can have user star ratings. """
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ from plexapi import media, utils
|
||||||
from plexapi.base import Playable, PlexPartialObject, PlexSession
|
from plexapi.base import Playable, PlexPartialObject, PlexSession
|
||||||
from plexapi.exceptions import BadRequest
|
from plexapi.exceptions import BadRequest
|
||||||
from plexapi.mixins import (
|
from plexapi.mixins import (
|
||||||
AdvancedSettingsMixin, SplitMergeMixin, UnmatchMatchMixin, ExtrasMixin, HubsMixin, RatingMixin,
|
AdvancedSettingsMixin, SplitMergeMixin, UnmatchMatchMixin, ExtrasMixin, HubsMixin, PlayedUnplayedMixin, RatingMixin,
|
||||||
ArtUrlMixin, ArtMixin, BannerMixin, PosterUrlMixin, PosterMixin, ThemeUrlMixin, ThemeMixin,
|
ArtUrlMixin, ArtMixin, BannerMixin, PosterUrlMixin, PosterMixin, ThemeUrlMixin, ThemeMixin,
|
||||||
ContentRatingMixin, OriginallyAvailableMixin, OriginalTitleMixin, SortTitleMixin, StudioMixin,
|
ContentRatingMixin, OriginallyAvailableMixin, OriginalTitleMixin, SortTitleMixin, StudioMixin,
|
||||||
SummaryMixin, TaglineMixin, TitleMixin,
|
SummaryMixin, TaglineMixin, TitleMixin,
|
||||||
|
@ -15,7 +15,7 @@ from plexapi.mixins import (
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class Video(PlexPartialObject):
|
class Video(PlexPartialObject, PlayedUnplayedMixin):
|
||||||
""" Base class for all video objects including :class:`~plexapi.video.Movie`,
|
""" Base class for all video objects including :class:`~plexapi.video.Movie`,
|
||||||
:class:`~plexapi.video.Show`, :class:`~plexapi.video.Season`,
|
:class:`~plexapi.video.Show`, :class:`~plexapi.video.Season`,
|
||||||
:class:`~plexapi.video.Episode`, and :class:`~plexapi.video.Clip`.
|
:class:`~plexapi.video.Episode`, and :class:`~plexapi.video.Clip`.
|
||||||
|
@ -71,25 +71,10 @@ class Video(PlexPartialObject):
|
||||||
self.userRating = utils.cast(float, data.attrib.get('userRating'))
|
self.userRating = utils.cast(float, data.attrib.get('userRating'))
|
||||||
self.viewCount = utils.cast(int, data.attrib.get('viewCount', 0))
|
self.viewCount = utils.cast(int, data.attrib.get('viewCount', 0))
|
||||||
|
|
||||||
@property
|
|
||||||
def isWatched(self):
|
|
||||||
""" Returns True if this video is watched. """
|
|
||||||
return bool(self.viewCount > 0) if self.viewCount else False
|
|
||||||
|
|
||||||
def url(self, part):
|
def url(self, part):
|
||||||
""" Returns the full url for something. Typically used for getting a specific image. """
|
""" Returns the full url for something. Typically used for getting a specific image. """
|
||||||
return self._server.url(part, includeToken=True) if part else None
|
return self._server.url(part, includeToken=True) if part else None
|
||||||
|
|
||||||
def markWatched(self):
|
|
||||||
""" Mark the video as played. """
|
|
||||||
key = '/:/scrobble?key=%s&identifier=com.plexapp.plugins.library' % self.ratingKey
|
|
||||||
self._server.query(key)
|
|
||||||
|
|
||||||
def markUnwatched(self):
|
|
||||||
""" Mark the video as unplayed. """
|
|
||||||
key = '/:/unscrobble?key=%s&identifier=com.plexapp.plugins.library' % self.ratingKey
|
|
||||||
self._server.query(key)
|
|
||||||
|
|
||||||
def augmentation(self):
|
def augmentation(self):
|
||||||
""" Returns a list of :class:`~plexapi.library.Hub` objects.
|
""" Returns a list of :class:`~plexapi.library.Hub` objects.
|
||||||
Augmentation returns hub items relating to online media sources
|
Augmentation returns hub items relating to online media sources
|
||||||
|
@ -523,8 +508,8 @@ class Show(
|
||||||
return self.roles
|
return self.roles
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def isWatched(self):
|
def isPlayed(self):
|
||||||
""" Returns True if the show is fully watched. """
|
""" Returns True if the show is fully played. """
|
||||||
return bool(self.viewedLeafCount == self.leafCount)
|
return bool(self.viewedLeafCount == self.leafCount)
|
||||||
|
|
||||||
def onDeck(self):
|
def onDeck(self):
|
||||||
|
@ -678,8 +663,8 @@ class Season(
|
||||||
] if p])
|
] if p])
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def isWatched(self):
|
def isPlayed(self):
|
||||||
""" Returns True if the season is fully watched. """
|
""" Returns True if the season is fully played. """
|
||||||
return bool(self.viewedLeafCount == self.leafCount)
|
return bool(self.viewedLeafCount == self.leafCount)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
|
|
|
@ -1,20 +1,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
|
||||||
def test_mark_movie_watched(movie):
|
|
||||||
movie.markUnwatched()
|
|
||||||
print('Marking movie watched: %s' % movie)
|
|
||||||
print('View count: %s' % movie.viewCount)
|
|
||||||
movie.markWatched()
|
|
||||||
movie.reload()
|
|
||||||
print('View count: %s' % movie.viewCount)
|
|
||||||
assert movie.viewCount == 1, 'View count 0 after watched.'
|
|
||||||
movie.markUnwatched()
|
|
||||||
movie.reload()
|
|
||||||
print('View count: %s' % movie.viewCount)
|
|
||||||
assert movie.viewCount == 0, 'View count 1 after unwatched.'
|
|
||||||
|
|
||||||
|
|
||||||
def test_refresh_section(tvshows):
|
def test_refresh_section(tvshows):
|
||||||
tvshows.refresh()
|
tvshows.refresh()
|
||||||
|
|
||||||
|
|
|
@ -111,8 +111,8 @@ def test_client_playback(plex, client, movies, proxy):
|
||||||
client.stop(mtype)
|
client.stop(mtype)
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
finally:
|
finally:
|
||||||
print("movie.markWatched")
|
print("movie.markPlayed")
|
||||||
movie.markWatched()
|
movie.markPlayed()
|
||||||
time.sleep(2)
|
time.sleep(2)
|
||||||
|
|
||||||
|
|
||||||
|
@ -138,6 +138,6 @@ def test_client_timeline(plex, client, movies, proxy):
|
||||||
time.sleep(10)
|
time.sleep(10)
|
||||||
assert client.isPlayingMedia() is False
|
assert client.isPlayingMedia() is False
|
||||||
finally:
|
finally:
|
||||||
print("movie.markWatched()")
|
print("movie.markPlayed()")
|
||||||
movie.markWatched()
|
movie.markPlayed()
|
||||||
time.sleep(2)
|
time.sleep(2)
|
||||||
|
|
|
@ -161,7 +161,7 @@ def test_Collection_add_move_remove(collection, movies):
|
||||||
assert movie not in collection
|
assert movie not in collection
|
||||||
# Reset collection sort due to bug with corrupted XML response
|
# Reset collection sort due to bug with corrupted XML response
|
||||||
# for movies that have been moved in a collection and have
|
# for movies that have been moved in a collection and have
|
||||||
# progress (updateProgress) or marked as played (markWatched)
|
# progress (updateProgress) or marked as played (markPlayed)
|
||||||
collection.sortUpdate("release")
|
collection.sortUpdate("release")
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,76 +2,85 @@
|
||||||
|
|
||||||
|
|
||||||
def test_history_Movie(movie):
|
def test_history_Movie(movie):
|
||||||
movie.markWatched()
|
movie.markPlayed()
|
||||||
history = movie.history()
|
history = movie.history()
|
||||||
assert len(history)
|
assert len(history)
|
||||||
movie.markUnwatched()
|
movie.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_history_Show(show):
|
def test_history_Show(show):
|
||||||
show.markWatched()
|
show.markPlayed()
|
||||||
history = show.history()
|
history = show.history()
|
||||||
assert len(history)
|
assert len(history)
|
||||||
show.markUnwatched()
|
show.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_history_Season(show):
|
def test_history_Season(show):
|
||||||
season = show.season("Season 1")
|
season = show.season("Season 1")
|
||||||
season.markWatched()
|
season.markPlayed()
|
||||||
history = season.history()
|
history = season.history()
|
||||||
assert len(history)
|
assert len(history)
|
||||||
season.markUnwatched()
|
season.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_history_Episode(episode):
|
def test_history_Episode(episode):
|
||||||
episode.markWatched()
|
episode.markPlayed()
|
||||||
history = episode.history()
|
history = episode.history()
|
||||||
assert len(history)
|
assert len(history)
|
||||||
episode.markUnwatched()
|
episode.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_history_Artist(artist):
|
def test_history_Artist(artist):
|
||||||
|
artist.markPlayed()
|
||||||
history = artist.history()
|
history = artist.history()
|
||||||
|
assert len(history)
|
||||||
|
artist.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_history_Album(album):
|
def test_history_Album(album):
|
||||||
|
album.markPlayed()
|
||||||
history = album.history()
|
history = album.history()
|
||||||
|
assert len(history)
|
||||||
|
album.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_history_Track(track):
|
def test_history_Track(track):
|
||||||
|
track.markPlayed()
|
||||||
history = track.history()
|
history = track.history()
|
||||||
|
assert len(history)
|
||||||
|
track.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_history_MyAccount(account, movie, show):
|
def test_history_MyAccount(account, movie, show):
|
||||||
movie.markWatched()
|
movie.markPlayed()
|
||||||
show.markWatched()
|
show.markPlayed()
|
||||||
history = account.history()
|
history = account.history()
|
||||||
assert len(history)
|
assert len(history)
|
||||||
movie.markUnwatched()
|
movie.markUnplayed()
|
||||||
show.markUnwatched()
|
show.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_history_MyLibrary(plex, movie, show):
|
def test_history_MyLibrary(plex, movie, show):
|
||||||
movie.markWatched()
|
movie.markPlayed()
|
||||||
show.markWatched()
|
show.markPlayed()
|
||||||
history = plex.library.history()
|
history = plex.library.history()
|
||||||
assert len(history)
|
assert len(history)
|
||||||
movie.markUnwatched()
|
movie.markUnplayed()
|
||||||
show.markUnwatched()
|
show.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_history_MySection(plex, movie):
|
def test_history_MySection(plex, movie):
|
||||||
movie.markWatched()
|
movie.markPlayed()
|
||||||
history = plex.library.section("Movies").history()
|
history = plex.library.section("Movies").history()
|
||||||
assert len(history)
|
assert len(history)
|
||||||
movie.markUnwatched()
|
movie.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_history_MyServer(plex, movie):
|
def test_history_MyServer(plex, movie):
|
||||||
movie.markWatched()
|
movie.markPlayed()
|
||||||
history = plex.history()
|
history = plex.history()
|
||||||
assert len(history)
|
assert len(history)
|
||||||
movie.markUnwatched()
|
movie.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_history_User(account, shared_username):
|
def test_history_User(account, shared_username):
|
||||||
|
|
|
@ -120,7 +120,7 @@ def test_library_fetchItem(plex, movie):
|
||||||
def test_library_onDeck(plex, movie):
|
def test_library_onDeck(plex, movie):
|
||||||
movie.updateProgress(movie.duration // 4) # set progress to 25%
|
movie.updateProgress(movie.duration // 4) # set progress to 25%
|
||||||
assert movie in plex.library.onDeck()
|
assert movie in plex.library.onDeck()
|
||||||
movie.markUnwatched()
|
movie.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_library_recentlyAdded(plex):
|
def test_library_recentlyAdded(plex):
|
||||||
|
@ -264,10 +264,10 @@ def test_library_deleteMediaPreviews(movies):
|
||||||
def test_library_MovieSection_onDeck(movie, movies, tvshows, episode):
|
def test_library_MovieSection_onDeck(movie, movies, tvshows, episode):
|
||||||
movie.updateProgress(movie.duration // 4) # set progress to 25%
|
movie.updateProgress(movie.duration // 4) # set progress to 25%
|
||||||
assert movie in movies.onDeck()
|
assert movie in movies.onDeck()
|
||||||
movie.markUnwatched()
|
movie.markUnplayed()
|
||||||
episode.updateProgress(episode.duration // 4)
|
episode.updateProgress(episode.duration // 4)
|
||||||
assert episode in tvshows.onDeck()
|
assert episode in tvshows.onDeck()
|
||||||
episode.markUnwatched()
|
episode.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_library_MovieSection_searchMovies(movies):
|
def test_library_MovieSection_searchMovies(movies):
|
||||||
|
|
|
@ -208,10 +208,10 @@ def test_server_playlists(plex, show):
|
||||||
|
|
||||||
|
|
||||||
def test_server_history(plex, movie):
|
def test_server_history(plex, movie):
|
||||||
movie.markWatched()
|
movie.markPlayed()
|
||||||
history = plex.history()
|
history = plex.history()
|
||||||
assert len(history)
|
assert len(history)
|
||||||
movie.markUnwatched()
|
movie.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_server_Server_query(plex):
|
def test_server_Server_query(plex):
|
||||||
|
|
|
@ -125,7 +125,7 @@ def test_add_episode_to_sync(clear_sync_device, episode):
|
||||||
|
|
||||||
|
|
||||||
def test_limited_watched(clear_sync_device, show):
|
def test_limited_watched(clear_sync_device, show):
|
||||||
show.markUnwatched()
|
show.markUnplayed()
|
||||||
new_item = show.sync(
|
new_item = show.sync(
|
||||||
VIDEO_QUALITY_3_MBPS_720p, client=clear_sync_device, limit=5, unwatched=False
|
VIDEO_QUALITY_3_MBPS_720p, client=clear_sync_device, limit=5, unwatched=False
|
||||||
)
|
)
|
||||||
|
@ -143,7 +143,7 @@ def test_limited_watched(clear_sync_device, show):
|
||||||
)
|
)
|
||||||
assert 5 == len(media_list)
|
assert 5 == len(media_list)
|
||||||
assert [e.ratingKey for e in episodes] == [m.ratingKey for m in media_list]
|
assert [e.ratingKey for e in episodes] == [m.ratingKey for m in media_list]
|
||||||
episodes[0].markWatched()
|
episodes[0].markPlayed()
|
||||||
show._server.refreshSync()
|
show._server.refreshSync()
|
||||||
media_list = utils.wait_until(
|
media_list = utils.wait_until(
|
||||||
get_media, delay=0.25, timeout=3, item=item, server=show._server
|
get_media, delay=0.25, timeout=3, item=item, server=show._server
|
||||||
|
@ -153,7 +153,7 @@ def test_limited_watched(clear_sync_device, show):
|
||||||
|
|
||||||
|
|
||||||
def test_limited_unwatched(clear_sync_device, show):
|
def test_limited_unwatched(clear_sync_device, show):
|
||||||
show.markUnwatched()
|
show.markUnplayed()
|
||||||
new_item = show.sync(
|
new_item = show.sync(
|
||||||
VIDEO_QUALITY_3_MBPS_720p, client=clear_sync_device, limit=5, unwatched=True
|
VIDEO_QUALITY_3_MBPS_720p, client=clear_sync_device, limit=5, unwatched=True
|
||||||
)
|
)
|
||||||
|
@ -171,7 +171,7 @@ def test_limited_unwatched(clear_sync_device, show):
|
||||||
)
|
)
|
||||||
assert len(episodes) == len(media_list)
|
assert len(episodes) == len(media_list)
|
||||||
assert [e.ratingKey for e in episodes] == [m.ratingKey for m in media_list]
|
assert [e.ratingKey for e in episodes] == [m.ratingKey for m in media_list]
|
||||||
episodes[0].markWatched()
|
episodes[0].markPlayed()
|
||||||
show._server.refreshSync()
|
show._server.refreshSync()
|
||||||
episodes = show.episodes(viewCount=0)[:5]
|
episodes = show.episodes(viewCount=0)[:5]
|
||||||
media_list = utils.wait_until(
|
media_list = utils.wait_until(
|
||||||
|
@ -182,7 +182,7 @@ def test_limited_unwatched(clear_sync_device, show):
|
||||||
|
|
||||||
|
|
||||||
def test_unlimited_and_watched(clear_sync_device, show):
|
def test_unlimited_and_watched(clear_sync_device, show):
|
||||||
show.markUnwatched()
|
show.markUnplayed()
|
||||||
new_item = show.sync(
|
new_item = show.sync(
|
||||||
VIDEO_QUALITY_3_MBPS_720p, client=clear_sync_device, unwatched=False
|
VIDEO_QUALITY_3_MBPS_720p, client=clear_sync_device, unwatched=False
|
||||||
)
|
)
|
||||||
|
@ -200,7 +200,7 @@ def test_unlimited_and_watched(clear_sync_device, show):
|
||||||
)
|
)
|
||||||
assert len(episodes) == len(media_list)
|
assert len(episodes) == len(media_list)
|
||||||
assert [e.ratingKey for e in episodes] == [m.ratingKey for m in media_list]
|
assert [e.ratingKey for e in episodes] == [m.ratingKey for m in media_list]
|
||||||
episodes[0].markWatched()
|
episodes[0].markPlayed()
|
||||||
show._server.refreshSync()
|
show._server.refreshSync()
|
||||||
episodes = show.episodes()
|
episodes = show.episodes()
|
||||||
media_list = utils.wait_until(
|
media_list = utils.wait_until(
|
||||||
|
@ -211,7 +211,7 @@ def test_unlimited_and_watched(clear_sync_device, show):
|
||||||
|
|
||||||
|
|
||||||
def test_unlimited_and_unwatched(clear_sync_device, show):
|
def test_unlimited_and_unwatched(clear_sync_device, show):
|
||||||
show.markUnwatched()
|
show.markUnplayed()
|
||||||
new_item = show.sync(
|
new_item = show.sync(
|
||||||
VIDEO_QUALITY_3_MBPS_720p, client=clear_sync_device, unwatched=True
|
VIDEO_QUALITY_3_MBPS_720p, client=clear_sync_device, unwatched=True
|
||||||
)
|
)
|
||||||
|
@ -229,7 +229,7 @@ def test_unlimited_and_unwatched(clear_sync_device, show):
|
||||||
)
|
)
|
||||||
assert len(episodes) == len(media_list)
|
assert len(episodes) == len(media_list)
|
||||||
assert [e.ratingKey for e in episodes] == [m.ratingKey for m in media_list]
|
assert [e.ratingKey for e in episodes] == [m.ratingKey for m in media_list]
|
||||||
episodes[0].markWatched()
|
episodes[0].markPlayed()
|
||||||
show._server.refreshSync()
|
show._server.refreshSync()
|
||||||
episodes = show.episodes(viewCount=0)
|
episodes = show.episodes(viewCount=0)
|
||||||
media_list = utils.wait_until(
|
media_list = utils.wait_until(
|
||||||
|
|
|
@ -340,6 +340,16 @@ def test_video_Movie_isFullObject_and_reload(plex):
|
||||||
assert len(movie_via_section_search.roles) >= 3
|
assert len(movie_via_section_search.roles) >= 3
|
||||||
|
|
||||||
|
|
||||||
|
def test_video_movie_watched(movie):
|
||||||
|
movie.markUnplayed()
|
||||||
|
movie.markPlayed()
|
||||||
|
movie.reload()
|
||||||
|
assert movie.viewCount == 1
|
||||||
|
movie.markUnplayed()
|
||||||
|
movie.reload()
|
||||||
|
assert movie.viewCount == 0
|
||||||
|
|
||||||
|
|
||||||
def test_video_Movie_isPartialObject(movie):
|
def test_video_Movie_isPartialObject(movie):
|
||||||
assert movie.isPartialObject()
|
assert movie.isPartialObject()
|
||||||
movie._autoReload = False
|
movie._autoReload = False
|
||||||
|
@ -410,13 +420,6 @@ def test_video_Movie_upload_select_remove_subtitle(movie, subtitle):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
def test_video_Movie_history(movie):
|
|
||||||
movie.markWatched()
|
|
||||||
history = movie.history()
|
|
||||||
assert len(history)
|
|
||||||
movie.markUnwatched()
|
|
||||||
|
|
||||||
|
|
||||||
def test_video_Movie_match(movies):
|
def test_video_Movie_match(movies):
|
||||||
sectionAgent = movies.agent
|
sectionAgent = movies.agent
|
||||||
sectionAgents = [agent.identifier for agent in movies.agents() if agent.shortIdentifier != 'none']
|
sectionAgents = [agent.identifier for agent in movies.agents() if agent.shortIdentifier != 'none']
|
||||||
|
@ -760,30 +763,23 @@ def test_video_Show_episode(show):
|
||||||
show.episode(season=1337, episode=1337)
|
show.episode(season=1337, episode=1337)
|
||||||
|
|
||||||
|
|
||||||
def test_video_Show_history(show):
|
|
||||||
show.markWatched()
|
|
||||||
history = show.history()
|
|
||||||
assert len(history)
|
|
||||||
show.markUnwatched()
|
|
||||||
|
|
||||||
|
|
||||||
def test_video_Show_watched(tvshows):
|
def test_video_Show_watched(tvshows):
|
||||||
show = tvshows.get("The 100")
|
show = tvshows.get("The 100")
|
||||||
episode = show.episodes()[0]
|
episode = show.episodes()[0]
|
||||||
episode.markWatched()
|
episode.markPlayed()
|
||||||
watched = show.watched()
|
watched = show.watched()
|
||||||
assert len(watched) == 1 and watched[0].title == "Pilot"
|
assert len(watched) == 1 and watched[0].title == "Pilot"
|
||||||
episode.markUnwatched()
|
episode.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_video_Show_unwatched(tvshows):
|
def test_video_Show_unwatched(tvshows):
|
||||||
show = tvshows.get("The 100")
|
show = tvshows.get("The 100")
|
||||||
episodes = show.episodes()
|
episodes = show.episodes()
|
||||||
episode = episodes[0]
|
episode = episodes[0]
|
||||||
episode.markWatched()
|
episode.markPlayed()
|
||||||
unwatched = show.unwatched()
|
unwatched = show.unwatched()
|
||||||
assert len(unwatched) == len(episodes) - 1
|
assert len(unwatched) == len(episodes) - 1
|
||||||
episode.markUnwatched()
|
episode.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_video_Show_settings(show):
|
def test_video_Show_settings(show):
|
||||||
|
@ -803,7 +799,7 @@ def test_video_Show_reload(plex):
|
||||||
def test_video_Show_episodes(tvshows):
|
def test_video_Show_episodes(tvshows):
|
||||||
show = tvshows.get("The 100")
|
show = tvshows.get("The 100")
|
||||||
episodes = show.episodes()
|
episodes = show.episodes()
|
||||||
episodes[0].markWatched()
|
episodes[0].markPlayed()
|
||||||
unwatched = show.episodes(viewCount=0)
|
unwatched = show.episodes(viewCount=0)
|
||||||
assert len(unwatched) == len(episodes) - 1
|
assert len(unwatched) == len(episodes) - 1
|
||||||
|
|
||||||
|
@ -836,16 +832,16 @@ def test_video_Show_analyze(show):
|
||||||
show = show.analyze()
|
show = show.analyze()
|
||||||
|
|
||||||
|
|
||||||
def test_video_Show_markWatched(show):
|
def test_video_Show_markPlayed(show):
|
||||||
show.markWatched()
|
show.markPlayed()
|
||||||
show.reload()
|
show.reload()
|
||||||
assert show.isWatched
|
assert show.isPlayed
|
||||||
|
|
||||||
|
|
||||||
def test_video_Show_markUnwatched(show):
|
def test_video_Show_markUnplayed(show):
|
||||||
show.markUnwatched()
|
show.markUnplayed()
|
||||||
show.reload()
|
show.reload()
|
||||||
assert not show.isWatched
|
assert not show.isPlayed
|
||||||
|
|
||||||
|
|
||||||
def test_video_Show_refresh(show):
|
def test_video_Show_refresh(show):
|
||||||
|
@ -856,8 +852,8 @@ def test_video_Show_get(show):
|
||||||
assert show.get("Winter Is Coming").title == "Winter Is Coming"
|
assert show.get("Winter Is Coming").title == "Winter Is Coming"
|
||||||
|
|
||||||
|
|
||||||
def test_video_Show_isWatched(show):
|
def test_video_Show_isPlayed(show):
|
||||||
assert not show.isWatched
|
assert not show.isPlayed
|
||||||
|
|
||||||
|
|
||||||
def test_video_Show_section(show):
|
def test_video_Show_section(show):
|
||||||
|
@ -933,14 +929,6 @@ def test_video_Season(show):
|
||||||
assert show.season("Season 1") == seasons[0]
|
assert show.season("Season 1") == seasons[0]
|
||||||
|
|
||||||
|
|
||||||
def test_video_Season_history(show):
|
|
||||||
season = show.season("Season 1")
|
|
||||||
season.markWatched()
|
|
||||||
history = season.history()
|
|
||||||
assert len(history)
|
|
||||||
season.markUnwatched()
|
|
||||||
|
|
||||||
|
|
||||||
def test_video_Season_attrs(show):
|
def test_video_Season_attrs(show):
|
||||||
season = show.season("Season 1")
|
season = show.season("Season 1")
|
||||||
assert utils.is_datetime(season.addedAt)
|
assert utils.is_datetime(season.addedAt)
|
||||||
|
@ -988,16 +976,16 @@ def test_video_Season_show(show):
|
||||||
|
|
||||||
def test_video_Season_watched(show):
|
def test_video_Season_watched(show):
|
||||||
season = show.season("Season 1")
|
season = show.season("Season 1")
|
||||||
season.markWatched()
|
season.markPlayed()
|
||||||
season.reload()
|
season.reload()
|
||||||
assert season.isWatched
|
assert season.isPlayed
|
||||||
|
|
||||||
|
|
||||||
def test_video_Season_unwatched(show):
|
def test_video_Season_unwatched(show):
|
||||||
season = show.season("Season 1")
|
season = show.season("Season 1")
|
||||||
season.markUnwatched()
|
season.markUnplayed()
|
||||||
season.reload()
|
season.reload()
|
||||||
assert not season.isWatched
|
assert not season.isPlayed
|
||||||
|
|
||||||
|
|
||||||
def test_video_Season_get(show):
|
def test_video_Season_get(show):
|
||||||
|
@ -1082,13 +1070,6 @@ def test_video_Episode(show):
|
||||||
show.episode(season=1337, episode=1337)
|
show.episode(season=1337, episode=1337)
|
||||||
|
|
||||||
|
|
||||||
def test_video_Episode_history(episode):
|
|
||||||
episode.markWatched()
|
|
||||||
history = episode.history()
|
|
||||||
assert len(history)
|
|
||||||
episode.markUnwatched()
|
|
||||||
|
|
||||||
|
|
||||||
def test_video_Episode_hidden_season(episode):
|
def test_video_Episode_hidden_season(episode):
|
||||||
assert episode.skipParent is False
|
assert episode.skipParent is False
|
||||||
assert episode.parentRatingKey
|
assert episode.parentRatingKey
|
||||||
|
@ -1182,7 +1163,7 @@ def test_video_Episode_attrs(episode):
|
||||||
if episode.writers:
|
if episode.writers:
|
||||||
assert "David Benioff" in [i.tag for i in episode.writers]
|
assert "David Benioff" in [i.tag for i in episode.writers]
|
||||||
assert episode.year is None
|
assert episode.year is None
|
||||||
assert episode.isWatched in [True, False]
|
assert episode.isPlayed in [True, False]
|
||||||
assert len(episode.locations) == 1
|
assert len(episode.locations) == 1
|
||||||
assert len(episode.locations[0]) >= 10
|
assert len(episode.locations[0]) >= 10
|
||||||
assert episode.seasonEpisode == "s01e01"
|
assert episode.seasonEpisode == "s01e01"
|
||||||
|
@ -1222,20 +1203,20 @@ def test_video_Episode_attrs(episode):
|
||||||
def test_video_Episode_watched(tvshows):
|
def test_video_Episode_watched(tvshows):
|
||||||
season = tvshows.get("The 100").season(1)
|
season = tvshows.get("The 100").season(1)
|
||||||
episode = season.episode(1)
|
episode = season.episode(1)
|
||||||
episode.markWatched()
|
episode.markPlayed()
|
||||||
watched = season.watched()
|
watched = season.watched()
|
||||||
assert len(watched) == 1 and watched[0].title == "Pilot"
|
assert len(watched) == 1 and watched[0].title == "Pilot"
|
||||||
episode.markUnwatched()
|
episode.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
def test_video_Episode_unwatched(tvshows):
|
def test_video_Episode_unwatched(tvshows):
|
||||||
season = tvshows.get("The 100").season(1)
|
season = tvshows.get("The 100").season(1)
|
||||||
episodes = season.episodes()
|
episodes = season.episodes()
|
||||||
episode = episodes[0]
|
episode = episodes[0]
|
||||||
episode.markWatched()
|
episode.markPlayed()
|
||||||
unwatched = season.unwatched()
|
unwatched = season.unwatched()
|
||||||
assert len(unwatched) == len(episodes) - 1
|
assert len(unwatched) == len(episodes) - 1
|
||||||
episode.markUnwatched()
|
episode.markUnplayed()
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.xfail(reason="Changing images fails randomly")
|
@pytest.mark.xfail(reason="Changing images fails randomly")
|
||||||
|
|
Loading…
Reference in a new issue