python-plexapi/tests/test_misc.py

70 lines
2.1 KiB
Python
Raw Normal View History

2017-02-20 07:10:45 +00:00
# -*- coding: utf-8 -*-
import os
import shlex
import subprocess
from os.path import abspath, dirname, join
2020-04-29 21:23:22 +00:00
import pytest
SKIP_EXAMPLES = ["Example 4"]
2017-02-20 07:10:45 +00:00
2020-04-29 21:23:22 +00:00
@pytest.mark.skipif(os.name == "nt", reason="No make.bat specified for Windows")
2017-04-30 02:43:42 +00:00
def test_build_documentation():
2020-04-29 21:23:22 +00:00
docroot = join(dirname(dirname(abspath(__file__))), "docs")
cmd = shlex.split("sphinx-build -aE . _build")
proc = subprocess.Popen(
cmd, cwd=docroot, stdout=subprocess.PIPE, stderr=subprocess.PIPE
)
2017-02-20 07:10:45 +00:00
status = proc.wait()
assert status == 0
issues = []
for output in proc.communicate():
2020-04-29 21:23:22 +00:00
for line in str(output).split("\\n"):
line = line.lower().strip()
2020-04-29 21:23:22 +00:00
if "warning" in line or "error" in line or "traceback" in line:
issues.append(line)
for line in issues:
print(line)
assert not issues
2017-02-20 07:10:45 +00:00
def test_readme_examples(plex):
2017-02-20 07:10:45 +00:00
failed = 0
examples = _fetch_examples()
2020-04-29 21:23:22 +00:00
assert len(examples), "No examples found in README"
2017-02-20 07:10:45 +00:00
for title, example in examples:
if _check_run_example(title):
try:
print(f"\n{title}\n{'-' * len(title)}")
2020-04-29 21:23:22 +00:00
exec("\n".join(example))
2017-02-20 07:10:45 +00:00
except Exception as err:
failed += 1
print(f"Error running test: {title}\nError: {err}")
assert not failed, f"{failed} examples raised an exception."
2017-02-20 07:10:45 +00:00
def _fetch_examples():
2017-02-20 07:10:45 +00:00
parsing = False
examples = []
2020-04-29 21:23:22 +00:00
filepath = join(dirname(dirname(abspath(__file__))), "README.rst")
with open(filepath, "r") as handle:
for line in handle.read().split("\n"):
line = line[4:]
2020-04-29 21:23:22 +00:00
if line.startswith("# Example "):
2017-02-20 07:10:45 +00:00
parsing = True
2020-04-29 21:23:22 +00:00
title = line.lstrip("# ")
examples.append([title, []])
2020-04-29 21:23:22 +00:00
elif parsing and line == "":
2017-02-20 07:10:45 +00:00
parsing = False
elif parsing:
examples[-1][1].append(line)
return examples
def _check_run_example(title):
for skip_example in SKIP_EXAMPLES:
if skip_example in title:
return False
return True