Skip to content

Commit

Permalink
Make dataclasses/attrs comparison recursive, fixes pytest-dev#4675
Browse files Browse the repository at this point in the history
  • Loading branch information
ibriquem committed Feb 28, 2020
1 parent f77d606 commit d19f8c6
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 21 deletions.
1 change: 1 addition & 0 deletions changelog/4675.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Make dataclasses/attrs comparison recursive.
46 changes: 25 additions & 21 deletions src/_pytest/assertion/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,26 +148,7 @@ def assertrepr_compare(config, op: str, left: Any, right: Any) -> Optional[List[
explanation = None
try:
if op == "==":
if istext(left) and istext(right):
explanation = _diff_text(left, right, verbose)
else:
if issequence(left) and issequence(right):
explanation = _compare_eq_sequence(left, right, verbose)
elif isset(left) and isset(right):
explanation = _compare_eq_set(left, right, verbose)
elif isdict(left) and isdict(right):
explanation = _compare_eq_dict(left, right, verbose)
elif type(left) == type(right) and (isdatacls(left) or isattrs(left)):
type_fn = (isdatacls, isattrs)
explanation = _compare_eq_cls(left, right, verbose, type_fn)
elif verbose > 0:
explanation = _compare_eq_verbose(left, right)
if isiterable(left) and isiterable(right):
expl = _compare_eq_iterable(left, right, verbose)
if explanation is not None:
explanation.extend(expl)
else:
explanation = expl
explanation = _compare_eq_any(left, right, verbose)
elif op == "not in":
if istext(left) and istext(right):
explanation = _notin_text(left, right, verbose)
Expand All @@ -187,6 +168,28 @@ def assertrepr_compare(config, op: str, left: Any, right: Any) -> Optional[List[
return [summary] + explanation


def _compare_eq_any(left: Any, right: Any, verbose: int = 0) -> List[str]:
explanation = [] # type: List[str]
if istext(left) and istext(right):
explanation = _diff_text(left, right, verbose)
else:
if issequence(left) and issequence(right):
explanation = _compare_eq_sequence(left, right, verbose)
elif isset(left) and isset(right):
explanation = _compare_eq_set(left, right, verbose)
elif isdict(left) and isdict(right):
explanation = _compare_eq_dict(left, right, verbose)
elif type(left) == type(right) and (isdatacls(left) or isattrs(left)):
type_fn = (isdatacls, isattrs)
explanation = _compare_eq_cls(left, right, verbose, type_fn)
elif verbose > 0:
explanation = _compare_eq_verbose(left, right)
if isiterable(left) and isiterable(right):
expl = _compare_eq_iterable(left, right, verbose)
explanation.extend(expl)
return explanation


def _diff_text(left: str, right: str, verbose: int = 0) -> List[str]:
"""Return the explanation for the diff between text.
Expand Down Expand Up @@ -439,7 +442,8 @@ def _compare_eq_cls(
explanation += ["Differing attributes:"]
for field in diff:
explanation += [
("%s: %r != %r") % (field, getattr(left, field), getattr(right, field))
("%s: %r != %r") % (field, getattr(left, field), getattr(right, field)),
*_compare_eq_any(getattr(left, field), getattr(right, field), verbose),
]
return explanation

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from dataclasses import dataclass
from dataclasses import field


@dataclass
class SimpleDataObject:
field_a: int = field()
field_b: int = field()


@dataclass
class ComplexDataObject:
field_a: SimpleDataObject = field()
field_b: SimpleDataObject = field()


def test_recursive_dataclasses():

left = ComplexDataObject(SimpleDataObject(1, "b"), SimpleDataObject(2, "c"),)
right = ComplexDataObject(SimpleDataObject(1, "b"), SimpleDataObject(3, "c"),)

assert left == right
18 changes: 18 additions & 0 deletions testing/test_assertion.py
Original file line number Diff line number Diff line change
Expand Up @@ -752,6 +752,24 @@ def test_dataclasses(self, testdir):
"*Omitting 1 identical items, use -vv to show*",
"*Differing attributes:*",
"*field_b: 'b' != 'c'*",
"*- c*",
"*+ b*",
]
)

@pytest.mark.skipif(sys.version_info < (3, 7), reason="Dataclasses in Python3.7+")
def test_recursive_dataclasses(self, testdir):
p = testdir.copy_example("dataclasses/test_compare_recursive_dataclasses.py")
result = testdir.runpytest(p)
result.assert_outcomes(failed=1, passed=0)
result.stdout.fnmatch_lines(
[
"*Omitting 1 identical items, use -vv to show*",
"*Differing attributes:*",
"*field_b: SimpleDataObject(field_a=2, field_b='c') != SimpleDataObject(field_a=3, field_b='c')*",
"*Omitting 1 identical items, use -vv to show*",
"*Differing attributes:*",
"*field_a: 2 != 3*",
]
)

Expand Down

0 comments on commit d19f8c6

Please sign in to comment.