Combined test_report.py into test_main.py

This commit is contained in:
Andrew Murray 2024-03-30 14:22:00 +11:00 committed by Ondrej Baranovič
parent 7e71621671
commit 1ac1540fe3
2 changed files with 6 additions and 32 deletions

View File

@ -7,11 +7,12 @@ import sys
import pytest
@pytest.mark.parametrize("report", (False, True))
def test_main(report) -> None:
args = [sys.executable, "-m", "PIL"]
if report:
args.append("--report")
@pytest.mark.parametrize(
"args, report",
((["PIL.report"], True), (["PIL", "--report"], True), (["PIL"], False)),
)
def test_main(args, report) -> None:
args = [sys.executable, "-m"] + args
out = subprocess.check_output(args).decode("utf-8")
lines = out.splitlines()
assert lines[0] == "-" * 68

View File

@ -1,27 +0,0 @@
from __future__ import annotations
import subprocess
import sys
def test_main() -> None:
args = [sys.executable, "-m", "PIL.report"]
out = subprocess.check_output(args).decode("utf-8")
lines = out.splitlines()
assert lines[0] == "-" * 68
assert lines[1].startswith("Pillow ")
assert lines[2].startswith("Python ")
lines = lines[3:]
while lines[0].startswith(" "):
lines = lines[1:]
assert lines[0] == "-" * 68
assert lines[1].startswith("Python executable is")
lines = lines[2:]
if lines[0].startswith("Environment Python files loaded from"):
lines = lines[1:]
assert lines[0].startswith("System Python files loaded from")
assert lines[1] == "-" * 68
assert lines[2].startswith("Python Pillow modules loaded from ")
assert lines[3].startswith("Binary Pillow modules loaded from ")
assert lines[4] == "-" * 68
assert "JPEG image/jpeg" not in out