/usr/lib/python3/dist-packages/testfixtures/comparison.py is in python3-testfixtures 4.14.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 | # Copyright (c) 2008-2014 Simplistix Ltd
# See license.txt for license details.
from collections import Iterable
from difflib import unified_diff
from pprint import pformat
from re import compile, MULTILINE
from testfixtures import not_there
from testfixtures.compat import (
ClassType, Unicode, basestring, PY3, mock_call, unittest_mock_call
)
from testfixtures.resolve import resolve
from types import GeneratorType
def compare_simple(x, y, context):
"""
Returns a very simple textual difference between the two supplied objects.
"""
if context.ignore_eq:
try:
hash_eq = hash(x) == hash(y)
except TypeError:
pass
else:
if hash_eq:
return
return context.label('x', repr(x)) + ' != ' + context.label('y', repr(y))
def compare_with_type(x, y, context):
"""
Return a textual description of the difference between two objects
including information about their types.
"""
source = locals()
to_render = {}
for name in 'x', 'y':
obj = source[name]
to_render[name] = context.label(
name,
'{0} ({1!r})'.format(_short_repr(obj), type(obj))
)
return '{x} != {y}'.format(**to_render)
def compare_sequence(x, y, context):
"""
Returns a textual description of the differences between the two
supplied sequences.
"""
l_x = len(x)
l_y = len(y)
i = 0
while i < l_x and i < l_y:
if context.different(x[i], y[i], '[%i]' % i):
break
i += 1
if l_x == l_y and i == l_x:
return
return ('sequence not as expected:\n\n'
'same:\n%s\n\n'
'%s:\n%s\n\n'
'%s:\n%s') % (pformat(x[:i]),
context.x_label or 'first', pformat(x[i:]),
context.y_label or 'second', pformat(y[i:]),
)
def compare_generator(x, y, context):
"""
Returns a textual description of the differences between the two
supplied generators.
This is done by first unwinding each of the generators supplied
into tuples and then passing those tuples to
:func:`compare_sequence`.
"""
x = tuple(x)
y = tuple(y)
if not context.ignore_eq and x == y:
return
return compare_sequence(x, y, context)
def compare_tuple(x, y, context):
"""
Returns a textual difference between two tuples or
:func:`collections.namedtuple` instances.
The presence of a ``_fields`` attribute on a tuple is used to
decide whether or not it is a :func:`~collections.namedtuple`.
"""
x_fields = getattr(x, '_fields', None)
y_fields = getattr(y, '_fields', None)
if x_fields and y_fields:
if x_fields == y_fields:
return _compare_mapping(dict(zip(x_fields, x)),
dict(zip(y_fields, y)),
context,
x)
else:
return compare_with_type(x, y, context)
return compare_sequence(x, y, context)
def compare_dict(x, y, context):
"""
Returns a textual description of the differences between the two
supplied dictionaries.
"""
return _compare_mapping(x, y, context, x)
def sorted_by_repr(sequence):
return sorted(sequence, key=lambda o: repr(o))
def _compare_mapping(x, y, context, obj_for_class):
x_keys = set(x.keys())
y_keys = set(y.keys())
x_not_y = x_keys - y_keys
y_not_x = y_keys - x_keys
same = []
diffs = []
for key in sorted_by_repr(x_keys.intersection(y_keys)):
if context.different(x[key], y[key], '[%r]' % (key, )):
diffs.append('%r: %s != %s' % (
key,
context.label('x', pformat(x[key])),
context.label('y', pformat(y[key])),
))
else:
same.append(key)
if not (x_not_y or y_not_x or diffs):
return
lines = ['%s not as expected:' % obj_for_class.__class__.__name__]
if same:
lines.extend(('', 'same:', repr(same)))
x_label = context.x_label or 'first'
y_label = context.y_label or 'second'
if x_not_y:
lines.extend(('', 'in %s but not %s:' % (x_label, y_label)))
for key in sorted_by_repr(x_not_y):
lines.append('%r: %s' % (
key,
pformat(x[key])
))
if y_not_x:
lines.extend(('', 'in %s but not %s:' % (y_label, x_label)))
for key in sorted_by_repr(y_not_x):
lines.append('%r: %s' % (
key,
pformat(y[key])
))
if diffs:
lines.extend(('', 'values differ:'))
lines.extend(diffs)
return '\n'.join(lines)
def compare_set(x, y, context):
"""
Returns a textual description of the differences between the two
supplied sets.
"""
x_not_y = x - y
y_not_x = y - x
lines = ['%s not as expected:' % x.__class__.__name__, '']
x_label = context.x_label or 'first'
y_label = context.y_label or 'second'
if x_not_y:
lines.extend((
'in %s but not %s:' % (x_label, y_label),
pformat(sorted_by_repr(x_not_y)),
'',
))
if y_not_x:
lines.extend((
'in %s but not %s:' % (y_label, x_label),
pformat(sorted_by_repr(y_not_x)),
'',
))
return '\n'.join(lines)+'\n'
trailing_whitespace_re = compile('\s+$', MULTILINE)
def strip_blank_lines(text):
result = []
for line in text.split('\n'):
if line and not line.isspace():
result.append(line)
return '\n'.join(result)
def split_repr(text):
parts = text.split('\n')
for i, part in enumerate(parts[:-1]):
parts[i] = repr(part + '\n')
parts[-1] = repr(parts[-1])
return '\n'.join(parts)
def compare_text(x, y, context):
"""
Returns an informative string describing the differences between the two
supplied strings. The way in which this comparison is performed
can be controlled using the following parameters:
:param blanklines: If `False`, then when comparing multi-line
strings, any blank lines in either argument
will be ignored.
:param trailing_whitespace: If `False`, then when comparing
multi-line strings, trailing
whilespace on lines will be ignored.
:param show_whitespace: If `True`, then whitespace characters in
multi-line strings will be replaced with their
representations.
"""
blanklines = context.get_option('blanklines', True)
trailing_whitespace = context.get_option('trailing_whitespace', True)
show_whitespace = context.get_option('show_whitespace', False)
if not trailing_whitespace:
x = trailing_whitespace_re.sub('', x)
y = trailing_whitespace_re.sub('', y)
if not blanklines:
x = strip_blank_lines(x)
y = strip_blank_lines(y)
if x == y:
return
labelled_x = context.label('x', repr(x))
labelled_y = context.label('y', repr(y))
if len(x) > 10 or len(y) > 10:
if '\n' in x or '\n' in y:
if show_whitespace:
x = split_repr(x)
y = split_repr(y)
message = '\n' + diff(x, y, context.x_label, context.y_label)
else:
message = '\n%s\n!=\n%s' % (labelled_x, labelled_y)
else:
message = labelled_x+' != '+labelled_y
return message
def _short_repr(obj):
repr_ = repr(obj)
if len(repr_) > 30:
repr_ = repr_[:30] + '...'
return repr_
_registry = {
dict: compare_dict,
set: compare_set,
list: compare_sequence,
tuple: compare_tuple,
str: compare_text,
Unicode: compare_text,
GeneratorType: compare_generator,
mock_call.__class__: compare_simple,
unittest_mock_call.__class__: compare_simple,
}
def register(type, comparer):
"""
Register the supplied comparer for the specified type.
This registration is global and will be in effect from the point
this function is called until the end of the current process.
"""
_registry[type] = comparer
def _mro(obj):
class_ = getattr(obj, '__class__', None)
if class_ is None:
# must be an old-style class object in Python 2!
return (obj, )
mro = getattr(class_, '__mro__', None)
if mro is None:
# instance of old-style class in Python 2!
return (class_, )
return mro
def _shared_mro(x, y):
y_mro = set(_mro(y))
for class_ in _mro(x):
if class_ in y_mro:
yield class_
_unsafe_iterables = basestring, dict
class CompareContext(object):
x_label = y_label = None
def __init__(self, options):
comparers = options.pop('comparers', None)
if comparers:
self.registry = dict(_registry)
self.registry.update(comparers)
else:
self.registry = _registry
self.recursive = options.pop('recursive', True)
self.strict = options.pop('strict', False)
self.ignore_eq = options.pop('ignore_eq', False)
if 'expected' in options or 'actual' in options:
self.x_label = 'expected'
self.y_label = 'actual'
self.x_label = options.pop('x_label', self.x_label)
self.y_label = options.pop('y_label', self.y_label)
self.options = options
self.message = ''
self.breadcrumbs = []
def extract_args(self, args):
possible = []
expected = self.options.pop('expected', not_there)
if expected is not not_there:
possible.append(expected)
possible.extend(args)
actual = self.options.pop('actual', not_there)
if actual is not not_there:
possible.append(actual)
if len(possible) != 2:
raise TypeError(
'Exactly two objects needed, you supplied: ' +
repr(possible)
)
return possible
def get_option(self, name, default=None):
return self.options.get(name, default)
def label(self, side, value):
r = str(value)
label = getattr(self, side+'_label')
if label:
r += ' ('+label+')'
return r
def _lookup(self, x, y):
if self.strict and type(x) is not type(y):
return compare_with_type
for class_ in _shared_mro(x, y):
comparer = self.registry.get(class_)
if comparer:
return comparer
# fallback for iterables
if ((isinstance(x, Iterable) and isinstance(y, Iterable)) and not
(isinstance(x, _unsafe_iterables) or
isinstance(y, _unsafe_iterables))):
return compare_generator
return compare_simple
def _separator(self):
return '\n\nWhile comparing %s: ' % ''.join(self.breadcrumbs[1:])
def different(self, x, y, breadcrumb):
recursed = bool(self.breadcrumbs)
self.breadcrumbs.append(breadcrumb)
existing_message = self.message
self.message = ''
current_message = ''
try:
if not (self.strict or self.ignore_eq) and x == y:
return False
comparer = self._lookup(x, y)
result = comparer(x, y, self)
specific_comparer = comparer is not compare_simple
if self.strict:
if type(x) is type(x) and x == y and not specific_comparer:
return False
if result:
if specific_comparer and recursed:
current_message = self._separator()
if specific_comparer or not recursed:
current_message += result
if self.recursive:
current_message += self.message
return result
finally:
self.message = existing_message + current_message
self.breadcrumbs.pop()
def compare(*args, **kw):
"""
Compare the two arguments passed either positionally or using
explicit ``expected`` and ``actual`` keyword paramaters. An
:class:`AssertionError` will be raised if they are not the same.
The :class:`AssertionError` raised will attempt to provide
descriptions of the differences found.
Any other keyword parameters supplied will be passed to the functions
that end up doing the comparison. See the API documentation below
for details of these.
:param prefix: If provided, in the event of an :class:`AssertionError`
being raised, the prefix supplied will be prepended to the
message in the :class:`AssertionError`.
:param suffix: If provided, in the event of an :class:`AssertionError`
being raised, the suffix supplied will be appended to the
message in the :class:`AssertionError`.
:param raises: If ``False``, the message that would be raised in the
:class:`AssertionError` will be returned instead of the
exception being raised.
:param recursive: If ``True``, when a difference is found in a
nested data structure, attempt to highlight the location
of the difference.
:param strict: If ``True``, objects will only compare equal if they are
of the same type as well as being equal.
:param ignore_eq: If ``True``, object equality, which relies on ``__eq__``
being correctly implemented, will not be used.
Instead, comparers will be looked up and used
and, if no suitable comparer is found, objects will
be considered equal if their hash is equal.
:param comparers: If supplied, should be a dictionary mapping
types to comparer functions for those types. These will
be added to the global comparer registry for the duration
of this call.
"""
__tracebackhide__ = True
prefix = kw.pop('prefix', None)
suffix = kw.pop('suffix', None)
raises = kw.pop('raises', True)
context = CompareContext(kw)
x, y = context.extract_args(args)
if not context.different(x, y, not_there):
return
message = context.message
if prefix:
message = prefix + ': ' + message
if suffix:
message += '\n' + suffix
if raises:
raise AssertionError(message)
return message
class Comparison(object):
"""
These are used when you need to compare objects
that do not natively support comparison.
:param object_or_type: The object or class from which to create the
:class:`Comparison`.
:param attribute_dict: An optional dictionary containing attibutes
to place on the :class:`Comparison`.
:param strict: If true, any expected attributes not present or extra
attributes not expected on the object involved in the
comparison will cause the comparison to fail.
:param attributes: Any other keyword parameters passed will placed
as attributes on the :class:`Comparison`.
"""
failed = None
def __init__(self,
object_or_type,
attribute_dict=None,
strict=True,
**attributes):
if attributes:
if attribute_dict is None:
attribute_dict = attributes
else:
attribute_dict.update(attributes)
if isinstance(object_or_type, basestring):
container, method, name, c = resolve(object_or_type)
if c is not_there:
raise AttributeError(
'%r could not be resolved' % object_or_type
)
elif isinstance(object_or_type, (ClassType, type)):
c = object_or_type
elif isinstance(object_or_type, BaseException):
c = object_or_type.__class__
if attribute_dict is None:
attribute_dict = vars(object_or_type)
attribute_dict['args'] = object_or_type.args
else:
c = object_or_type.__class__
if attribute_dict is None:
attribute_dict = vars(object_or_type)
self.c = c
self.v = attribute_dict
self.strict = strict
def __eq__(self, other):
if self.c is not other.__class__:
self.failed = True
return False
if self.v is None:
return True
self.failed = {}
if isinstance(other, BaseException):
v = dict(vars(other))
v['args'] = other.args
else:
try:
v = vars(other)
except TypeError:
if self.strict:
raise TypeError(
'%r does not support vars() so cannot '
'do strict comparison' % other
)
v = {}
for k in self.v.keys():
try:
v[k] = getattr(other, k)
except AttributeError:
pass
e = set(self.v.keys())
a = set(v.keys())
for k in e.difference(a):
try:
# class attribute?
v[k] = getattr(other, k)
except AttributeError:
self.failed[k] = '%s not in other' % repr(self.v[k])
else:
a.add(k)
if self.strict:
for k in a.difference(e):
self.failed[k] = '%s not in Comparison' % repr(v[k])
for k in e.intersection(a):
ev = self.v[k]
av = v[k]
if ev != av:
self.failed[k] = '%r != %r' % (ev, av)
if self.failed:
return False
return True
def __ne__(self, other):
return not(self == other)
def __repr__(self, indent=2):
full = False
if self.failed is True:
v = 'wrong type</C>'
elif self.v is None:
v = ''
else:
full = True
v = '\n'
if self.failed:
vd = self.failed
r = str
else:
vd = self.v
r = repr
for vk, vv in sorted(vd.items()):
if isinstance(vv, Comparison):
vvr = vv.__repr__(indent+2)
else:
vvr = r(vv)
v += (' ' * indent + '%s:%s\n' % (vk, vvr))
v += (' '*indent)+'</C>'
name = getattr(self.c, '__module__', '')
if name:
name += '.'
name += getattr(self.c, '__name__', '')
if not name:
name = repr(self.c)
r = '<C%s:%s>%s' % (self.failed and '(failed)' or '', name, v)
if full:
return '\n'+(' '*indent)+r
else:
return r
class StringComparison:
"""
An object that can be used in comparisons of expected and actual
strings where the string expected matches a pattern rather than a
specific concrete string.
:param regex_source: A string containing the source for a regular
expression that will be used whenever this
:class:`StringComparison` is compared with
any :class:`basestring` instance.
"""
def __init__(self, regex_source):
self.re = compile(regex_source)
def __eq__(self, other):
if not isinstance(other, basestring):
return
if self.re.match(other):
return True
return False
def __ne__(self, other):
return not self == other
def __repr__(self):
return '<S:%s>' % self.re.pattern
def __lt__(self, other):
return self.re.pattern < other
def __gt__(self, other):
return self.re.pattern > other
class RoundComparison:
"""
An object that can be used in comparisons of expected and actual
numerics to a specified precision.
:param value: numeric to be compared.
:param precision: Number of decimal places to round to in order
to perform the comparison.
"""
def __init__(self, value, precision):
self.rounded = round(value, precision)
self.precision = precision
def __eq__(self, other):
other_rounded = round(other, self.precision)
if type(self.rounded) is not type(other_rounded):
raise TypeError('Cannot compare %r with %r' % (self, type(other)))
return self.rounded == other_rounded
def __ne__(self, other):
return not self == other
def __repr__(self):
return '<R:%s to %i digits>' % (self.rounded, self.precision)
def diff(x, y, x_label='', y_label=''):
"""
A shorthand function that uses :mod:`difflib` to return a
string representing the differences between the two string
arguments.
Most useful when comparing multi-line strings.
"""
return '\n'.join(
unified_diff(
x.split('\n'),
y.split('\n'),
x_label or 'first',
y_label or 'second',
lineterm='')
)
class RangeComparison:
"""
An object that can be used in comparisons of orderable types to
check that a value specified within the given range.
:param lower_bound: the inclusive lower bound for the acceptable range.
:param upper_bound: the inclusive upper bound for the acceptable range.
"""
def __init__(self, lower_bound, upper_bound):
self.lower_bound = lower_bound
self.upper_bound = upper_bound
def __eq__(self, other):
return self.lower_bound <= other <= self.upper_bound
def __ne__(self, other):
return not self == other
def __repr__(self):
return '<Range: [%s, %s]>' % (self.lower_bound, self.upper_bound)
|