This file is indexed.

/usr/lib/python2.7/dist-packages/exam/asserts.py is in python-exam 0.10.5-2.

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
from functools import partial
from operator import eq, ne


IRRELEVANT = object()


class ChangeWatcher(object):

    POSTCONDITION_FAILURE_MESSAGE = {
        ne: 'Value did not change',
        eq: 'Value changed from {before} to {after}',
        'invalid': 'Value changed to {after}, not {expected_after}'
    }

    def __init__(self, comparator, check, *args, **kwargs):
        self.check = check
        self.comparator = comparator

        self.args = args
        self.kwargs = kwargs

        self.expected_before = kwargs.pop('before', IRRELEVANT)
        self.expected_after = kwargs.pop('after', IRRELEVANT)

    def __enter__(self):
        self.before = self.__apply()

        if not self.expected_before is IRRELEVANT:
            check = self.comparator(self.before, self.expected_before)
            message = "Value before is {before}, not {expected_before}"

            assert not check, message.format(**vars(self))

    def __exit__(self, exec_type, exec_value, traceback):
        if exec_type is not None:
            return False  # reraises original exception

        self.after = self.__apply()

        met_precondition = self.comparator(self.before, self.after)
        after_value_matches = self.after == self.expected_after

        # Changed when it wasn't supposed to, or, didn't change when it was
        if not met_precondition:
            self.__raise_postcondition_error(self.comparator)
        # Do care about the after value, but it wasn't equal
        elif self.expected_after is not IRRELEVANT and not after_value_matches:
            self.__raise_postcondition_error('invalid')

    def __apply(self):
        return self.check(*self.args, **self.kwargs)

    def __raise_postcondition_error(self, key):
        message = self.POSTCONDITION_FAILURE_MESSAGE[key]
        raise AssertionError(message.format(**vars(self)))


class AssertsMixin(object):
    assertChanges = partial(ChangeWatcher, ne)
    assertDoesNotChange = partial(
        ChangeWatcher,
        eq,
        before=IRRELEVANT,
        after=IRRELEVANT
    )