Merge pull request #2969 from nicoddemus/null-bytes-2957

Always escape null bytes when setting PYTEST_CURRENT_TEST
This commit is contained in:
Florian Bruhin 2017-11-29 06:57:48 +01:00 committed by GitHub
commit 191e8c6d9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 7 deletions

View File

@ -7,7 +7,6 @@ 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
@ -131,9 +130,8 @@ def _update_current_test_var(item, when):
var_name = 'PYTEST_CURRENT_TEST' var_name = 'PYTEST_CURRENT_TEST'
if when: if when:
value = '{0} ({1})'.format(item.nodeid, when) value = '{0} ({1})'.format(item.nodeid, when)
if _PY2: # don't allow null bytes on environment variables (see #2644, #2957)
# python 2 doesn't like null bytes on environment variables (see #2644) value = value.replace('\x00', '(null)')
value = value.replace('\x00', '(null)')
os.environ[var_name] = value os.environ[var_name] = value
else: else:
os.environ.pop(var_name) os.environ.pop(var_name)

1
changelog/2957.bugfix Normal file
View File

@ -0,0 +1 @@
Always escape null bytes when setting ``PYTEST_CURRENT_TEST``.

View File

@ -415,17 +415,17 @@ class TestGeneralUsage(object):
]) ])
def test_parametrized_with_null_bytes(self, testdir): def test_parametrized_with_null_bytes(self, testdir):
"""Test parametrization with values that contain null bytes and unicode characters (#2644)""" """Test parametrization with values that contain null bytes and unicode characters (#2644, #2957)"""
p = testdir.makepyfile(u""" p = testdir.makepyfile(u"""
# encoding: UTF-8 # encoding: UTF-8
import pytest import pytest
@pytest.mark.parametrize("data", ["\\x00", u'ação']) @pytest.mark.parametrize("data", [b"\\x00", "\\x00", u'ação'])
def test_foo(data): def test_foo(data):
assert data assert data
""") """)
res = testdir.runpytest(p) res = testdir.runpytest(p)
res.assert_outcomes(passed=2) res.assert_outcomes(passed=3)
class TestInvocationVariants(object): class TestInvocationVariants(object):