Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial backend for Next Gen #426

Merged
merged 5 commits into from
May 9, 2021
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 71 additions & 0 deletions src/pytest_html/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@
from functools import lru_cache
from html import escape
from os.path import isfile
from typing import Any
from typing import Dict

import pytest
from _pytest.logging import _remove_ansi_escape_sequences
from _pytest.pathlib import Path
from py.xml import html
from py.xml import raw

Expand Down Expand Up @@ -101,7 +104,9 @@ def pytest_configure(config):
if not hasattr(config, "workerinput"):
# prevent opening htmlpath on worker nodes (xdist)
config._html = HTMLReport(htmlpath, config)
config._next_gen = NextGenReport(config, Path("nextgendata.json"))
config.pluginmanager.register(config._html)
config.pluginmanager.register(config._next_gen)


def pytest_unconfigure(config):
Expand All @@ -110,6 +115,11 @@ def pytest_unconfigure(config):
del config._html
config.pluginmanager.unregister(html)

next_gen = getattr(config, "_next_gen", None)
if next_gen:
del config._next_gen
config.pluginmanager.unregister(next_gen)


@pytest.hookimpl(tryfirst=True, hookwrapper=True)
def pytest_runtest_makereport(item, call):
Expand Down Expand Up @@ -757,3 +767,64 @@ def pytest_sessionfinish(self, session):

def pytest_terminal_summary(self, terminalreporter):
terminalreporter.write_sep("-", f"generated html file: file://{self.logfile}")


class NextGenReport:
gnikonorov marked this conversation as resolved.
Show resolved Hide resolved
def __init__(self, config, data_file):
self._config = config
self._data_file = data_file

self._title = "Next Gen Report"
self._data = {
"title": self._title,
"collectedItems": 0,
"environment": {},
"tests": [],
}

self._data_file.parent.mkdir(parents=True, exist_ok=True)

def _write(self):
try:
data = json.dumps(self._data)
except TypeError:
data = cleanup_unserializable(self._data)
data = json.dumps(data)

with self._data_file.open("w", buffering=1, encoding="UTF-8") as f:
f.write("const jsonData = ")
f.write(data)
f.write("\n")

@pytest.hookimpl(trylast=True)
def pytest_sessionstart(self, session):
config = session.config
if hasattr(config, "_metadata") and config._metadata:
metadata = config._metadata
self._data["environment"] = metadata
self._write()

@pytest.hookimpl(trylast=True)
def pytest_collection_finish(self, session):
self._data["collectedItems"] = len(session.items)
self._write()

@pytest.hookimpl(trylast=True)
def pytest_runtest_logreport(self, report):
data = self._config.hook.pytest_report_to_serializable(
config=self._config, report=report
)
self._data["tests"].append(data)
self._write()


def cleanup_unserializable(d: Dict[str, Any]) -> Dict[str, Any]:
"""Return new dict with entries that are not json serializable by their str()."""
result = {}
for k, v in d.items():
try:
json.dumps({k: v})
except TypeError:
v = str(v)
result[k] = v
return result