Merge pull request #2735 from fgmacedo/fgm-fix-reprfuncargs-toterminal

2731.bug Fix ReprFuncArgs with mixed unicode and utf-8 args.
This commit is contained in:
Ronny Pfannschmidt 2017-08-31 09:36:56 +02:00 committed by GitHub
commit 5e00549ecc
3 changed files with 24 additions and 1 deletions

View File

@ -863,7 +863,7 @@ class ReprFuncArgs(TerminalRepr):
if self.args:
linesofar = ""
for name, value in self.args:
ns = "%s = %s" % (name, value)
ns = "%s = %s" % (safe_str(name), safe_str(value))
if len(ns) + len(linesofar) + 2 > tw.fullwidth:
if linesofar:
tw.line(linesofar)

1
changelog/2731.bugfix Normal file
View File

@ -0,0 +1 @@
Fix ``ReprFuncArgs`` with mixed unicode and UTF-8 args.

View File

@ -1,9 +1,11 @@
# coding: utf-8
from __future__ import absolute_import, division, print_function
import sys
import _pytest._code
import py
import pytest
from test_excinfo import TWMock
def test_ne():
@ -172,3 +174,23 @@ class TestTracebackEntry(object):
source = entry.getsource()
assert len(source) == 6
assert 'assert False' in source[5]
class TestReprFuncArgs(object):
def test_not_raise_exception_with_mixed_encoding(self):
from _pytest._code.code import ReprFuncArgs
tw = TWMock()
args = [
('unicode_string', u"São Paulo"),
('utf8_string', 'S\xc3\xa3o Paulo'),
]
r = ReprFuncArgs(args)
r.toterminal(tw)
if sys.version_info[0] >= 3:
assert tw.lines[0] == 'unicode_string = São Paulo, utf8_string = São Paulo'
else:
assert tw.lines[0] == 'unicode_string = São Paulo, utf8_string = São Paulo'