forked from github/codeql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassert.py
More file actions
106 lines (78 loc) · 1.69 KB
/
assert.py
File metadata and controls
106 lines (78 loc) · 1.69 KB
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
import sys
import six
def _f():
assert (yield 3)
x = [ 1 ]
assert len(x) #Call without side-effects
assert sys.exit(1) #Call with side-effects
expected_types = (Response, six.text_type, six.binary_type)
assert isinstance(obj, expected_types), \
"obj must be %s, not %s" % (
" or ".join(t.__name__ for t in expected_types),
type(obj).__name__)
def assert_tuple(x, y):
assert ()
assert (x, y)
def error_assert_true(x):
if x:
assert True, "Bad"
else:
assert True
def error_assert_false(x):
if x:
assert False, "Bad"
def error_assert_zero(x):
if x:
assert 0, "Bad"
def error_assert_one(x):
if x:
assert 1, "Bad"
def error_assert_empty_string(x):
if x:
assert "", "Bad"
def error_assert_nonempty_string(x):
if x:
assert "X", "Bad"
else:
assert "X"
def ok_assert_false(x):
if x:
assert 0==1, "Ok"
class TestCase:
pass
class MyTest(TestCase):
def test_ok_assert_in_test(self, x):
if x:
assert False, "Ok"
def ok_assert_in_final_branch3(x):
if foo(x):
pass
elif bar(x):
pass
elif quux(x):
pass
else:
assert False, "Ok"
def ok_assert_in_final_branch2(x):
if foo(x):
pass
elif bar(x):
pass
else:
assert False, "Ok"
def error_assert_in_final_branch1(x):
if foo(x):
pass
else:
assert False, "Error"
def error_assert_in_intermediate_branch(x):
if foo(x):
pass
elif bar(x):
pass
elif quux(x):
assert False, "Error"
elif yks(x):
pass
else:
pass