2017-02-02 04:47:22 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2023-03-10 00:18:27 +00:00
|
|
|
import math
|
2021-01-24 19:47:15 +00:00
|
|
|
import os
|
2018-09-14 18:03:23 +00:00
|
|
|
import time
|
2017-10-28 20:58:47 +00:00
|
|
|
from datetime import datetime
|
|
|
|
from functools import partial
|
2020-04-15 18:41:15 +00:00
|
|
|
|
|
|
|
import plexapi
|
|
|
|
import pytest
|
|
|
|
import requests
|
2023-03-10 00:18:27 +00:00
|
|
|
from PIL import Image, ImageColor, ImageStat
|
2020-04-15 18:41:15 +00:00
|
|
|
from plexapi.client import PlexClient
|
2020-12-07 01:21:47 +00:00
|
|
|
from plexapi.exceptions import NotFound
|
2018-09-14 18:03:23 +00:00
|
|
|
from plexapi.myplex import MyPlexAccount
|
2020-04-15 18:41:15 +00:00
|
|
|
from plexapi.server import PlexServer
|
2020-12-07 01:21:47 +00:00
|
|
|
from plexapi.utils import createMyPlexDevice
|
2018-09-14 18:03:23 +00:00
|
|
|
|
2020-05-06 14:15:03 +00:00
|
|
|
from .payloads import ACCOUNT_XML
|
|
|
|
|
2017-10-28 20:58:47 +00:00
|
|
|
try:
|
2019-09-24 18:35:29 +00:00
|
|
|
from unittest.mock import patch, MagicMock, mock_open
|
2017-10-28 20:58:47 +00:00
|
|
|
except ImportError:
|
2019-09-24 18:35:29 +00:00
|
|
|
from mock import patch, MagicMock, mock_open
|
2017-10-28 20:58:47 +00:00
|
|
|
|
|
|
|
|
2020-04-16 21:51:18 +00:00
|
|
|
SERVER_BASEURL = plexapi.CONFIG.get("auth.server_baseurl")
|
|
|
|
MYPLEX_USERNAME = plexapi.CONFIG.get("auth.myplex_username")
|
|
|
|
MYPLEX_PASSWORD = plexapi.CONFIG.get("auth.myplex_password")
|
2020-12-04 17:37:19 +00:00
|
|
|
SERVER_TOKEN = plexapi.CONFIG.get("auth.server_token")
|
2020-04-16 21:51:18 +00:00
|
|
|
CLIENT_BASEURL = plexapi.CONFIG.get("auth.client_baseurl")
|
|
|
|
CLIENT_TOKEN = plexapi.CONFIG.get("auth.client_token")
|
2017-01-09 14:21:54 +00:00
|
|
|
|
2017-05-13 03:25:57 +00:00
|
|
|
MIN_DATETIME = datetime(1999, 1, 1)
|
2020-04-16 21:51:18 +00:00
|
|
|
REGEX_EMAIL = r"(^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$)"
|
|
|
|
REGEX_IPADDR = r"^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$"
|
2017-04-23 05:18:53 +00:00
|
|
|
|
2017-04-29 05:47:21 +00:00
|
|
|
AUDIOCHANNELS = {2, 6}
|
2020-04-16 21:51:18 +00:00
|
|
|
AUDIOLAYOUTS = {"5.1", "5.1(side)", "stereo"}
|
|
|
|
CODECS = {"aac", "ac3", "dca", "h264", "mp3", "mpeg4"}
|
|
|
|
CONTAINERS = {"avi", "mp4", "mkv"}
|
|
|
|
CONTENTRATINGS = {"TV-14", "TV-MA", "G", "NR", "Not Rated"}
|
|
|
|
FRAMERATES = {"24p", "PAL", "NTSC"}
|
|
|
|
PROFILES = {"advanced simple", "main", "constrained baseline"}
|
|
|
|
RESOLUTIONS = {"sd", "480", "576", "720", "1080"}
|
2021-01-25 01:33:07 +00:00
|
|
|
HW_DECODERS = {'dxva2', 'videotoolbox', 'mediacodecndk', 'vaapi', 'nvdec'}
|
|
|
|
HW_ENCODERS = {'qsv', 'mf', 'videotoolbox', 'mediacodecndk', 'vaapi', 'nvenc', 'x264'}
|
2020-04-16 21:51:18 +00:00
|
|
|
ENTITLEMENTS = {
|
|
|
|
"ios",
|
|
|
|
"roku",
|
|
|
|
"android",
|
|
|
|
"xbox_one",
|
|
|
|
"xbox_360",
|
|
|
|
"windows",
|
|
|
|
"windows_phone",
|
|
|
|
}
|
2022-08-28 05:56:01 +00:00
|
|
|
SYNC_DEVICE_IDENTIFIER = f"test-sync-client-{plexapi.X_PLEX_IDENTIFIER}"
|
2020-12-07 01:21:47 +00:00
|
|
|
SYNC_DEVICE_HEADERS = {
|
|
|
|
"X-Plex-Provides": "sync-target",
|
|
|
|
"X-Plex-Platform": "iOS",
|
|
|
|
"X-Plex-Platform-Version": "11.4.1",
|
|
|
|
"X-Plex-Device": "iPhone",
|
|
|
|
"X-Plex-Device-Name": "Test Sync Device",
|
|
|
|
"X-Plex-Client-Identifier": SYNC_DEVICE_IDENTIFIER
|
|
|
|
}
|
2020-04-16 21:51:18 +00:00
|
|
|
|
|
|
|
TEST_AUTHENTICATED = "authenticated"
|
|
|
|
TEST_ANONYMOUSLY = "anonymously"
|
2018-09-15 08:42:42 +00:00
|
|
|
ANON_PARAM = pytest.param(TEST_ANONYMOUSLY, marks=pytest.mark.anonymous)
|
|
|
|
AUTH_PARAM = pytest.param(TEST_AUTHENTICATED, marks=pytest.mark.authenticated)
|
|
|
|
|
2021-01-24 19:47:15 +00:00
|
|
|
BASE_DIR_PATH = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
STUB_MOVIE_PATH = os.path.join(BASE_DIR_PATH, "tests", "data", "video_stub.mp4")
|
|
|
|
STUB_MP3_PATH = os.path.join(BASE_DIR_PATH, "tests", "data", "audio_stub.mp3")
|
|
|
|
STUB_IMAGE_PATH = os.path.join(BASE_DIR_PATH, "tests", "data", "cute_cat.jpg")
|
2023-08-27 19:59:53 +00:00
|
|
|
# For the default Docker bootstrap test Plex Media Server data directory
|
|
|
|
BOOTSTRAP_DATA_PATH = os.path.join(BASE_DIR_PATH, "plex", "db", "Library", "Application Support", "Plex Media Server")
|
2021-01-24 19:47:15 +00:00
|
|
|
|
2017-01-09 14:21:54 +00:00
|
|
|
|
2017-04-15 00:47:59 +00:00
|
|
|
def pytest_addoption(parser):
|
2020-04-16 21:51:18 +00:00
|
|
|
parser.addoption(
|
|
|
|
"--client", action="store_true", default=False, help="Run client tests."
|
|
|
|
)
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
2018-09-15 08:42:42 +00:00
|
|
|
def pytest_generate_tests(metafunc):
|
2020-04-16 21:51:18 +00:00
|
|
|
if "plex" in metafunc.fixturenames:
|
|
|
|
if (
|
|
|
|
"account" in metafunc.fixturenames
|
|
|
|
or TEST_AUTHENTICATED in metafunc.definition.keywords
|
|
|
|
):
|
|
|
|
metafunc.parametrize("plex", [AUTH_PARAM], indirect=True)
|
2018-09-15 08:42:42 +00:00
|
|
|
else:
|
2020-04-16 21:51:18 +00:00
|
|
|
metafunc.parametrize("plex", [ANON_PARAM, AUTH_PARAM], indirect=True)
|
|
|
|
elif "account" in metafunc.fixturenames:
|
|
|
|
metafunc.parametrize("account", [AUTH_PARAM], indirect=True)
|
2018-09-15 08:42:42 +00:00
|
|
|
|
|
|
|
|
2017-04-15 00:47:59 +00:00
|
|
|
def pytest_runtest_setup(item):
|
2020-04-16 21:51:18 +00:00
|
|
|
if "client" in item.keywords and not item.config.getvalue("client"):
|
|
|
|
return pytest.skip("Need --client option to run.")
|
|
|
|
if TEST_AUTHENTICATED in item.keywords and not (
|
2020-12-04 17:37:19 +00:00
|
|
|
MYPLEX_USERNAME and MYPLEX_PASSWORD or SERVER_TOKEN
|
2020-04-16 21:51:18 +00:00
|
|
|
):
|
|
|
|
return pytest.skip(
|
2020-12-04 17:37:19 +00:00
|
|
|
"You have to specify MYPLEX_USERNAME and MYPLEX_PASSWORD or SERVER_TOKEN to run authenticated tests"
|
2020-04-16 21:51:18 +00:00
|
|
|
)
|
2020-12-04 17:37:19 +00:00
|
|
|
if TEST_ANONYMOUSLY in item.keywords and (MYPLEX_USERNAME and MYPLEX_PASSWORD or SERVER_TOKEN):
|
2020-04-16 21:51:18 +00:00
|
|
|
return pytest.skip(
|
|
|
|
"Anonymous tests should be ran on unclaimed server, without providing MYPLEX_USERNAME and "
|
2020-12-04 17:37:19 +00:00
|
|
|
"MYPLEX_PASSWORD or SERVER_TOKEN"
|
2020-04-16 21:51:18 +00:00
|
|
|
)
|
2017-01-31 00:02:22 +00:00
|
|
|
|
|
|
|
|
2017-06-06 01:40:52 +00:00
|
|
|
# ---------------------------------
|
|
|
|
# Fixtures
|
|
|
|
# ---------------------------------
|
2017-01-09 14:21:54 +00:00
|
|
|
|
2018-09-15 08:42:42 +00:00
|
|
|
|
2021-01-27 21:37:56 +00:00
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
def sess():
|
|
|
|
session = requests.Session()
|
|
|
|
session.request = partial(session.request, timeout=120)
|
|
|
|
return session
|
2018-09-15 08:42:42 +00:00
|
|
|
|
|
|
|
|
2020-04-16 21:51:18 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2021-02-02 02:59:11 +00:00
|
|
|
def account(sess):
|
2020-12-04 17:37:19 +00:00
|
|
|
if SERVER_TOKEN:
|
2021-02-02 02:59:11 +00:00
|
|
|
return MyPlexAccount(session=sess)
|
2020-04-16 21:51:18 +00:00
|
|
|
assert MYPLEX_USERNAME, "Required MYPLEX_USERNAME not specified."
|
|
|
|
assert MYPLEX_PASSWORD, "Required MYPLEX_PASSWORD not specified."
|
2021-02-02 02:59:11 +00:00
|
|
|
return MyPlexAccount(session=sess)
|
2017-01-09 14:21:54 +00:00
|
|
|
|
2017-04-15 00:47:59 +00:00
|
|
|
|
2020-04-16 21:51:18 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2018-09-14 18:03:23 +00:00
|
|
|
def account_once(account):
|
2021-01-24 19:47:15 +00:00
|
|
|
if os.environ.get("TEST_ACCOUNT_ONCE") not in ("1", "true") and os.environ.get("CI") == "true":
|
2020-04-16 21:51:18 +00:00
|
|
|
pytest.skip("Do not forget to test this by providing TEST_ACCOUNT_ONCE=1")
|
2018-09-14 18:03:23 +00:00
|
|
|
return account
|
|
|
|
|
|
|
|
|
2020-04-16 21:51:18 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2018-09-14 18:03:23 +00:00
|
|
|
def account_plexpass(account):
|
|
|
|
if not account.subscriptionActive:
|
2020-04-16 21:51:18 +00:00
|
|
|
pytest.skip(
|
2023-08-27 21:24:54 +00:00
|
|
|
"PlexPass subscription is not active, unable to test dashboard, movie extras, movie editions, "
|
2023-11-15 00:15:30 +00:00
|
|
|
"sync-stuff, etc... be careful!"
|
2020-04-16 21:51:18 +00:00
|
|
|
)
|
2018-09-14 18:03:23 +00:00
|
|
|
return account
|
|
|
|
|
|
|
|
|
2020-04-16 21:51:18 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2018-09-14 18:03:23 +00:00
|
|
|
def account_synctarget(account_plexpass):
|
2020-12-07 01:21:47 +00:00
|
|
|
assert "sync-target" in SYNC_DEVICE_HEADERS["X-Plex-Provides"]
|
|
|
|
assert "iOS" == SYNC_DEVICE_HEADERS["X-Plex-Platform"]
|
|
|
|
assert "11.4.1" == SYNC_DEVICE_HEADERS["X-Plex-Platform-Version"]
|
|
|
|
assert "iPhone" == SYNC_DEVICE_HEADERS["X-Plex-Device"]
|
2018-09-14 18:03:23 +00:00
|
|
|
return account_plexpass
|
2018-09-08 15:25:16 +00:00
|
|
|
|
|
|
|
|
2020-05-06 14:15:03 +00:00
|
|
|
@pytest.fixture()
|
|
|
|
def mocked_account(requests_mock):
|
2023-07-27 21:00:46 +00:00
|
|
|
requests_mock.get("https://plex.tv/api/v2/user", text=ACCOUNT_XML)
|
2020-05-06 14:15:03 +00:00
|
|
|
return MyPlexAccount(token="faketoken")
|
|
|
|
|
|
|
|
|
2020-04-16 21:51:18 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2021-01-27 21:37:56 +00:00
|
|
|
def plex(request, sess):
|
2020-04-16 21:51:18 +00:00
|
|
|
assert SERVER_BASEURL, "Required SERVER_BASEURL not specified."
|
2021-01-27 21:37:56 +00:00
|
|
|
|
2018-09-15 08:42:42 +00:00
|
|
|
if request.param == TEST_AUTHENTICATED:
|
2021-02-02 02:59:11 +00:00
|
|
|
token = MyPlexAccount(session=sess).authenticationToken
|
2018-09-15 08:42:42 +00:00
|
|
|
else:
|
|
|
|
token = None
|
2021-01-27 21:37:56 +00:00
|
|
|
return PlexServer(SERVER_BASEURL, token, session=sess)
|
2017-01-09 14:21:54 +00:00
|
|
|
|
2017-02-27 05:36:20 +00:00
|
|
|
|
2020-12-16 04:41:04 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2020-12-07 01:21:47 +00:00
|
|
|
def sync_device(account_synctarget):
|
|
|
|
try:
|
2020-12-16 04:41:04 +00:00
|
|
|
device = account_synctarget.device(clientId=SYNC_DEVICE_IDENTIFIER)
|
2020-12-07 01:21:47 +00:00
|
|
|
except NotFound:
|
2020-12-16 04:41:04 +00:00
|
|
|
device = createMyPlexDevice(SYNC_DEVICE_HEADERS, account_synctarget)
|
2021-01-27 21:37:56 +00:00
|
|
|
|
2020-12-07 01:21:47 +00:00
|
|
|
assert device
|
2020-12-16 04:41:04 +00:00
|
|
|
assert "sync-target" in device.provides
|
2020-12-07 01:21:47 +00:00
|
|
|
return device
|
2018-09-08 15:25:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
2020-12-07 01:21:47 +00:00
|
|
|
def clear_sync_device(sync_device, plex):
|
|
|
|
sync_items = sync_device.syncItems()
|
2018-09-08 15:25:16 +00:00
|
|
|
for item in sync_items.items:
|
|
|
|
item.delete()
|
|
|
|
plex.refreshSync()
|
2020-12-07 01:21:47 +00:00
|
|
|
return sync_device
|
2018-09-08 15:25:16 +00:00
|
|
|
|
|
|
|
|
2017-07-17 14:11:03 +00:00
|
|
|
@pytest.fixture
|
|
|
|
def fresh_plex():
|
|
|
|
return PlexServer
|
|
|
|
|
|
|
|
|
2017-01-09 14:21:54 +00:00
|
|
|
@pytest.fixture()
|
2020-04-15 20:53:17 +00:00
|
|
|
def plex2(plex):
|
2017-04-15 00:47:59 +00:00
|
|
|
return plex()
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
2017-04-26 03:09:37 +00:00
|
|
|
@pytest.fixture()
|
2020-04-15 20:53:17 +00:00
|
|
|
def client(request, plex):
|
|
|
|
return PlexClient(plex, baseurl=CLIENT_BASEURL, token=CLIENT_TOKEN)
|
2017-04-26 03:09:37 +00:00
|
|
|
|
|
|
|
|
2017-01-09 14:21:54 +00:00
|
|
|
@pytest.fixture()
|
2021-05-28 05:39:00 +00:00
|
|
|
def movies(plex):
|
|
|
|
return plex.library.section("Movies")
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
2021-05-28 05:39:00 +00:00
|
|
|
def tvshows(plex):
|
|
|
|
return plex.library.section("TV Shows")
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
2017-04-15 00:47:59 +00:00
|
|
|
def music(plex):
|
2020-04-16 21:51:18 +00:00
|
|
|
return plex.library.section("Music")
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
2017-04-15 00:47:59 +00:00
|
|
|
def photos(plex):
|
2020-04-16 21:51:18 +00:00
|
|
|
return plex.library.section("Photos")
|
2017-01-31 00:02:22 +00:00
|
|
|
|
2017-02-27 05:36:20 +00:00
|
|
|
|
2017-01-31 00:02:22 +00:00
|
|
|
@pytest.fixture()
|
2017-04-15 00:47:59 +00:00
|
|
|
def movie(movies):
|
2020-04-16 21:51:18 +00:00
|
|
|
return movies.get("Elephants Dream")
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
2019-07-31 18:53:06 +00:00
|
|
|
@pytest.fixture()
|
2021-05-28 05:39:00 +00:00
|
|
|
def show(tvshows):
|
|
|
|
return tvshows.get("Game of Thrones")
|
2019-09-21 21:17:35 +00:00
|
|
|
|
2019-07-31 18:53:06 +00:00
|
|
|
|
2017-01-09 14:21:54 +00:00
|
|
|
@pytest.fixture()
|
2021-05-28 05:39:00 +00:00
|
|
|
def season(show):
|
|
|
|
return show.season(1)
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
2021-05-28 05:39:00 +00:00
|
|
|
def episode(season):
|
|
|
|
return season.get("Winter Is Coming")
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
2021-05-28 05:39:00 +00:00
|
|
|
def artist(music):
|
|
|
|
return music.get("Broke For Free")
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
2021-05-28 05:39:00 +00:00
|
|
|
def album(artist):
|
|
|
|
return artist.album("Layers")
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
2021-05-28 05:39:00 +00:00
|
|
|
def track(album):
|
|
|
|
return album.track("As Colourful as Ever")
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
2017-04-15 00:47:59 +00:00
|
|
|
def photoalbum(photos):
|
2017-04-23 05:54:53 +00:00
|
|
|
try:
|
2020-04-16 21:51:18 +00:00
|
|
|
return photos.get("Cats")
|
2019-10-03 00:58:00 +00:00
|
|
|
except Exception:
|
2020-04-16 21:51:18 +00:00
|
|
|
return photos.get("photo_album1")
|
2020-04-15 18:41:15 +00:00
|
|
|
|
|
|
|
|
2021-02-15 06:58:48 +00:00
|
|
|
@pytest.fixture()
|
|
|
|
def photo(photoalbum):
|
|
|
|
return photoalbum.photo("photo1")
|
|
|
|
|
|
|
|
|
2021-05-28 05:39:00 +00:00
|
|
|
@pytest.fixture()
|
|
|
|
def collection(plex, movies, movie):
|
2021-07-27 01:45:58 +00:00
|
|
|
try:
|
|
|
|
return movies.collection("Test Collection")
|
|
|
|
except NotFound:
|
2021-05-28 05:39:00 +00:00
|
|
|
return plex.createCollection(
|
|
|
|
title="Test Collection",
|
|
|
|
section=movies,
|
|
|
|
items=movie
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture()
|
|
|
|
def playlist(plex, tvshows, season):
|
2021-07-27 01:45:58 +00:00
|
|
|
try:
|
|
|
|
return tvshows.playlist("Test Playlist")
|
|
|
|
except NotFound:
|
2021-05-28 05:39:00 +00:00
|
|
|
return plex.createPlaylist(
|
|
|
|
title="Test Playlist",
|
|
|
|
items=season.episodes()[:3]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2019-09-24 03:13:17 +00:00
|
|
|
@pytest.fixture()
|
|
|
|
def subtitle():
|
|
|
|
mopen = mock_open()
|
2020-04-16 21:51:18 +00:00
|
|
|
with patch("__main__.open", mopen):
|
|
|
|
with open("subtitle.srt", "w") as handler:
|
|
|
|
handler.write("test")
|
2019-09-24 03:13:17 +00:00
|
|
|
return handler
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
2022-12-21 19:32:43 +00:00
|
|
|
@pytest.fixture()
|
|
|
|
def m3ufile(plex, music, track, tmp_path):
|
|
|
|
for path, paths, files in plex.walk(music.locations[0]):
|
|
|
|
for file in files:
|
|
|
|
if file.title == "playlist.m3u":
|
|
|
|
return file.path
|
|
|
|
m3u = tmp_path / "playlist.m3u"
|
|
|
|
with open(m3u, "w") as handler:
|
|
|
|
handler.write(track.media[0].parts[0].file)
|
|
|
|
return str(m3u)
|
|
|
|
|
|
|
|
|
2018-09-14 18:03:23 +00:00
|
|
|
@pytest.fixture()
|
|
|
|
def shared_username(account):
|
2021-01-24 19:47:15 +00:00
|
|
|
username = os.environ.get("SHARED_USERNAME", "PKKid")
|
2018-09-14 18:03:23 +00:00
|
|
|
for user in account.users():
|
|
|
|
if user.title.lower() == username.lower():
|
|
|
|
return username
|
2020-04-16 21:51:18 +00:00
|
|
|
elif (
|
|
|
|
user.username
|
|
|
|
and user.email
|
|
|
|
and user.id
|
|
|
|
and username.lower()
|
|
|
|
in (user.username.lower(), user.email.lower(), str(user.id))
|
|
|
|
):
|
2018-09-14 18:03:23 +00:00
|
|
|
return username
|
2022-08-28 05:56:01 +00:00
|
|
|
pytest.skip(f"Shared user {username} wasn't found in your MyPlex account")
|
2018-09-14 18:03:23 +00:00
|
|
|
|
|
|
|
|
2017-01-09 14:21:54 +00:00
|
|
|
@pytest.fixture()
|
|
|
|
def monkeydownload(request, monkeypatch):
|
2020-04-16 21:51:18 +00:00
|
|
|
monkeypatch.setattr(
|
|
|
|
"plexapi.utils.download", partial(plexapi.utils.download, mocked=True)
|
|
|
|
)
|
2017-01-09 14:21:54 +00:00
|
|
|
yield
|
|
|
|
monkeypatch.undo()
|
2017-04-15 00:47:59 +00:00
|
|
|
|
|
|
|
|
2017-10-28 20:58:47 +00:00
|
|
|
def callable_http_patch():
|
2022-02-27 03:26:08 +00:00
|
|
|
"""This is intended to stop some http requests inside some tests."""
|
2020-04-16 21:51:18 +00:00
|
|
|
return patch(
|
|
|
|
"plexapi.server.requests.sessions.Session.send",
|
|
|
|
return_value=MagicMock(status_code=200, text="<xml><child></child></xml>"),
|
|
|
|
)
|
2017-10-28 20:58:47 +00:00
|
|
|
|
2017-10-26 21:55:59 +00:00
|
|
|
|
|
|
|
@pytest.fixture()
|
|
|
|
def empty_response(mocker):
|
2020-04-16 21:51:18 +00:00
|
|
|
response = mocker.MagicMock(status_code=200, text="<xml><child></child></xml>")
|
2017-10-26 21:55:59 +00:00
|
|
|
return response
|
|
|
|
|
2017-10-26 23:09:17 +00:00
|
|
|
|
2017-10-26 21:55:59 +00:00
|
|
|
@pytest.fixture()
|
2017-10-28 22:07:06 +00:00
|
|
|
def patched_http_call(mocker):
|
2017-11-01 22:18:18 +00:00
|
|
|
"""This will stop any http calls inside any test."""
|
2020-04-16 21:51:18 +00:00
|
|
|
return mocker.patch(
|
|
|
|
"plexapi.server.requests.sessions.Session.send",
|
|
|
|
return_value=MagicMock(status_code=200, text="<xml><child></child></xml>"),
|
|
|
|
)
|
2017-10-26 21:55:59 +00:00
|
|
|
|
|
|
|
|
2017-06-06 01:40:52 +00:00
|
|
|
# ---------------------------------
|
|
|
|
# Utility Functions
|
|
|
|
# ---------------------------------
|
2017-04-15 00:47:59 +00:00
|
|
|
def is_datetime(value):
|
2020-10-08 20:15:43 +00:00
|
|
|
if value is None:
|
|
|
|
return True
|
2017-04-15 00:47:59 +00:00
|
|
|
return value > MIN_DATETIME
|
|
|
|
|
|
|
|
|
2017-04-23 05:18:53 +00:00
|
|
|
def is_int(value, gte=1):
|
|
|
|
return int(value) >= gte
|
|
|
|
|
2017-04-15 00:47:59 +00:00
|
|
|
|
2017-04-23 05:18:53 +00:00
|
|
|
def is_float(value, gte=1.0):
|
|
|
|
return float(value) >= gte
|
2017-04-15 00:47:59 +00:00
|
|
|
|
2017-04-23 05:18:53 +00:00
|
|
|
|
2021-01-03 19:33:15 +00:00
|
|
|
def is_bool(value):
|
|
|
|
return value is True or value is False
|
|
|
|
|
|
|
|
|
2020-04-16 21:51:18 +00:00
|
|
|
def is_metadata(key, prefix="/library/metadata/", contains="", suffix=""):
|
2017-04-23 05:18:53 +00:00
|
|
|
try:
|
|
|
|
assert key.startswith(prefix)
|
|
|
|
assert contains in key
|
|
|
|
assert key.endswith(suffix)
|
|
|
|
return True
|
|
|
|
except AssertionError:
|
|
|
|
return False
|
2017-04-15 00:47:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
def is_part(key):
|
2020-04-16 21:51:18 +00:00
|
|
|
return is_metadata(key, prefix="/library/parts/")
|
2017-04-23 05:18:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
def is_section(key):
|
2020-04-16 21:51:18 +00:00
|
|
|
return is_metadata(key, prefix="/library/sections/")
|
2017-04-23 05:18:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
def is_string(value, gte=1):
|
2020-05-12 21:26:29 +00:00
|
|
|
return isinstance(value, str) and len(value) >= gte
|
2017-04-15 00:47:59 +00:00
|
|
|
|
|
|
|
|
2021-02-15 01:10:11 +00:00
|
|
|
def is_art(key):
|
|
|
|
return is_metadata(key, contains="/art/")
|
|
|
|
|
|
|
|
|
2017-04-15 00:47:59 +00:00
|
|
|
def is_thumb(key):
|
2020-04-16 21:51:18 +00:00
|
|
|
return is_metadata(key, contains="/thumb/")
|
2018-09-14 18:03:23 +00:00
|
|
|
|
|
|
|
|
2021-05-30 02:00:59 +00:00
|
|
|
def is_composite(key, prefix="/library/metadata/"):
|
|
|
|
return is_metadata(key, prefix=prefix, contains="/composite/")
|
|
|
|
|
|
|
|
|
2018-09-14 18:03:23 +00:00
|
|
|
def wait_until(condition_function, delay=0.25, timeout=1, *args, **kwargs):
|
|
|
|
start = time.time()
|
|
|
|
ready = condition_function(*args, **kwargs)
|
|
|
|
retries = 1
|
|
|
|
while not ready and time.time() - start < timeout:
|
|
|
|
retries += 1
|
|
|
|
time.sleep(delay)
|
|
|
|
ready = condition_function(*args, **kwargs)
|
|
|
|
|
2022-08-28 05:56:01 +00:00
|
|
|
assert ready, f"Wait timeout after {int(retries)} retries, {time.time() - start:.2f} seconds"
|
2018-09-14 18:03:23 +00:00
|
|
|
|
|
|
|
return ready
|
2023-03-10 00:18:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
def detect_color_image(file, thumb_size=150, MSE_cutoff=22, adjust_color_bias=True):
|
|
|
|
# http://stackoverflow.com/questions/20068945/detect-if-image-is-color-grayscale-or-black-and-white-with-python-pil
|
|
|
|
pilimg = Image.open(file)
|
|
|
|
bands = pilimg.getbands()
|
|
|
|
if bands == ("R", "G", "B") or bands == ("R", "G", "B", "A"):
|
|
|
|
thumb = pilimg.resize((thumb_size, thumb_size))
|
|
|
|
sse, bias = 0, [0, 0, 0]
|
|
|
|
if adjust_color_bias:
|
|
|
|
bias = ImageStat.Stat(thumb).mean[:3]
|
|
|
|
bias = [b - sum(bias) / 3 for b in bias]
|
|
|
|
for pixel in thumb.getdata():
|
|
|
|
mu = sum(pixel) / 3
|
|
|
|
sse += sum(
|
|
|
|
(pixel[i] - mu - bias[i]) * (pixel[i] - mu - bias[i]) for i in [0, 1, 2]
|
|
|
|
)
|
|
|
|
mse = float(sse) / (thumb_size * thumb_size)
|
|
|
|
return "grayscale" if mse <= MSE_cutoff else "color"
|
|
|
|
elif len(bands) == 1:
|
|
|
|
return "blackandwhite"
|
|
|
|
|
|
|
|
|
|
|
|
def detect_dominant_hexcolor(file):
|
|
|
|
# https://stackoverflow.com/questions/3241929/python-find-dominant-most-common-color-in-an-image
|
|
|
|
pilimg = Image.open(file)
|
|
|
|
pilimg.convert("RGB")
|
|
|
|
pilimg.resize((1, 1), resample=0)
|
|
|
|
rgb_color = pilimg.getpixel((0, 0))
|
|
|
|
return "{:02x}{:02x}{:02x}".format(*rgb_color)
|
|
|
|
|
|
|
|
|
|
|
|
def detect_color_distance(hex1, hex2, threshold=100):
|
|
|
|
rgb1 = ImageColor.getcolor("#" + hex1, "RGB")
|
|
|
|
rgb2 = ImageColor.getcolor("#" + hex2, "RGB")
|
|
|
|
return math.sqrt(sum((c1 - c2) ** 2 for c1, c2 in zip(rgb1, rgb2))) <= threshold
|