forked from thepaul/cassandra-dtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathassertions.py
76 lines (60 loc) · 2.67 KB
/
assertions.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
import re
from cassandra import InvalidRequest, Unavailable, ConsistencyLevel, WriteFailure, WriteTimeout, ReadFailure, ReadTimeout
from cassandra.query import SimpleStatement
from tools import rows_to_list
def assert_unavailable(fun, *args):
try:
if len(args) == 0:
fun(None)
else:
fun(*args)
except (Unavailable, WriteTimeout, WriteFailure, ReadTimeout, ReadFailure) as e:
pass
except Exception as e:
assert False, "Expecting unavailable exception, got: " + str(e)
else:
assert False, "Expecting unavailable exception but no exception was raised"
def assert_invalid(session, query, matching=None, expected=InvalidRequest):
try:
res = session.execute(query)
assert False, "Expecting query to be invalid: got %s" % res
except AssertionError as e:
raise e
except expected as e:
msg = str(e)
if matching is not None:
assert re.search(matching, msg), "Error message does not contain " + matching + " (error = " + msg + ")"
def assert_one(session, query, expected, cl=ConsistencyLevel.ONE):
simple_query = SimpleStatement(query, consistency_level=cl)
res = session.execute(simple_query)
list_res = rows_to_list(res)
assert list_res == [expected], "Expected %s from %s, but got %s" % ([expected], query, list_res)
def assert_none(session, query, cl=ConsistencyLevel.ONE):
simple_query = SimpleStatement(query, consistency_level=cl)
res = session.execute(simple_query)
list_res = rows_to_list(res)
assert list_res == [], "Expected nothing from %s, but got %s" % (query, list_res)
def assert_all(session, query, expected, cl=ConsistencyLevel.ONE, ignore_order=False):
simple_query = SimpleStatement(query, consistency_level=cl)
res = session.execute(simple_query)
list_res = rows_to_list(res)
if ignore_order:
expected = sorted(expected)
list_res = sorted(list_res)
assert list_res == expected, "Expected %s from %s, but got %s" % (expected, query, list_res)
def assert_almost_equal(*args, **kwargs):
try:
error = kwargs['error']
except KeyError:
error = 0.16
vmax = max(args)
vmin = min(args)
assert vmin > vmax * (1.0 - error) or vmin == vmax, "values not within %.2f%% of the max: %s" % (error * 100, args)
def assert_row_count(session, table_name, expected):
""" Function to validate the row count expected in table_name """
query = "SELECT count(*) FROM {};".format(table_name)
res = session.execute(query)
count = res[0][0]
assert count == expected, "Expected a row count of {} in table '{}', but got {}".format(
expected, table_name, count
)