-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathtest_utils.py
392 lines (326 loc) · 12.1 KB
/
test_utils.py
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
# -*- coding: utf-8 -*-
"""
Tests for the various utility functions and classes in ``future.utils``
"""
from __future__ import absolute_import, unicode_literals, print_function
import re, sys, traceback
from future.builtins import *
from future.utils import (old_div, istext, isbytes, native, PY2, PY3,
native_str, raise_, as_native_str, ensure_new_type,
bytes_to_native_str, raise_from)
from future.tests.base import expectedFailurePY3
from numbers import Integral
from future.tests.base import unittest, skip26
TEST_UNICODE_STR = u'ℝεα∂@ßʟ℮ ☂ℯṧт υηḯ¢☺ḓ℮'
class MyExceptionIssue235(Exception):
def __init__(self, a, b):
super(MyExceptionIssue235, self).__init__('{0}: {1}'.format(a, b))
class TestUtils(unittest.TestCase):
def setUp(self):
self.s = TEST_UNICODE_STR
self.s2 = str(self.s)
self.b = b'ABCDEFG'
self.b2 = bytes(self.b)
def test_old_div(self):
"""
Tests whether old_div(a, b) is always equal to Python 2's a / b.
"""
self.assertEqual(old_div(1, 2), 0)
self.assertEqual(old_div(2, 2), 1)
self.assertTrue(isinstance(old_div(2, 2), int))
self.assertEqual(old_div(3, 2), 1)
self.assertTrue(isinstance(old_div(3, 2), int))
self.assertEqual(old_div(3., 2), 1.5)
self.assertTrue(not isinstance(old_div(3., 2), int))
self.assertEqual(old_div(-1, 2.), -0.5)
self.assertTrue(not isinstance(old_div(-1, 2.), int))
with self.assertRaises(ZeroDivisionError):
old_div(0, 0)
with self.assertRaises(ZeroDivisionError):
old_div(1, 0)
def test_native_str(self):
"""
Tests whether native_str is really equal to the platform str.
"""
if PY2:
import __builtin__
builtin_str = __builtin__.str
else:
import builtins
builtin_str = builtins.str
inputs = [b'blah', u'blah', 'blah']
for s in inputs:
self.assertEqual(native_str(s), builtin_str(s))
self.assertTrue(isinstance(native_str(s), builtin_str))
def test_native(self):
a = int(10**20) # long int
b = native(a)
self.assertEqual(a, b)
if PY2:
self.assertEqual(type(b), long)
else:
self.assertEqual(type(b), int)
c = bytes(b'ABC')
d = native(c)
self.assertEqual(c, d)
if PY2:
self.assertEqual(type(d), type(b'Py2 byte-string'))
else:
self.assertEqual(type(d), bytes)
s = str(u'ABC')
t = native(s)
self.assertEqual(s, t)
if PY2:
self.assertEqual(type(t), unicode)
else:
self.assertEqual(type(t), str)
d1 = dict({'a': 1, 'b': 2})
d2 = native(d1)
self.assertEqual(d1, d2)
self.assertEqual(type(d2), type({}))
def test_istext(self):
self.assertTrue(istext(self.s))
self.assertTrue(istext(self.s2))
self.assertFalse(istext(self.b))
self.assertFalse(istext(self.b2))
def test_isbytes(self):
self.assertTrue(isbytes(self.b))
self.assertTrue(isbytes(self.b2))
self.assertFalse(isbytes(self.s))
self.assertFalse(isbytes(self.s2))
def test_raise_(self):
def valerror():
try:
raise ValueError("Apples!")
except Exception as e:
raise_(e)
self.assertRaises(ValueError, valerror)
def with_value():
raise_(IOError, "This is an error")
self.assertRaises(IOError, with_value)
try:
with_value()
except IOError as e:
self.assertEqual(str(e), "This is an error")
def with_traceback():
try:
raise ValueError("An error")
except Exception as e:
_, _, traceback = sys.exc_info()
raise_(IOError, str(e), traceback)
self.assertRaises(IOError, with_traceback)
try:
with_traceback()
except IOError as e:
self.assertEqual(str(e), "An error")
def test_raise_from_None(self):
try:
try:
raise TypeError("foo")
except:
raise_from(ValueError(), None)
except ValueError as e:
self.assertTrue(isinstance(e.__context__, TypeError))
self.assertIsNone(e.__cause__)
def test_issue_235(self):
def foo():
raise MyExceptionIssue235(3, 7)
def bar():
try:
foo()
except Exception as err:
raise_from(ValueError('blue'), err)
try:
bar()
except ValueError as e:
pass
# incorrectly raises a TypeError on Py3 as of v0.15.2.
def test_raise_custom_exception(self):
"""
Test issue #387.
"""
class CustomException(Exception):
def __init__(self, severity, message):
super().__init__("custom message of severity %d: %s" % (
severity, message))
def raise_custom_exception():
try:
raise CustomException(1, "hello")
except CustomException:
raise_(*sys.exc_info())
self.assertRaises(CustomException, raise_custom_exception)
@skip26
def test_as_native_str(self):
"""
Tests the decorator as_native_str()
"""
class MyClass(object):
@as_native_str()
def __repr__(self):
return u'abc'
obj = MyClass()
self.assertEqual(repr(obj), 'abc')
if PY2:
self.assertEqual(repr(obj), b'abc')
else:
self.assertEqual(repr(obj), u'abc')
def test_ensure_new_type(self):
s = u'abcd'
s2 = str(s)
self.assertEqual(ensure_new_type(s), s2)
self.assertEqual(type(ensure_new_type(s)), str)
b = b'xyz'
b2 = bytes(b)
self.assertEqual(ensure_new_type(b), b2)
self.assertEqual(type(ensure_new_type(b)), bytes)
i = 10000000000000
i2 = int(i)
self.assertEqual(ensure_new_type(i), i2)
self.assertEqual(type(ensure_new_type(i)), int)
l = []
self.assertIs(ensure_new_type(l), l)
def test_bytes_to_native_str(self):
"""
Test for issue #47
"""
b = bytes(b'abc')
s = bytes_to_native_str(b)
if PY2:
self.assertEqual(s, b)
else:
self.assertEqual(s, 'abc')
self.assertTrue(isinstance(s, native_str))
self.assertEqual(type(s), native_str)
class TestCause(unittest.TestCase):
"""
Except for the first method, these were adapted from Py3.3's
Lib/test/test_raise.py.
"""
def test_normal_use(self):
"""
Adapted from PEP 3134 docs
"""
# Setup:
class DatabaseError(Exception):
pass
# Python 2 and 3:
from future.utils import raise_from
class FileDatabase:
def __init__(self, filename):
try:
self.file = open(filename)
except IOError as exc:
raise_from(DatabaseError('failed to open'), exc)
# Testing the above:
try:
fd = FileDatabase('non_existent_file.txt')
except Exception as e:
assert isinstance(e.__cause__, IOError) # FileNotFoundError on
# Py3.3+ inherits from IOError
def testCauseSyntax(self):
try:
try:
try:
raise TypeError
except Exception:
raise_from(ValueError, None)
except ValueError as exc:
self.assertIsNone(exc.__cause__)
self.assertTrue(exc.__suppress_context__)
exc.__suppress_context__ = False
raise exc
except ValueError as exc:
e = exc
self.assertIsNone(e.__cause__)
self.assertFalse(e.__suppress_context__)
self.assertIsInstance(e.__context__, TypeError)
def test_invalid_cause(self):
try:
raise_from(IndexError, 5)
except TypeError as e:
self.assertIn("exception cause", str(e))
else:
self.fail("No exception raised")
def test_class_cause(self):
try:
raise_from(IndexError, KeyError)
except IndexError as e:
self.assertIsInstance(e.__cause__, KeyError)
else:
self.fail("No exception raised")
def test_instance_cause(self):
cause = KeyError('blah')
try:
raise_from(IndexError, cause)
except IndexError as e:
# FAILS:
self.assertTrue(e.__cause__ is cause)
# Even this weaker version seems to fail, although repr(cause) looks correct.
# Is there something strange about testing exceptions for equality?
self.assertEqual(e.__cause__, cause)
else:
self.fail("No exception raised")
def test_erroneous_cause(self):
class MyException(Exception):
def __init__(self):
raise RuntimeError()
try:
raise_from(IndexError, MyException)
except RuntimeError:
pass
else:
self.fail("No exception raised")
def test_single_exception_stacktrace(self):
expected = '''Traceback (most recent call last):
File "/opt/python-future/tests/test_future/test_utils.py", line 328, in test_single_exception_stacktrace
raise CustomException('ERROR')
'''
if PY2:
expected += 'CustomException: ERROR\n'
else:
expected += 'test_future.test_utils.CustomException: ERROR\n'
try:
raise CustomException('ERROR')
except:
ret = re.sub(r'"[^"]*tests/test_future', '"/opt/python-future/tests/test_future', traceback.format_exc())
ret = re.sub(r', line \d+,', ', line 328,', ret)
self.assertEqual(expected, ret)
else:
self.fail('No exception raised')
if PY2:
def test_chained_exceptions_stacktrace(self):
expected = '''Traceback (most recent call last):
File "/opt/python-future/tests/test_future/test_utils.py", line 1, in test_chained_exceptions_stacktrace
raise_from(CustomException('ERROR'), val_err)
File "/opt/python-future/src/future/utils/__init__.py", line 1, in raise_from
raise e
CustomException: ERROR
The above exception was the direct cause of the following exception:
File "/opt/python-future/tests/test_future/test_utils.py", line 1, in test_chained_exceptions_stacktrace
raise ValueError('Wooops')
ValueError: Wooops
'''
try:
try:
raise ValueError('Wooops')
except ValueError as val_err:
raise_from(CustomException('ERROR'), val_err)
except Exception as err:
ret = re.sub(r'"[^"]*tests/test_future', '"/opt/python-future/tests/test_future', traceback.format_exc())
ret = re.sub(r'"[^"]*future/utils/__init__.py', '"/opt/python-future/src/future/utils/__init__.py', ret)
ret = re.sub(r', line \d+,', ', line 1,', ret)
self.assertEqual(expected.splitlines(), ret.splitlines())
else:
self.fail('No exception raised')
class CustomException(Exception):
if PY2:
def __str__(self):
out = Exception.__str__(self)
if hasattr(self, '__cause__') and self.__cause__ and hasattr(self.__cause__, '__traceback__') and self.__cause__.__traceback__:
out += '\n\nThe above exception was the direct cause of the following exception:\n\n'
out += ''.join(traceback.format_tb(self.__cause__.__traceback__) + ['{}: {}'.format(self.__cause__.__class__.__name__, self.__cause__)])
return out
else:
pass
if __name__ == '__main__':
unittest.main()