Skip to content

Improve the coverage of testing/code #3887

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions testing/code/test_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,8 @@ class A(object):
pytest.raises(TypeError, "_pytest._code.Code(A)")


if True:

def x():
pass
def x():
raise NotImplementedError()


def test_code_fullsource():
Expand All @@ -48,7 +46,7 @@ def test_code_source():
code = _pytest._code.Code(x)
src = code.source()
expected = """def x():
pass"""
raise NotImplementedError()"""
assert str(src) == expected


Expand Down Expand Up @@ -85,9 +83,9 @@ def f():
raise Exception(value)

excinfo = pytest.raises(Exception, f)
str(excinfo)
if sys.version_info[0] < 3:
text_type(excinfo)
text_type(excinfo)
if sys.version_info < (3,):
bytes(excinfo)


@pytest.mark.skipif(sys.version_info[0] >= 3, reason="python 2 only issue")
Expand All @@ -105,25 +103,25 @@ def f():

def test_code_getargs():
def f1(x):
pass
raise NotImplementedError()

c1 = _pytest._code.Code(f1)
assert c1.getargs(var=True) == ("x",)

def f2(x, *y):
pass
raise NotImplementedError()

c2 = _pytest._code.Code(f2)
assert c2.getargs(var=True) == ("x", "y")

def f3(x, **z):
pass
raise NotImplementedError()

c3 = _pytest._code.Code(f3)
assert c3.getargs(var=True) == ("x", "z")

def f4(x, *y, **z):
pass
raise NotImplementedError()

c4 = _pytest._code.Code(f4)
assert c4.getargs(var=True) == ("x", "y", "z")
Expand Down Expand Up @@ -188,11 +186,14 @@ def test_not_raise_exception_with_mixed_encoding(self):

tw = TWMock()

args = [("unicode_string", u"São Paulo"), ("utf8_string", "S\xc3\xa3o Paulo")]
args = [("unicode_string", u"São Paulo"), ("utf8_string", b"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"
assert (
tw.lines[0]
== r"unicode_string = São Paulo, utf8_string = b'S\xc3\xa3o Paulo'"
)
else:
assert tw.lines[0] == "unicode_string = São Paulo, utf8_string = São Paulo"
13 changes: 5 additions & 8 deletions testing/code/test_source.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
# flake8: noqa
# disable flake check on this file because some constructs are strange
# or redundant on purpose and can't be disable on a line-by-line basis
Expand Down Expand Up @@ -41,15 +42,11 @@ def test_source_str_function():


def test_unicode():
try:
unicode
except NameError:
return
x = Source(unicode("4"))
x = Source(u"4")
assert str(x) == "4"
co = _pytest._code.compile(unicode('u"\xc3\xa5"', "utf8"), mode="eval")
co = _pytest._code.compile(u'u"å"', mode="eval")
val = eval(co)
assert isinstance(val, unicode)
assert isinstance(val, six.text_type)


def test_source_from_function():
Expand Down Expand Up @@ -632,7 +629,7 @@ def test_issue55():
assert str(s) == ' round_trip("""\n""")'


def XXXtest_multiline():
def test_multiline():
source = getstatement(
0,
"""\
Expand Down