Merge pull request #2646 from nicoddemus/issue-2644
Properly escape test names when setting PYTEST_CURRENT_TEST environment variable
This commit is contained in:
commit
8969bd43c9
|
@ -381,13 +381,17 @@ class RunResult:
|
||||||
return d
|
return d
|
||||||
raise ValueError("Pytest terminal report not found")
|
raise ValueError("Pytest terminal report not found")
|
||||||
|
|
||||||
def assert_outcomes(self, passed=0, skipped=0, failed=0):
|
def assert_outcomes(self, passed=0, skipped=0, failed=0, error=0):
|
||||||
""" assert that the specified outcomes appear with the respective
|
""" assert that the specified outcomes appear with the respective
|
||||||
numbers (0 means it didn't occur) in the text output from a test run."""
|
numbers (0 means it didn't occur) in the text output from a test run."""
|
||||||
d = self.parseoutcomes()
|
d = self.parseoutcomes()
|
||||||
assert passed == d.get("passed", 0)
|
obtained = {
|
||||||
assert skipped == d.get("skipped", 0)
|
'passed': d.get('passed', 0),
|
||||||
assert failed == d.get("failed", 0)
|
'skipped': d.get('skipped', 0),
|
||||||
|
'failed': d.get('failed', 0),
|
||||||
|
'error': d.get('error', 0),
|
||||||
|
}
|
||||||
|
assert obtained == dict(passed=passed, skipped=skipped, failed=failed, error=error)
|
||||||
|
|
||||||
|
|
||||||
class Testdir:
|
class Testdir:
|
||||||
|
|
|
@ -7,6 +7,7 @@ import sys
|
||||||
from time import time
|
from time import time
|
||||||
|
|
||||||
import py
|
import py
|
||||||
|
from _pytest.compat import _PY2
|
||||||
from _pytest._code.code import TerminalRepr, ExceptionInfo
|
from _pytest._code.code import TerminalRepr, ExceptionInfo
|
||||||
from _pytest.outcomes import skip, Skipped, TEST_OUTCOME
|
from _pytest.outcomes import skip, Skipped, TEST_OUTCOME
|
||||||
|
|
||||||
|
@ -134,7 +135,11 @@ def _update_current_test_var(item, when):
|
||||||
"""
|
"""
|
||||||
var_name = 'PYTEST_CURRENT_TEST'
|
var_name = 'PYTEST_CURRENT_TEST'
|
||||||
if when:
|
if when:
|
||||||
os.environ[var_name] = '{0} ({1})'.format(item.nodeid, when)
|
value = '{0} ({1})'.format(item.nodeid, when)
|
||||||
|
if _PY2:
|
||||||
|
# python 2 doesn't like null bytes on environment variables (see #2644)
|
||||||
|
value = value.replace('\x00', '(null)')
|
||||||
|
os.environ[var_name] = value
|
||||||
else:
|
else:
|
||||||
os.environ.pop(var_name)
|
os.environ.pop(var_name)
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
Properly escape test names when setting ``PYTEST_CURRENT_TEST`` environment variable.
|
|
@ -400,7 +400,7 @@ class TestGeneralUsage(object):
|
||||||
monkeypatch.setitem(sys.modules, 'myplugin', mod)
|
monkeypatch.setitem(sys.modules, 'myplugin', mod)
|
||||||
assert pytest.main(args=[str(tmpdir)], plugins=['myplugin']) == 0
|
assert pytest.main(args=[str(tmpdir)], plugins=['myplugin']) == 0
|
||||||
|
|
||||||
def test_parameterized_with_bytes_regex(self, testdir):
|
def test_parametrized_with_bytes_regex(self, testdir):
|
||||||
p = testdir.makepyfile("""
|
p = testdir.makepyfile("""
|
||||||
import re
|
import re
|
||||||
import pytest
|
import pytest
|
||||||
|
@ -414,6 +414,19 @@ class TestGeneralUsage(object):
|
||||||
'*1 passed*'
|
'*1 passed*'
|
||||||
])
|
])
|
||||||
|
|
||||||
|
def test_parametrized_with_null_bytes(self, testdir):
|
||||||
|
"""Test parametrization with values that contain null bytes and unicode characters (#2644)"""
|
||||||
|
p = testdir.makepyfile(u"""
|
||||||
|
# encoding: UTF-8
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
@pytest.mark.parametrize("data", ["\\x00", u'ação'])
|
||||||
|
def test_foo(data):
|
||||||
|
assert data
|
||||||
|
""")
|
||||||
|
res = testdir.runpytest(p)
|
||||||
|
res.assert_outcomes(passed=2)
|
||||||
|
|
||||||
|
|
||||||
class TestInvocationVariants(object):
|
class TestInvocationVariants(object):
|
||||||
def test_earlyinit(self, testdir):
|
def test_earlyinit(self, testdir):
|
||||||
|
|
Loading…
Reference in New Issue