-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathEndToEndTests.java
More file actions
349 lines (312 loc) · 14.6 KB
/
EndToEndTests.java
File metadata and controls
349 lines (312 loc) · 14.6 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
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
package com.functions;
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
import io.restassured.path.json.JsonPath;
import io.restassured.response.Response;
import org.junit.jupiter.api.Order;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ValueSource;
import java.time.Duration;
import java.time.Instant;
import java.util.HashSet;
import java.util.Set;
import java.util.concurrent.TimeUnit;
import static io.restassured.RestAssured.get;
import static io.restassured.RestAssured.post;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;
@Tag("e2e")
public class EndToEndTests {
@Order(1)
@Test
public void setupHost() {
String hostHealthPingPath = "/admin/host/ping";
post(hostHealthPingPath).then().statusCode(200);
}
@ParameterizedTest
@ValueSource(strings = {
"StartOrchestration",
"StartParallelOrchestration",
"StartParallelAnyOf",
"StartParallelCatchException"
})
public void generalFunctions(String functionName) throws InterruptedException {
Set<String> continueStates = new HashSet<>();
continueStates.add("Pending");
continueStates.add("Running");
String startOrchestrationPath = "/api/" + functionName;
Response response = post(startOrchestrationPath);
JsonPath jsonPath = response.jsonPath();
String statusQueryGetUri = jsonPath.get("statusQueryGetUri");
boolean pass = pollingCheck(statusQueryGetUri, "Completed", continueStates, Duration.ofSeconds(20));
assertTrue(pass);
}
@Test
public void retryTest() throws InterruptedException {
String startOrchestrationPath = "/api/RetriableOrchestration";
Response response = post(startOrchestrationPath);
JsonPath jsonPath = response.jsonPath();
String statusQueryGetUri = jsonPath.get("statusQueryGetUri");
boolean pass = pollingCheck(statusQueryGetUri, "Completed", null, Duration.ofSeconds(10));
assertTrue(pass);
}
@Test
public void retryTestFail() throws InterruptedException {
String startOrchestrationPath = "/api/RetriableOrchestrationFail";
Response response = post(startOrchestrationPath);
JsonPath jsonPath = response.jsonPath();
String statusQueryGetUri = jsonPath.get("statusQueryGetUri");
boolean pass = pollingCheck(statusQueryGetUri, "Failed", null, Duration.ofSeconds(10));
assertTrue(pass);
}
@Test
public void retryTestSuccess() throws InterruptedException {
String startOrchestrationPath = "/api/RetriableOrchestrationSuccess";
Response response = post(startOrchestrationPath);
JsonPath jsonPath = response.jsonPath();
String statusQueryGetUri = jsonPath.get("statusQueryGetUri");
boolean pass = pollingCheck(statusQueryGetUri, "Completed", null, Duration.ofSeconds(10));
assertTrue(pass);
}
@Test
public void continueAsNew() throws InterruptedException {
String startOrchestrationPath = "api/ContinueAsNew";
Response response = post(startOrchestrationPath);
JsonPath jsonPath = response.jsonPath();
String statusQueryGetUri = jsonPath.get("statusQueryGetUri");
String runTimeStatus;
//assert that the orchestration is always running.
for (int i = 0; i < 10; i++) {
Response statusResponse = get(statusQueryGetUri);
runTimeStatus = statusResponse.jsonPath().get("runtimeStatus");
assertTrue(runTimeStatus.equals("Running") || runTimeStatus.equals("Pending"));
Thread.sleep(1000);
}
String terminatePostUri = jsonPath.get("terminatePostUri");
post(terminatePostUri, "Terminated the test");
Thread.sleep(5000);
Response statusResponse = get(statusQueryGetUri);
statusResponse.jsonPath().get("runtimeStatus");
}
@Test
public void continueAsNewExternalEvent() throws InterruptedException {
String startOrchestrationPath = "api/ContinueAsNewExternalEvent";
Response response = post(startOrchestrationPath);
JsonPath jsonPath = response.jsonPath();
// send external event, it will cause the continue-as-new.
String sendEventPostUri = jsonPath.get("sendEventPostUri");
sendEventPostUri = sendEventPostUri.replace("{eventName}", "event");
// empty request body
RestAssured
.given()
.contentType(ContentType.JSON) // Set the request content type
.body("{}")
.post(sendEventPostUri)
.then()
.statusCode(202);
//wait 5 seconds for the continue-as-new to start new orchestration
TimeUnit.SECONDS.sleep(5);
response = post(startOrchestrationPath);
jsonPath = response.jsonPath();
String statusQueryGetUri = jsonPath.get("statusQueryGetUri");
// polling 20 seconds
// assert that the orchestration completed as expected, not enter an infinite loop
boolean completed = pollingCheck(statusQueryGetUri, "Completed", null, Duration.ofSeconds(20));
assertTrue(completed);
}
@ParameterizedTest
@ValueSource(booleans = {true, false})
public void restart(boolean restartWithNewInstanceId) throws InterruptedException {
String startOrchestrationPath = "/api/StartOrchestration";
Set<String> continueStates = new HashSet<>();
continueStates.add("Pending");
continueStates.add("Running");
Response response = post(startOrchestrationPath);
JsonPath jsonPath = response.jsonPath();
String statusQueryGetUri = jsonPath.get("statusQueryGetUri");
boolean completed = pollingCheck(statusQueryGetUri, "Completed", continueStates, Duration.ofSeconds(10));
assertTrue(completed);
Response statusResponse = get(statusQueryGetUri);
String instanceId = statusResponse.jsonPath().get("instanceId");
String restartPostUri = jsonPath.get("restartPostUri") + "&restartWithNewInstanceId=" + restartWithNewInstanceId;
Response restartResponse = post(restartPostUri);
JsonPath restartJsonPath = restartResponse.jsonPath();
String restartStatusQueryGetUri = restartJsonPath.get("statusQueryGetUri");
completed = pollingCheck(restartStatusQueryGetUri, "Completed", continueStates, Duration.ofSeconds(10));
assertTrue(completed);
Response restartStatusResponse = get(restartStatusQueryGetUri);
String newInstanceId = restartStatusResponse.jsonPath().get("instanceId");
if (restartWithNewInstanceId) {
assertNotEquals(instanceId, newInstanceId);
} else {
assertEquals(instanceId, newInstanceId);
}
}
@Test
public void thenChain() throws InterruptedException {
Set<String> continueStates = new HashSet<>();
continueStates.add("Pending");
continueStates.add("Running");
final String expect = "\"AUSTIN\"-test";
String startOrchestrationPath = "/api/StartOrchestrationThenChain";
Response response = post(startOrchestrationPath);
JsonPath jsonPath = response.jsonPath();
String statusQueryGetUri = jsonPath.get("statusQueryGetUri");
boolean completed = pollingCheck(statusQueryGetUri, "Completed", continueStates, Duration.ofSeconds(20));
assertTrue(completed);
String output = get(statusQueryGetUri).jsonPath().get("output");
assertEquals(expect, output);
}
@Test
public void suspendResume() throws InterruptedException {
String startOrchestrationPath = "api/StartResumeSuspendOrchestration";
Response response = post(startOrchestrationPath);
JsonPath jsonPath = response.jsonPath();
String statusQueryGetUri = jsonPath.get("statusQueryGetUri");
boolean running = pollingCheck(statusQueryGetUri, "Running", null, Duration.ofSeconds(5));
assertTrue(running);
String suspendPostUri = jsonPath.get("suspendPostUri");
post(suspendPostUri, "SuspendOrchestration");
boolean suspend = pollingCheck(statusQueryGetUri, "Suspended", null, Duration.ofSeconds(5));
assertTrue(suspend);
String sendEventPostUri = jsonPath.get("sendEventPostUri");
sendEventPostUri = sendEventPostUri.replace("{eventName}", "test");
String requestBody = "{\"value\":\"Test\"}";
RestAssured
.given()
.contentType(ContentType.JSON) // Set the request content type
.body(requestBody) // Set the request body
.post(sendEventPostUri)
.then()
.statusCode(202);
boolean suspendAfterEventSent = pollingCheck(statusQueryGetUri, "Suspended", null, Duration.ofSeconds(5));
assertTrue(suspendAfterEventSent);
String resumePostUri = jsonPath.get("resumePostUri");
post(resumePostUri, "ResumeOrchestration");
boolean completed = pollingCheck(statusQueryGetUri, "Completed", null, Duration.ofSeconds(5));
assertTrue(completed);
}
@Test
public void externalEventDeserializeFail() throws InterruptedException {
String startOrchestrationPath = "api/ExternalEventHttp";
Response response = post(startOrchestrationPath);
JsonPath jsonPath = response.jsonPath();
String sendEventPostUri = jsonPath.get("sendEventPostUri");
sendEventPostUri = sendEventPostUri.replace("{eventName}", "event");
String requestBody = "{\"value\":\"Test\"}";
RestAssured
.given()
.contentType(ContentType.JSON) // Set the request content type
.body(requestBody) // Set the request body
.post(sendEventPostUri)
.then()
.statusCode(202);
// assert orchestration status
String statusQueryGetUri = jsonPath.get("statusQueryGetUri");
boolean completed = pollingCheck(statusQueryGetUri, "Failed", null, Duration.ofSeconds(10));
assertTrue(completed);
// assert exception message
Response resp = get(statusQueryGetUri);
String errorMessage = resp.jsonPath().get("output");
assertTrue(errorMessage.contains("Failed to deserialize the JSON text to java.lang.String"));
}
@ParameterizedTest
@ValueSource(strings = {
"DeserializeErrorHttp",
"SubCompletedErrorHttp"
})
public void DeserializeFail(String functionName) throws InterruptedException {
String startOrchestrationPath = "api/" + functionName;
Response response = post(startOrchestrationPath);
JsonPath jsonPath = response.jsonPath();
// assert orchestration status
String statusQueryGetUri = jsonPath.get("statusQueryGetUri");
boolean completed = pollingCheck(statusQueryGetUri, "Failed", null, Duration.ofSeconds(10));
assertTrue(completed);
// assert exception message
Response resp = get(statusQueryGetUri);
String errorMessage = resp.jsonPath().get("output");
assertTrue(errorMessage.contains("Failed to deserialize the JSON text"));
}
@ParameterizedTest
@ValueSource(strings = {
"default",
"",
"0.9",
"1.0"
})
public void VersionedOrchestrationTests(String version) throws InterruptedException {
Response response = post("api/StartVersionedOrchestration?version=" + version);
String statusQueryGetUri = null;
try {
JsonPath jsonPath = response.jsonPath();
// assert orchestration status
statusQueryGetUri = jsonPath.get("statusQueryGetUri");
} catch (Exception e) {
fail("Failed to parse response: " + response.asString());
}
boolean completed = pollingCheck(statusQueryGetUri, "Completed", null, Duration.ofSeconds(10));
assertTrue(completed);
// assert exception message
Response resp = get(statusQueryGetUri);
String output = resp.jsonPath().get("output");
if (version.equals("default")) {
assertTrue(output.contains("Version: '1.0'"), "Expected default version (1.0), got: " + output);
} else {
assertTrue(output.contains(String.format("Version: '%s'", version)), "Expected version (" + version + "), got: " + output);
}
}
@ParameterizedTest
@ValueSource(strings = {
"default",
"",
"0.9",
"1.0"
})
public void VersionedSubOrchestrationTests(String version) throws InterruptedException {
Response response = post("api/StartVersionedSubOrchestration?version=" + version);
String statusQueryGetUri = null;
try {
JsonPath jsonPath = response.jsonPath();
// assert orchestration status
statusQueryGetUri = jsonPath.get("statusQueryGetUri");
} catch (Exception e) {
fail("Failed to parse response: " + response.asString());
}
boolean completed = pollingCheck(statusQueryGetUri, "Completed", null, Duration.ofSeconds(10));
assertTrue(completed);
// assert exception message
Response resp = get(statusQueryGetUri);
String output = resp.jsonPath().get("output");
if (version.equals("default")) {
assertTrue(output.contains(String.format("Version: '%s'", "1.0")), "Expected default version (1.0), got: " + output);
} else {
assertTrue(output.contains(String.format("Version: '%s'", version)), "Expected version (" + version + "), got: " + output);
}
}
private boolean pollingCheck(String statusQueryGetUri,
String expectedState,
Set<String> continueStates,
Duration timeout) throws InterruptedException {
String runTimeStatus = null;
Instant begin = Instant.now();
Instant runningTime = Instant.now();
while (Duration.between(begin, runningTime).compareTo(timeout) <= 0) {
Response statusResponse = get(statusQueryGetUri);
runTimeStatus = statusResponse.jsonPath().get("runtimeStatus");
if (expectedState.equals(runTimeStatus)) {
return true;
}
if (continueStates != null && !continueStates.contains(runTimeStatus)) {
return false;
}
Thread.sleep(1000);
runningTime = Instant.now();
}
return false;
}
}