-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGetWithQueryParamMulti.http
130 lines (82 loc) · 2.3 KB
/
GetWithQueryParamMulti.http
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
POST http://{{host}}/multi-query-test/mock-resources/some-resource?foo=5
Content-Type: application/json
{
"responseBody": "response payload foo",
"responseSetUpMetadata": {
"delayMs": 0,
"httpStatus": 200
}
}
###
POST http://{{host}}/multi-query-test/mock-resources/some-resource?bar=10
Content-Type: application/json
{
"responseBody": "response payload bar",
"responseSetUpMetadata": {
"delayMs": 0,
"httpStatus": 200
}
}
###
POST http://{{host}}/multi-query-test/mock-resources/some-resource?a=1&b=2&b=3
Content-Type: application/json
{
"responseBody": "response payload a b",
"responseSetUpMetadata": {
"delayMs": 0,
"httpStatus": 200
}
}
###
POST http://{{host}}/multi-query-test/mock-resources/some-resource?a=2&b=4&b=6
Content-Type: application/json
{
"responseBody": "response payload aa bb",
"responseSetUpMetadata": {
"delayMs": 0,
"httpStatus": 200
}
}
###
PUT http://{{host}}/multi-query-test/some-resource?foo=5
Content-Type: text/plain
FOO
###
PUT http://{{host}}/multi-query-test/some-resource?bar=10
Content-Type: text/plain
BAR
###
PUT http://{{host}}/multi-query-test/some-resource?a=1&b=2&b=3
Content-Type: text/plain
A B
###
PUT http://{{host}}/multi-query-test/some-resource?b=2&a=1&b=3
Content-Type: text/plain
B A
###
PUT http://{{host}}/multi-query-test/some-resource?a=2&b=4&b=6
Content-Type: text/plain
AA BB
###
GET http://{{host}}/multi-query-test/some-resource?a=2&b=6&b=4
###
GET http://{{host}}/multi-query-test/some-resource?a=1&b=3
###
GET http://{{host}}/multi-query-test/some-resource?foo=6
###
GET http://{{host}}/multi-query-test/some-resource/mock-resources?foo=5
###
GET http://{{host}}/multi-query-test/some-resource/mock-resources?bar=10
###
GET http://{{host}}/multi-query-test/some-resource/mock-resources?a=1&b=2&b=3
###
GET http://{{host}}/multi-query-test/some-resource/mock-resources?b=2&a=1&b=3
###
GET http://{{host}}/multi-query-test/some-resource/mock-resources?b=4&a=2&b=6
###
GET http://{{host}}/multi-query-test/some-resource/mock-resources?b=4&a=2&b=6&verifyMockContent=list
###
GET http://{{host}}/multi-query-test/some-resource/mock-resources?b=4&a=2&b=6&verifyMockContent=last
###
GET http://{{host}}/multi-query-test/some-resource/mock-resources?b=4&a=2&b=6&verifyMockContent=detailed
###