This file is indexed.

/usr/lib/python3/dist-packages/twisted/trial/test/skipping.py is in python3-twisted-experimental 13.2.0-0ubuntu1.

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
# -*- test-case-name: twisted.trial.test.test_tests -*-
# Copyright (c) Twisted Matrix Laboratories.
# See LICENSE for details.

"""
Definitions of test cases with various interesting behaviors, to be used by
L{twisted.trial.test.test_tests} and other test modules to exercise different
features of trial's test runner.

See the L{twisted.trial.test.test_tests} module docstring for details about how
this code is arranged.
"""

from __future__ import division, absolute_import

from twisted.trial.unittest import (
    SynchronousTestCase, TestCase, SkipTest, FailTest)


class SkippingMixin(object):
    def test_skip1(self):
        raise SkipTest('skip1')

    def test_skip2(self):
        raise RuntimeError("I should not get raised")
    test_skip2.skip = 'skip2'

    def test_skip3(self):
        self.fail('I should not fail')
    test_skip3.skip = 'skip3'



class SynchronousSkipping(SkippingMixin, SynchronousTestCase):
    pass



class AsynchronousSkipping(SkippingMixin, TestCase):
    pass



class SkippingSetUpMixin(object):
    def setUp(self):
        raise SkipTest('skipSetUp')

    def test_1(self):
        pass

    def test_2(self):
        pass


class SynchronousSkippingSetUp(SkippingSetUpMixin, SynchronousTestCase):
    pass



class AsynchronousSkippingSetUp(SkippingSetUpMixin, TestCase):
    pass



class DeprecatedReasonlessSkipMixin(object):
    def test_1(self):
        raise SkipTest()



class SynchronousDeprecatedReasonlessSkip(
    DeprecatedReasonlessSkipMixin, SynchronousTestCase):
    pass



class AsynchronousDeprecatedReasonlessSkip(
    DeprecatedReasonlessSkipMixin, TestCase):
    pass



class SkippedClassMixin(object):
    skip = 'class'
    def setUp(self):
        self.__class__._setUpRan = True
    def test_skip1(self):
        raise SkipTest('skip1')
    def test_skip2(self):
        raise RuntimeError("Ought to skip me")
    test_skip2.skip = 'skip2'
    def test_skip3(self):
        pass
    def test_skip4(self):
        raise RuntimeError("Skip me too")



class SynchronousSkippedClass(SkippedClassMixin, SynchronousTestCase):
    pass



class AsynchronousSkippedClass(SkippedClassMixin, TestCase):
    pass



class TodoMixin(object):
    def test_todo1(self):
        self.fail("deliberate failure")
    test_todo1.todo = "todo1"

    def test_todo2(self):
        raise RuntimeError("deliberate error")
    test_todo2.todo = "todo2"

    def test_todo3(self):
        """unexpected success"""
    test_todo3.todo = 'todo3'




class SynchronousTodo(TodoMixin, SynchronousTestCase):
    pass



class AsynchronousTodo(TodoMixin, TestCase):
    pass



class SetUpTodoMixin(object):
    def setUp(self):
        raise RuntimeError("deliberate error")

    def test_todo1(self):
        pass
    test_todo1.todo = "setUp todo1"



class SynchronousSetUpTodo(SetUpTodoMixin, SynchronousTestCase):
    pass



class AsynchronousSetUpTodo(SetUpTodoMixin, TestCase):
    pass



class TearDownTodoMixin(object):
    def tearDown(self):
        raise RuntimeError("deliberate error")

    def test_todo1(self):
        pass
    test_todo1.todo = "tearDown todo1"



class SynchronousTearDownTodo(TearDownTodoMixin, SynchronousTestCase):
    pass



class AsynchronousTearDownTodo(TearDownTodoMixin, TestCase):
    pass



class TodoClassMixin(object):
    todo = "class"
    def test_todo1(self):
        pass
    test_todo1.todo = "method"
    def test_todo2(self):
        pass
    def test_todo3(self):
        self.fail("Deliberate Failure")
    test_todo3.todo = "method"
    def test_todo4(self):
        self.fail("Deliberate Failure")



class SynchronousTodoClass(TodoClassMixin, SynchronousTestCase):
    pass



class AsynchronousTodoClass(TodoClassMixin, TestCase):
    pass



class StrictTodoMixin(object):
    def test_todo1(self):
        raise RuntimeError("expected failure")
    test_todo1.todo = (RuntimeError, "todo1")

    def test_todo2(self):
        raise RuntimeError("expected failure")
    test_todo2.todo = ((RuntimeError, OSError), "todo2")

    def test_todo3(self):
        raise RuntimeError("we had no idea!")
    test_todo3.todo = (OSError, "todo3")

    def test_todo4(self):
        raise RuntimeError("we had no idea!")
    test_todo4.todo = ((OSError, SyntaxError), "todo4")

    def test_todo5(self):
        self.fail("deliberate failure")
    test_todo5.todo = (FailTest, "todo5")

    def test_todo6(self):
        self.fail("deliberate failure")
    test_todo6.todo = (RuntimeError, "todo6")

    def test_todo7(self):
        pass
    test_todo7.todo = (RuntimeError, "todo7")



class SynchronousStrictTodo(StrictTodoMixin, SynchronousTestCase):
    pass



class AsynchronousStrictTodo(StrictTodoMixin, TestCase):
    pass



class AddCleanupMixin(object):
    def setUp(self):
        self.log = ['setUp']

    def brokenSetUp(self):
        self.log = ['setUp']
        raise RuntimeError("Deliberate failure")

    def skippingSetUp(self):
        self.log = ['setUp']
        raise SkipTest("Don't do this")

    def append(self, thing):
        self.log.append(thing)

    def tearDown(self):
        self.log.append('tearDown')

    def runTest(self):
        self.log.append('runTest')



class SynchronousAddCleanup(AddCleanupMixin, SynchronousTestCase):
    pass



class AsynchronousAddCleanup(AddCleanupMixin, TestCase):
    pass