Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0100702b
Commit
0100702b
authored
Jun 05, 2010
by
Michael Foord
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue 8351. Suppress large diffs in unittest.TestCase.assertSequenceEqual.
parent
9ef5d330
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
3 deletions
+29
-3
Lib/unittest/case.py
Lib/unittest/case.py
+10
-3
Lib/unittest/test/test_case.py
Lib/unittest/test/test_case.py
+19
-0
No files found.
Lib/unittest/case.py
View file @
0100702b
...
...
@@ -13,7 +13,7 @@ from .util import (
)
__unittest
=
True
TRUNCATED_DIFF
=
'
\
n
[diff truncated...]'
class
SkipTest
(
Exception
):
"""
...
...
@@ -589,7 +589,8 @@ class TestCase(object):
failUnlessRaises
=
_deprecate
(
assertRaises
)
failIf
=
_deprecate
(
assertFalse
)
def
assertSequenceEqual
(
self
,
seq1
,
seq2
,
msg
=
None
,
seq_type
=
None
):
def
assertSequenceEqual
(
self
,
seq1
,
seq2
,
msg
=
None
,
seq_type
=
None
,
max_diff
=
80
*
8
):
"""An equality assertion for ordered sequences (like lists and tuples).
For the purposes of this function, a valid ordered sequence type is one
...
...
@@ -602,6 +603,7 @@ class TestCase(object):
datatype should be enforced.
msg: Optional message to use on failure instead of a list of
differences.
max_diff: Maximum size off the diff, larger diffs are not shown
"""
if
seq_type
is
not
None
:
seq_type_name
=
seq_type
.
__name__
...
...
@@ -684,9 +686,14 @@ class TestCase(object):
except
(
TypeError
,
IndexError
,
NotImplementedError
):
differing
+=
(
'Unable to index element %d '
'of second %s
\
n
'
%
(
len1
,
seq_type_name
))
standardMsg
=
differing
+
'
\
n
'
+
'
\
n
'
.
join
(
standardMsg
=
differing
diffMsg
=
'
\
n
'
+
'
\
n
'
.
join
(
difflib
.
ndiff
(
pprint
.
pformat
(
seq1
).
splitlines
(),
pprint
.
pformat
(
seq2
).
splitlines
()))
if
max_diff
is
None
or
len
(
diffMsg
)
<=
max_diff
:
standardMsg
+=
diffMsg
else
:
standardMsg
+=
diffMsg
[:
max_diff
]
+
TRUNCATED_DIFF
msg
=
self
.
_formatMessage
(
msg
,
standardMsg
)
self
.
fail
(
msg
)
...
...
Lib/unittest/test/test_case.py
View file @
0100702b
import
difflib
import
pprint
import
re
import
sys
...
...
@@ -588,6 +590,23 @@ class Test_TestCase(unittest.TestCase, TestEquality, TestHashing):
self
.
assertRaises
(
self
.
failureException
,
self
.
assertDictEqual
,
[],
d
)
self
.
assertRaises
(
self
.
failureException
,
self
.
assertDictEqual
,
1
,
1
)
def
testAssertSequenceEqualMaxDiff
(
self
):
seq1
=
'a'
+
'x'
*
80
**
2
seq2
=
'b'
+
'x'
*
80
**
2
diff
=
'
\
n
'
.
join
(
difflib
.
ndiff
(
pprint
.
pformat
(
seq1
).
splitlines
(),
pprint
.
pformat
(
seq2
).
splitlines
()))
try
:
self
.
assertSequenceEqual
(
seq1
,
seq2
,
max_diff
=
len
(
diff
)
/
2
)
except
AssertionError
as
e
:
msg
=
e
.
args
[
0
]
self
.
assertTrue
(
len
(
msg
)
<
len
(
diff
))
try
:
self
.
assertSequenceEqual
(
seq1
,
seq2
,
max_diff
=
len
(
diff
)
*
2
)
except
AssertionError
as
e
:
msg
=
e
.
args
[
0
]
self
.
assertTrue
(
len
(
msg
)
>
len
(
diff
))
def
testAssertItemsEqual
(
self
):
a
=
object
()
self
.
assertItemsEqual
([
1
,
2
,
3
],
[
3
,
2
,
1
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment