-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathtest_assert.py
95 lines (76 loc) · 2.71 KB
/
test_assert.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
# Licensed to the .NET Foundation under one or more agreements.
# The .NET Foundation licenses this file to you under the Apache 2.0 License.
# See the LICENSE file in the project root for more information.
import sys
import unittest
from iptest import run_test
@unittest.skipIf(sys.flags.optimize, "should be run without optimize")
class AssertTest(unittest.TestCase):
def test_positive(self):
try:
assert True
except AssertionError, e:
raise "Should have been no exception!"
try:
assert True, 'this should always pass'
except AssertionError, e:
raise "Should have been no exception!"
def test_negative(self):
ok = False
try:
assert False
except AssertionError, e:
ok = True
self.assertEqual(str(e), "")
self.assertTrue(ok)
ok = False
try:
assert False
except AssertionError, e:
ok = True
self.assertEqual(str(e), "")
self.assertTrue(ok)
ok = False
try:
assert False, 'this should never pass'
except AssertionError, e:
ok = True
self.assertEqual(str(e), "this should never pass")
self.assertTrue(ok)
ok = False
try:
assert None, 'this should never pass'
except AssertionError, e:
ok = True
self.assertEqual(str(e), "this should never pass")
self.assertTrue(ok)
def test_doesnt_fail_on_curly(self):
"""Ensures that asserting a string with a curly brace doesn't choke up the
string formatter."""
ok = False
try:
assert False, '}'
except AssertionError:
ok = True
self.assertTrue(ok)
def test_custom_assertionerror(self):
"""https://github.com/IronLanguages/ironpython2/issues/107"""
class MyAssertionError(Exception):
def __init__(self, msg):
super(MyAssertionError, self).__init__(msg)
def test():
assert False, 'You are here'
import __builtin__
old = __builtin__.AssertionError
__builtin__.AssertionError = MyAssertionError
try:
self.assertRaises(MyAssertionError, test)
finally:
__builtin__.AssertionError = old
#--Main------------------------------------------------------------------------
# if is_cli and '-O' in System.Environment.GetCommandLineArgs():
# from iptest.process_util import *
# self.assertEqual(0, launch_ironpython_changing_extensions(__file__, remove=["-O"]))
# else:
# run_test(__name__)
run_test(__name__)