-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathsequence.rs
385 lines (340 loc) · 14.2 KB
/
sequence.rs
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
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
use httpmock::{Method::GET, Mock, MockServer};
use serial_test::serial;
use tokio::time::{sleep, Duration};
mod common;
use goose::config::GooseConfiguration;
use goose::prelude::*;
// Paths used in load tests performed during these tests.
const ONE_PATH: &str = "/one";
const TWO_PATH: &str = "/two";
const THREE_PATH: &str = "/three";
const START_ONE_PATH: &str = "/start/one";
const STOP_ONE_PATH: &str = "/stop/one";
// Indexes to the above paths.
const ONE_KEY: usize = 0;
const TWO_KEY: usize = 1;
const THREE_KEY: usize = 2;
const START_ONE_KEY: usize = 3;
const STOP_ONE_KEY: usize = 4;
// Load test configuration.
const EXPECT_WORKERS: usize = 2;
const USERS: usize = 4;
const RUN_TIME: usize = 2;
// There are multiple test variations in this file.
#[derive(Clone)]
enum TestType {
// No sequences defined in load test.
NotSequenced,
// Sequences defined in load test, scheduled round robin.
SequencedRoundRobin,
// Sequences defined in load test, scheduled serially.
SequencedSerial,
}
// Test transaction.
pub async fn one(user: &mut GooseUser) -> TransactionResult {
let _goose = user.get(ONE_PATH).await?;
Ok(())
}
// Test transaction.
pub async fn two_with_delay(user: &mut GooseUser) -> TransactionResult {
let _goose = user.get(TWO_PATH).await?;
// "Run out the clock" on the load test when this function runs. Sleep for
// the total duration the test is to run plus 2 seconds to be sure no
// additional transactions will run after this one.
sleep(Duration::from_secs(RUN_TIME as u64 + 2)).await;
Ok(())
}
// Test transaction.
pub async fn three(user: &mut GooseUser) -> TransactionResult {
let _goose = user.get(THREE_PATH).await?;
Ok(())
}
// Used as a test_start() function, which always runs one time.
pub async fn start_one(user: &mut GooseUser) -> TransactionResult {
let _goose = user.get(START_ONE_PATH).await?;
Ok(())
}
// Used as a test_stop() function, which always runs one time.
pub async fn stop_one(user: &mut GooseUser) -> TransactionResult {
let _goose = user.get(STOP_ONE_PATH).await?;
Ok(())
}
// All tests in this file run against common endpoints.
fn setup_mock_server_endpoints(server: &MockServer) -> Vec<Mock> {
vec![
// First set up ONE_PATH, store in vector at ONE_KEY.
server.mock(|when, then| {
when.method(GET).path(ONE_PATH);
then.status(200);
}),
// Next set up TWO_PATH, store in vector at TWO_KEY.
server.mock(|when, then| {
when.method(GET).path(TWO_PATH);
then.status(200);
}),
// Next set up THREE_PATH, store in vector at THREE_KEY.
server.mock(|when, then| {
when.method(GET).path(THREE_PATH);
then.status(200);
}),
// Next set up START_ONE_PATH, store in vector at START_ONE_KEY.
server.mock(|when, then| {
when.method(GET).path(START_ONE_PATH);
then.status(200);
}),
// Next set up STOP_ONE_PATH, store in vector at STOP_ONE_KEY.
server.mock(|when, then| {
when.method(GET).path(STOP_ONE_PATH);
then.status(200);
}),
]
}
// Build appropriate configuration for these tests.
fn common_build_configuration(
server: &MockServer,
worker: Option<bool>,
manager: Option<usize>,
) -> GooseConfiguration {
if let Some(expect_workers) = manager {
common::build_configuration(
server,
vec![
"--manager",
"--expect-workers",
&expect_workers.to_string(),
"--users",
&USERS.to_string(),
"--hatch-rate",
&USERS.to_string(),
"--run-time",
&RUN_TIME.to_string(),
"--no-reset-metrics",
],
)
} else if worker.is_some() {
common::build_configuration(server, vec!["--worker"])
} else {
common::build_configuration(
server,
vec![
"--users",
&USERS.to_string(),
"--hatch-rate",
&USERS.to_string(),
"--run-time",
&RUN_TIME.to_string(),
"--no-reset-metrics",
],
)
}
}
// Helper to confirm all variations generate appropriate results.
fn validate_test(test_type: &TestType, mock_endpoints: &[Mock]) {
// START_ONE_PATH is loaded one and only one time on all variations.
mock_endpoints[START_ONE_KEY].assert_hits(1);
// Now confirm TestType-specific counters.
match test_type {
TestType::NotSequenced => {
// All transactions run one time, as they are launched RoundRobin in the order
// defined (and importantly three is defined before two in this test).
mock_endpoints[ONE_KEY].assert_hits(USERS);
mock_endpoints[THREE_KEY].assert_hits(USERS);
mock_endpoints[TWO_KEY].assert_hits(USERS);
}
TestType::SequencedRoundRobin => {
// Transaction ONE runs twice as it's scheduled first with a weight of 2. It then
// runs one more time in the next scheduling as it then round robins between
// ONE and TWO. When TWO runs it runs out the clock.
mock_endpoints[ONE_KEY].assert_hits(USERS * 3);
// Two runs out the clock, so three never runs.
mock_endpoints[TWO_KEY].assert_hits(USERS);
mock_endpoints[THREE_KEY].assert_hits(0);
}
TestType::SequencedSerial => {
// Transaction ONE runs twice as it's scheduled first with a weight of 2. It then
// runs two more times in the next scheduling as runs transaction serially as
// defined.
mock_endpoints[ONE_KEY].assert_hits(USERS * 4);
// Two runs out the clock, so three never runs.
mock_endpoints[TWO_KEY].assert_hits(USERS);
mock_endpoints[THREE_KEY].assert_hits(0);
}
}
// STOP_ONE_PATH is loaded one and only one time on all variations.
mock_endpoints[STOP_ONE_KEY].assert_hits(1);
}
// Returns the appropriate scenario, start_transaction and stop_transaction needed to build these tests.
fn get_transactions(test_type: &TestType) -> (Scenario, Transaction, Transaction) {
match test_type {
// No sequence declared, so transactions run in default RoundRobin order: 1, 3, 2, 1...
TestType::NotSequenced => (
scenario!("LoadTest")
.register_transaction(transaction!(one).set_weight(2).unwrap())
.register_transaction(transaction!(three))
.register_transaction(transaction!(two_with_delay)),
// Start runs before all other transactions, regardless of where defined.
transaction!(start_one),
// Stop runs after all other transactions, regardless of where defined.
transaction!(stop_one),
),
// Sequence added, so transactions run in the declared sequence order: 1, 1, 2, 3...
TestType::SequencedRoundRobin => (
scenario!("LoadTest")
.register_transaction(transaction!(one).set_sequence(1).set_weight(2).unwrap())
.register_transaction(transaction!(three).set_sequence(3))
.register_transaction(transaction!(one).set_sequence(2).set_weight(2).unwrap())
.register_transaction(transaction!(two_with_delay).set_sequence(2)),
// Start runs before all other transactions, regardless of where defined.
transaction!(start_one),
// Stop runs after all other transactions, regardless of where defined.
transaction!(stop_one),
),
TestType::SequencedSerial => (
scenario!("LoadTest")
.register_transaction(transaction!(one).set_sequence(1).set_weight(2).unwrap())
.register_transaction(transaction!(three).set_sequence(3))
.register_transaction(transaction!(one).set_sequence(2).set_weight(2).unwrap())
.register_transaction(transaction!(two_with_delay).set_sequence(2)),
// Start runs before all other transactions, regardless of where defined.
transaction!(start_one),
// Stop runs after all other transactions, regardless of where defined.
transaction!(stop_one),
),
}
}
// Helper to run all standalone tests.
async fn run_standalone_test(test_type: TestType) {
// Start the mock server.
let server = MockServer::start();
// Setup the mock endpoints needed for this test.
let mock_endpoints = setup_mock_server_endpoints(&server);
// Build common configuration.
let configuration = common_build_configuration(&server, None, None);
// Get the scenario, start and stop transactions to build a load test.
let (scenario, start_transaction, stop_transaction) = get_transactions(&test_type);
let goose_attack = match test_type {
TestType::NotSequenced | TestType::SequencedRoundRobin => {
// Set up the common base configuration.
crate::GooseAttack::initialize_with_config(configuration)
.unwrap()
.register_scenario(scenario)
.test_start(start_transaction)
.test_stop(stop_transaction)
.set_scheduler(GooseScheduler::RoundRobin)
}
TestType::SequencedSerial => {
// Set up the common base configuration.
crate::GooseAttack::initialize_with_config(configuration)
.unwrap()
.register_scenario(scenario)
.test_start(start_transaction)
.test_stop(stop_transaction)
.set_scheduler(GooseScheduler::Serial)
}
};
// Run the Goose Attack.
common::run_load_test(goose_attack, None).await;
// Confirm the load test ran correctly.
validate_test(&test_type, &mock_endpoints);
}
// Helper to run all gaggle tests.
async fn run_gaggle_test(test_type: TestType) {
// Start the mock server.
let server = MockServer::start();
// Setup the mock endpoints needed for this test.
let mock_endpoints = setup_mock_server_endpoints(&server);
// Build common configuration.
let worker_configuration = common_build_configuration(&server, Some(true), None);
// Get the scenario, start and stop transactions to build a load test.
let (scenario, start_transaction, stop_transaction) = get_transactions(&test_type);
// Workers launched in own threads, store thread handles.
let worker_handles = match test_type {
TestType::NotSequenced | TestType::SequencedRoundRobin => {
// Set up the common base configuration.
common::launch_gaggle_workers(EXPECT_WORKERS, || {
crate::GooseAttack::initialize_with_config(worker_configuration.clone())
.unwrap()
.register_scenario(scenario.clone())
.test_start(start_transaction.clone())
.test_stop(stop_transaction.clone())
// Unnecessary as this is the default.
.set_scheduler(GooseScheduler::RoundRobin)
})
}
TestType::SequencedSerial => common::launch_gaggle_workers(EXPECT_WORKERS, || {
crate::GooseAttack::initialize_with_config(worker_configuration.clone())
.unwrap()
.register_scenario(scenario.clone())
.test_start(start_transaction.clone())
.test_stop(stop_transaction.clone())
.set_scheduler(GooseScheduler::Serial)
}),
};
// Build Manager configuration.
let manager_configuration = common_build_configuration(&server, None, Some(EXPECT_WORKERS));
let manager_goose_attack = match test_type {
TestType::NotSequenced | TestType::SequencedRoundRobin => {
// Set up the common base configuration.
crate::GooseAttack::initialize_with_config(manager_configuration)
.unwrap()
.register_scenario(scenario)
.test_start(start_transaction)
.test_stop(stop_transaction)
// Unnecessary as this is the default.
.set_scheduler(GooseScheduler::RoundRobin)
}
TestType::SequencedSerial => {
// Set up the common base configuration.
crate::GooseAttack::initialize_with_config(manager_configuration)
.unwrap()
.register_scenario(scenario)
.test_start(start_transaction)
.test_stop(stop_transaction)
.set_scheduler(GooseScheduler::Serial)
}
};
// Run the Goose Attack.
common::run_load_test(manager_goose_attack, Some(worker_handles)).await;
// Confirm the load test ran correctly.
validate_test(&test_type, &mock_endpoints);
}
#[tokio::test]
// Load test with multiple transactions and no sequences defined.
async fn test_not_sequenced() {
run_standalone_test(TestType::NotSequenced).await;
}
#[ignore]
#[tokio::test(flavor = "multi_thread", worker_threads = 8)]
#[serial]
// Load test with multiple transactions and no sequences defined, in Gaggle mode.
async fn test_not_sequenced_gaggle() {
run_gaggle_test(TestType::NotSequenced).await;
}
#[tokio::test]
// Load test with multiple transactions and sequences defined, using the
// round robin scheduler.
async fn test_sequenced_round_robin() {
run_standalone_test(TestType::SequencedRoundRobin).await;
}
#[tokio::test]
// Load test with multiple transactions and sequences defined, using the
// sequential scheduler.
async fn test_sequenced_sequential() {
run_standalone_test(TestType::SequencedSerial).await;
}
#[ignore]
#[tokio::test(flavor = "multi_thread", worker_threads = 8)]
#[serial]
// Load test with multiple transactions and sequences defined, using the
// round robin scheduler, in Gaggle mode.
async fn test_sequenced_round_robin_gaggle() {
run_gaggle_test(TestType::SequencedRoundRobin).await;
}
#[ignore]
#[tokio::test(flavor = "multi_thread", worker_threads = 8)]
#[serial]
// Load test with multiple transactions and sequences defined, using the
// sequential scheduler, in Gaggle mode.
async fn test_sequenced_sequential_gaggle() {
run_gaggle_test(TestType::SequencedSerial).await;
}