-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtest_deterministric_metrics.py
228 lines (176 loc) · 5.32 KB
/
test_deterministric_metrics.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
from pathlib import Path
import pytest
from contextcheck import TestScenario
from tests.utils import executor
config_contains = """
config:
endpoint_under_test:
kind: echo
steps:
- name: test contains and icontains
request: 'Foo bar'
asserts:
- kind: contains
assertion: 'Foo'
- kind: contains
assertion: 'something else'
- kind: icontains
assertion: 'foo'
"""
@pytest.mark.parametrize("executor", [config_contains], indirect=True)
def test_contains(executor):
executor.run_all()
# Test: contains
assert executor.test_scenario.steps[0].asserts[0].result == True
assert executor.test_scenario.steps[0].asserts[1].result == False
# Test: icontains
assert executor.test_scenario.steps[0].asserts[2].result == True
config_contains_all = """
config:
endpoint_under_test:
kind: echo
steps:
- name: test contains-all and icontains-all
request: 'Quick brown fox jumps over the lazy dog'
asserts:
- kind: contains-all
assertion: ['Quick', 'fox']
- kind: contains-all
assertion: ['Quick', 'something else']
- kind: icontains-all
assertion: ['quick', 'fox']
"""
@pytest.mark.parametrize("executor", [config_contains_all], indirect=True)
def test_contains_all(executor):
executor.run_all()
# Test: contains-all
assert executor.test_scenario.steps[0].asserts[0].result == True
assert executor.test_scenario.steps[0].asserts[1].result == False
# Test: icontains-all
assert executor.test_scenario.steps[0].asserts[2].result == True
config_contains_any = """
config:
endpoint_under_test:
kind: echo
steps:
- name: test contains-any and icontains-any
request: 'Quick brown fox jumps over the lazy dog'
asserts:
- kind: contains-any
assertion: ['Quick', 'something else']
- kind: contains-any
assertion: ['something else', 'and', 'more']
- kind: icontains-any
assertion: ['quick', 'something else']
"""
@pytest.mark.parametrize("executor", [config_contains_any], indirect=True)
def test_contains_any(executor):
executor.run_all()
# Test: contains-any
assert executor.test_scenario.steps[0].asserts[0].result == True
assert executor.test_scenario.steps[0].asserts[1].result == False
# Test: icontains-any
assert executor.test_scenario.steps[0].asserts[2].result == True
config_is_valid_json = """
config:
endpoint_under_test:
kind: echo
steps:
- name: test is-valid-json
request: '{"name": "John", "age": 30}'
asserts:
- kind: is-valid-json
"""
@pytest.mark.parametrize("executor", [config_is_valid_json], indirect=True)
def test_is_valid_json(executor):
executor.run_all()
assert executor.test_scenario.steps[0].asserts[0].result == True
config_has_valid_json_schema = """
config:
endpoint_under_test:
kind: echo
steps:
- name: test has-valid-json-schema
request: '{"name": "John", "age": 30}'
asserts:
- kind: has-valid-json-schema
assertion:
type: object
properties:
name:
type: string
age:
type: number
minimum: 0
maximum: 150
required: ["name", "age"]
- kind: has-valid-json-schema
assertion:
type: object
properties:
name:
type: string
age:
type: number
minimum: 0
maximum: 150
city:
type: string
required: ["name", "age", "city"]
"""
@pytest.mark.parametrize("executor", [config_has_valid_json_schema], indirect=True)
def test_has_valid_json_schema(executor):
executor.run_all()
assert executor.test_scenario.steps[0].asserts[0].result == True
assert executor.test_scenario.steps[0].asserts[1].result == False
config_equals = """
config:
endpoint_under_test:
kind: echo
steps:
- name: test is-valid-json
request: 'Foo'
asserts:
- kind: equals
assertion: 'Foo'
"""
@pytest.mark.parametrize("executor", [config_equals], indirect=True)
def test_equals(executor):
executor.run_all()
assert executor.test_scenario.steps[0].asserts[0].result == True
config_regex = """
config:
endpoint_under_test:
kind: echo
steps:
- name: test regex
request: 'Foo16 bar'
asserts:
- kind: regex
assertion: '^\w+\d{2} \w+$'
- kind: regex
assertion: \d+
"""
@pytest.mark.parametrize("executor", [config_regex], indirect=True)
def test_regex(executor):
executor.run_all()
assert executor.test_scenario.steps[0].asserts[0].result == True
assert executor.test_scenario.steps[0].asserts[1].result == False
config_regex_2 = """
config:
endpoint_under_test:
kind: echo
steps:
- name: test regex
request: 'Foo16 bar'
asserts:
- kind: regex
assertion: "\w+" # This fails because regex is in double quotes
"""
def test_regex_exception(tmp_path: Path):
temp_file = tmp_path / "test.yaml"
temp_file.write_text(config_regex_2)
with pytest.raises(
ValueError, match="Yaml parsing error. It was probably caused by your 'regex' assertion"
):
TestScenario.from_yaml(temp_file)