Skip to content

Commit

Permalink
Always escape null bytes when setting PYTEST_CURRENT_TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoddemus committed Nov 28, 2017
1 parent d95c8a2 commit 89cf943
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
6 changes: 2 additions & 4 deletions _pytest/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from time import time

import py
from _pytest.compat import _PY2
from _pytest._code.code import TerminalRepr, ExceptionInfo
from _pytest.outcomes import skip, Skipped, TEST_OUTCOME

Expand Down Expand Up @@ -131,9 +130,8 @@ def _update_current_test_var(item, when):
var_name = 'PYTEST_CURRENT_TEST'
if 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)')
# don't allow null bytes on environment variables (see #2644, #2957)
value = value.replace('\x00', '(null)')
os.environ[var_name] = value
else:
os.environ.pop(var_name)
Expand Down
1 change: 1 addition & 0 deletions changelog/2957.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Always escape null bytes when setting ``PYTEST_CURRENT_TEST``.
6 changes: 3 additions & 3 deletions testing/acceptance_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,17 +415,17 @@ def test_stuff(r):
])

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"""
# encoding: UTF-8
import pytest
@pytest.mark.parametrize("data", ["\\x00", u'ação'])
@pytest.mark.parametrize("data", [b"\\x00", "\\x00", u'ação'])
def test_foo(data):
assert data
""")
res = testdir.runpytest(p)
res.assert_outcomes(passed=2)
res.assert_outcomes(passed=3)


class TestInvocationVariants(object):
Expand Down

0 comments on commit 89cf943

Please sign in to comment.