mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-15 00:17:33 +00:00
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
import time
|
|
|
|
import pytest
|
|
|
|
MAX_ATTEMPTS = 60
|
|
|
|
|
|
def wait_for_idle_server(server):
|
|
"""Wait for PMS activities to complete with a timeout."""
|
|
attempts = 0
|
|
while server.activities and attempts < MAX_ATTEMPTS:
|
|
print("Waiting for activities to finish: {activities}".format(activities=server.activities))
|
|
time.sleep(1)
|
|
attempts += 1
|
|
assert attempts < MAX_ATTEMPTS, "Server still busy after {MAX_ATTEMPTS}s".format(MAX_ATTEMPTS=MAX_ATTEMPTS)
|
|
|
|
|
|
def wait_for_metadata_processing(server):
|
|
"""Wait for async metadata processing to complete."""
|
|
attempts = 0
|
|
|
|
while True:
|
|
busy = False
|
|
for section in server.library.sections():
|
|
tl = section.timeline()
|
|
if tl.updateQueueSize > 0:
|
|
busy = True
|
|
print("{title}: {updateQueueSize} items left".format(title=section.title, updateQueueSize=tl.updateQueueSize))
|
|
if not busy or attempts > MAX_ATTEMPTS:
|
|
break
|
|
time.sleep(1)
|
|
attempts += 1
|
|
assert attempts < MAX_ATTEMPTS, "Metadata still processing after {MAX_ATTEMPTS}s".format(MAX_ATTEMPTS=MAX_ATTEMPTS)
|
|
|
|
|
|
def test_ensure_activities_completed(plex):
|
|
wait_for_idle_server(plex)
|
|
|
|
|
|
@pytest.mark.authenticated
|
|
def test_ensure_activities_completed_authenticated(plex):
|
|
wait_for_idle_server(plex)
|
|
|
|
|
|
def test_ensure_metadata_scans_completed(plex):
|
|
wait_for_metadata_processing(plex)
|
|
|
|
|
|
@pytest.mark.authenticated
|
|
def test_ensure_metadata_scans_completed_authenticated(plex):
|
|
wait_for_metadata_processing(plex)
|