2020-07-20 17:35:21 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-08-12 11:50:00 +00:00
|
|
|
"""pytest configuration
|
|
|
|
|
|
|
|
Extends output capture as needed by pybind11: ignore constructors, optional unordered lines.
|
|
|
|
Adds docstring and exceptions message sanitizers: ignore Python 2 vs 3 differences.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import contextlib
|
2020-08-16 20:02:12 +00:00
|
|
|
import difflib
|
2016-12-16 14:00:46 +00:00
|
|
|
import gc
|
2020-08-16 20:02:12 +00:00
|
|
|
import re
|
|
|
|
import textwrap
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2020-08-19 17:11:57 +00:00
|
|
|
import env
|
|
|
|
|
2020-08-16 20:02:12 +00:00
|
|
|
# Early diagnostic for failed imports
|
|
|
|
import pybind11_tests # noqa: F401
|
2016-08-12 11:50:00 +00:00
|
|
|
|
2020-10-16 20:38:13 +00:00
|
|
|
_unicode_marker = re.compile(r"u(\'[^\']*\')")
|
|
|
|
_long_marker = re.compile(r"([0-9])L")
|
|
|
|
_hexadecimal = re.compile(r"0x[0-9a-fA-F]+")
|
2016-08-12 11:50:00 +00:00
|
|
|
|
2020-08-19 17:11:57 +00:00
|
|
|
# Avoid collecting Python3 only files
|
|
|
|
collect_ignore = []
|
|
|
|
if env.PY2:
|
|
|
|
collect_ignore.append("test_async.py")
|
|
|
|
|
2016-08-12 11:50:00 +00:00
|
|
|
|
|
|
|
def _strip_and_dedent(s):
|
|
|
|
"""For triple-quote strings"""
|
2020-10-16 20:38:13 +00:00
|
|
|
return textwrap.dedent(s.lstrip("\n").rstrip())
|
2016-08-12 11:50:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def _split_and_sort(s):
|
|
|
|
"""For output which does not require specific line order"""
|
|
|
|
return sorted(_strip_and_dedent(s).splitlines())
|
|
|
|
|
|
|
|
|
|
|
|
def _make_explanation(a, b):
|
|
|
|
"""Explanation for a failed assert -- the a and b arguments are List[str]"""
|
2020-10-16 20:38:13 +00:00
|
|
|
return ["--- actual / +++ expected"] + [
|
|
|
|
line.strip("\n") for line in difflib.ndiff(a, b)
|
|
|
|
]
|
2016-08-12 11:50:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Output(object):
|
|
|
|
"""Basic output post-processing and comparison"""
|
2020-10-16 20:38:13 +00:00
|
|
|
|
2016-08-12 11:50:00 +00:00
|
|
|
def __init__(self, string):
|
|
|
|
self.string = string
|
|
|
|
self.explanation = []
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.string
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
# Ignore constructor/destructor output which is prefixed with "###"
|
2020-10-16 20:38:13 +00:00
|
|
|
a = [
|
|
|
|
line
|
|
|
|
for line in self.string.strip().splitlines()
|
|
|
|
if not line.startswith("###")
|
|
|
|
]
|
2016-08-12 11:50:00 +00:00
|
|
|
b = _strip_and_dedent(other).splitlines()
|
|
|
|
if a == b:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
self.explanation = _make_explanation(a, b)
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
class Unordered(Output):
|
|
|
|
"""Custom comparison for output without strict line ordering"""
|
2020-10-16 20:38:13 +00:00
|
|
|
|
2016-08-12 11:50:00 +00:00
|
|
|
def __eq__(self, other):
|
|
|
|
a = _split_and_sort(self.string)
|
|
|
|
b = _split_and_sort(other)
|
|
|
|
if a == b:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
self.explanation = _make_explanation(a, b)
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
class Capture(object):
|
|
|
|
def __init__(self, capfd):
|
|
|
|
self.capfd = capfd
|
|
|
|
self.out = ""
|
2016-08-29 16:03:34 +00:00
|
|
|
self.err = ""
|
2016-08-12 11:50:00 +00:00
|
|
|
|
|
|
|
def __enter__(self):
|
2016-09-06 22:50:10 +00:00
|
|
|
self.capfd.readouterr()
|
2016-08-12 11:50:00 +00:00
|
|
|
return self
|
|
|
|
|
2019-02-04 16:09:47 +00:00
|
|
|
def __exit__(self, *args):
|
2016-09-06 22:50:10 +00:00
|
|
|
self.out, self.err = self.capfd.readouterr()
|
2016-08-12 11:50:00 +00:00
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
a = Output(self.out)
|
|
|
|
b = other
|
|
|
|
if a == b:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
self.explanation = a.explanation
|
|
|
|
return False
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.out
|
|
|
|
|
|
|
|
def __contains__(self, item):
|
|
|
|
return item in self.out
|
|
|
|
|
|
|
|
@property
|
|
|
|
def unordered(self):
|
|
|
|
return Unordered(self.out)
|
|
|
|
|
2016-08-29 16:03:34 +00:00
|
|
|
@property
|
|
|
|
def stderr(self):
|
|
|
|
return Output(self.err)
|
|
|
|
|
2016-08-12 11:50:00 +00:00
|
|
|
|
|
|
|
@pytest.fixture
|
2017-03-10 14:42:42 +00:00
|
|
|
def capture(capsys):
|
|
|
|
"""Extended `capsys` with context manager and custom equality operators"""
|
|
|
|
return Capture(capsys)
|
2016-08-12 11:50:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SanitizedString(object):
|
|
|
|
def __init__(self, sanitizer):
|
|
|
|
self.sanitizer = sanitizer
|
|
|
|
self.string = ""
|
|
|
|
self.explanation = []
|
|
|
|
|
|
|
|
def __call__(self, thing):
|
|
|
|
self.string = self.sanitizer(thing)
|
|
|
|
return self
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
a = self.string
|
|
|
|
b = _strip_and_dedent(other)
|
|
|
|
if a == b:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
self.explanation = _make_explanation(a.splitlines(), b.splitlines())
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
|
def _sanitize_general(s):
|
|
|
|
s = s.strip()
|
|
|
|
s = s.replace("pybind11_tests.", "m.")
|
|
|
|
s = s.replace("unicode", "str")
|
|
|
|
s = _long_marker.sub(r"\1", s)
|
|
|
|
s = _unicode_marker.sub(r"\1", s)
|
|
|
|
return s
|
|
|
|
|
|
|
|
|
|
|
|
def _sanitize_docstring(thing):
|
|
|
|
s = thing.__doc__
|
|
|
|
s = _sanitize_general(s)
|
|
|
|
return s
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def doc():
|
|
|
|
"""Sanitize docstrings and add custom failure explanation"""
|
|
|
|
return SanitizedString(_sanitize_docstring)
|
|
|
|
|
|
|
|
|
|
|
|
def _sanitize_message(thing):
|
|
|
|
s = str(thing)
|
|
|
|
s = _sanitize_general(s)
|
|
|
|
s = _hexadecimal.sub("0", s)
|
|
|
|
return s
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def msg():
|
|
|
|
"""Sanitize messages and add custom failure explanation"""
|
|
|
|
return SanitizedString(_sanitize_message)
|
|
|
|
|
|
|
|
|
|
|
|
# noinspection PyUnusedLocal
|
|
|
|
def pytest_assertrepr_compare(op, left, right):
|
|
|
|
"""Hook to insert custom failure explanation"""
|
2020-10-16 20:38:13 +00:00
|
|
|
if hasattr(left, "explanation"):
|
2016-08-12 11:50:00 +00:00
|
|
|
return left.explanation
|
|
|
|
|
|
|
|
|
|
|
|
@contextlib.contextmanager
|
|
|
|
def suppress(exception):
|
|
|
|
"""Suppress the desired exception"""
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
except exception:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2016-12-16 14:00:46 +00:00
|
|
|
def gc_collect():
|
2020-10-16 20:38:13 +00:00
|
|
|
"""Run the garbage collector twice (needed when running
|
|
|
|
reference counting tests with PyPy)"""
|
2016-12-16 14:00:46 +00:00
|
|
|
gc.collect()
|
|
|
|
gc.collect()
|
|
|
|
|
|
|
|
|
2019-01-23 13:22:39 +00:00
|
|
|
def pytest_configure():
|
|
|
|
pytest.suppress = suppress
|
|
|
|
pytest.gc_collect = gc_collect
|