-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsample_test.json
More file actions
33 lines (33 loc) · 867 Bytes
/
sample_test.json
File metadata and controls
33 lines (33 loc) · 867 Bytes
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
{
"tests": [
{
"name": "test_name",
"description": "Description of the test.",
"path": "/search",
"method": "GET",
"protocol": "HTTP/1.1",
"num_requests": 1000,
"query": {
"q": {
"op": "rand_str_all",
"min": 1,
"max": 10
},
"numeric": {
"op": "rand_int",
"min": -100,
"max": 100
},
"incremental": {
"op": "inc",
"initial": 0,
"step": 10
},
"fixed": {
"op": "set",
"initial": "fixed_value"
}
}
}
]
}