2 * Throttle infrastructure tests
4 * Copyright Nodalink, EURL. 2013-2014
5 * Copyright Igalia, S.L. 2015
8 * BenoƮt Canet <benoit.canet@nodalink.com>
9 * Alberto Garcia <berto@igalia.com>
11 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
12 * See the COPYING.LIB file in the top-level directory.
17 #include "block/aio.h"
18 #include "qemu/throttle.h"
19 #include "qemu/error-report.h"
20 #include "block/throttle-groups.h"
22 static AioContext
*ctx
;
23 static LeakyBucket bkt
;
24 static ThrottleConfig cfg
;
25 static ThrottleState ts
;
26 static ThrottleTimers tt
;
29 static bool double_cmp(double x
, double y
)
31 return fabsl(x
- y
) < 1e-6;
34 /* tests for single bucket operations */
35 static void test_leak_bucket(void)
37 /* set initial value */
42 /* leak an op work of time */
43 throttle_leak_bucket(&bkt
, NANOSECONDS_PER_SECOND
/ 150);
44 g_assert(bkt
.avg
== 150);
45 g_assert(bkt
.max
== 15);
46 g_assert(double_cmp(bkt
.level
, 0.5));
48 /* leak again emptying the bucket */
49 throttle_leak_bucket(&bkt
, NANOSECONDS_PER_SECOND
/ 150);
50 g_assert(bkt
.avg
== 150);
51 g_assert(bkt
.max
== 15);
52 g_assert(double_cmp(bkt
.level
, 0));
54 /* check that the bucket level won't go lower */
55 throttle_leak_bucket(&bkt
, NANOSECONDS_PER_SECOND
/ 150);
56 g_assert(bkt
.avg
== 150);
57 g_assert(bkt
.max
== 15);
58 g_assert(double_cmp(bkt
.level
, 0));
61 static void test_compute_wait(void)
66 /* no operation limit set */
70 wait
= throttle_compute_wait(&bkt
);
77 wait
= throttle_compute_wait(&bkt
);
80 /* below zero delta */
84 wait
= throttle_compute_wait(&bkt
);
87 /* half an operation above max */
91 wait
= throttle_compute_wait(&bkt
);
92 /* time required to do half an operation */
93 result
= (int64_t) NANOSECONDS_PER_SECOND
/ 150 / 2;
94 g_assert(wait
== result
);
97 /* functions to test ThrottleState initialization/destroy methods */
98 static void read_timer_cb(void *opaque
)
102 static void write_timer_cb(void *opaque
)
106 static void test_init(void)
110 /* fill the structures with crap */
111 memset(&ts
, 1, sizeof(ts
));
112 memset(&tt
, 1, sizeof(tt
));
114 /* init structures */
116 throttle_timers_init(&tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
117 read_timer_cb
, write_timer_cb
, &ts
);
119 /* check initialized fields */
120 g_assert(tt
.clock_type
== QEMU_CLOCK_VIRTUAL
);
121 g_assert(tt
.timers
[0]);
122 g_assert(tt
.timers
[1]);
124 /* check other fields where cleared */
125 g_assert(!ts
.previous_leak
);
126 g_assert(!ts
.cfg
.op_size
);
127 for (i
= 0; i
< BUCKETS_COUNT
; i
++) {
128 g_assert(!ts
.cfg
.buckets
[i
].avg
);
129 g_assert(!ts
.cfg
.buckets
[i
].max
);
130 g_assert(!ts
.cfg
.buckets
[i
].level
);
133 throttle_timers_destroy(&tt
);
136 static void test_destroy(void)
140 throttle_timers_init(&tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
141 read_timer_cb
, write_timer_cb
, &ts
);
142 throttle_timers_destroy(&tt
);
143 for (i
= 0; i
< 2; i
++) {
144 g_assert(!tt
.timers
[i
]);
148 /* function to test throttle_config and throttle_get_config */
149 static void test_config_functions(void)
152 ThrottleConfig orig_cfg
, final_cfg
;
154 orig_cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
= 153;
155 orig_cfg
.buckets
[THROTTLE_BPS_READ
].avg
= 56;
156 orig_cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
= 1;
158 orig_cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
= 150;
159 orig_cfg
.buckets
[THROTTLE_OPS_READ
].avg
= 69;
160 orig_cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
= 23;
162 orig_cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
= 0; /* should be corrected */
163 orig_cfg
.buckets
[THROTTLE_BPS_READ
].max
= 1; /* should not be corrected */
164 orig_cfg
.buckets
[THROTTLE_BPS_WRITE
].max
= 120;
166 orig_cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
= 150;
167 orig_cfg
.buckets
[THROTTLE_OPS_READ
].max
= 400;
168 orig_cfg
.buckets
[THROTTLE_OPS_WRITE
].max
= 500;
170 orig_cfg
.buckets
[THROTTLE_BPS_TOTAL
].level
= 45;
171 orig_cfg
.buckets
[THROTTLE_BPS_READ
].level
= 65;
172 orig_cfg
.buckets
[THROTTLE_BPS_WRITE
].level
= 23;
174 orig_cfg
.buckets
[THROTTLE_OPS_TOTAL
].level
= 1;
175 orig_cfg
.buckets
[THROTTLE_OPS_READ
].level
= 90;
176 orig_cfg
.buckets
[THROTTLE_OPS_WRITE
].level
= 75;
178 orig_cfg
.op_size
= 1;
181 throttle_timers_init(&tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
182 read_timer_cb
, write_timer_cb
, &ts
);
183 /* structure reset by throttle_init previous_leak should be null */
184 g_assert(!ts
.previous_leak
);
185 throttle_config(&ts
, &tt
, &orig_cfg
);
187 /* has previous leak been initialized by throttle_config ? */
188 g_assert(ts
.previous_leak
);
190 /* get back the fixed configuration */
191 throttle_get_config(&ts
, &final_cfg
);
193 throttle_timers_destroy(&tt
);
195 g_assert(final_cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
== 153);
196 g_assert(final_cfg
.buckets
[THROTTLE_BPS_READ
].avg
== 56);
197 g_assert(final_cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
== 1);
199 g_assert(final_cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
== 150);
200 g_assert(final_cfg
.buckets
[THROTTLE_OPS_READ
].avg
== 69);
201 g_assert(final_cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
== 23);
203 g_assert(final_cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
== 15.3);/* fixed */
204 g_assert(final_cfg
.buckets
[THROTTLE_BPS_READ
].max
== 1); /* not fixed */
205 g_assert(final_cfg
.buckets
[THROTTLE_BPS_WRITE
].max
== 120);
207 g_assert(final_cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
== 150);
208 g_assert(final_cfg
.buckets
[THROTTLE_OPS_READ
].max
== 400);
209 g_assert(final_cfg
.buckets
[THROTTLE_OPS_WRITE
].max
== 500);
211 g_assert(final_cfg
.op_size
== 1);
213 /* check bucket have been cleared */
214 for (i
= 0; i
< BUCKETS_COUNT
; i
++) {
215 g_assert(!final_cfg
.buckets
[i
].level
);
219 /* functions to test is throttle is enabled by a config */
220 static void set_cfg_value(bool is_max
, int index
, int value
)
223 cfg
.buckets
[index
].max
= value
;
225 cfg
.buckets
[index
].avg
= value
;
229 static void test_enabled(void)
233 memset(&cfg
, 0, sizeof(cfg
));
234 g_assert(!throttle_enabled(&cfg
));
236 for (i
= 0; i
< BUCKETS_COUNT
; i
++) {
237 memset(&cfg
, 0, sizeof(cfg
));
238 set_cfg_value(false, i
, 150);
239 g_assert(throttle_enabled(&cfg
));
242 for (i
= 0; i
< BUCKETS_COUNT
; i
++) {
243 memset(&cfg
, 0, sizeof(cfg
));
244 set_cfg_value(false, i
, -150);
245 g_assert(!throttle_enabled(&cfg
));
249 /* tests functions for throttle_conflicting */
251 static void test_conflicts_for_one_set(bool is_max
,
256 memset(&cfg
, 0, sizeof(cfg
));
257 g_assert(!throttle_conflicting(&cfg
));
259 set_cfg_value(is_max
, total
, 1);
260 set_cfg_value(is_max
, read
, 1);
261 g_assert(throttle_conflicting(&cfg
));
263 memset(&cfg
, 0, sizeof(cfg
));
264 set_cfg_value(is_max
, total
, 1);
265 set_cfg_value(is_max
, write
, 1);
266 g_assert(throttle_conflicting(&cfg
));
268 memset(&cfg
, 0, sizeof(cfg
));
269 set_cfg_value(is_max
, total
, 1);
270 set_cfg_value(is_max
, read
, 1);
271 set_cfg_value(is_max
, write
, 1);
272 g_assert(throttle_conflicting(&cfg
));
274 memset(&cfg
, 0, sizeof(cfg
));
275 set_cfg_value(is_max
, total
, 1);
276 g_assert(!throttle_conflicting(&cfg
));
278 memset(&cfg
, 0, sizeof(cfg
));
279 set_cfg_value(is_max
, read
, 1);
280 set_cfg_value(is_max
, write
, 1);
281 g_assert(!throttle_conflicting(&cfg
));
284 static void test_conflicting_config(void)
286 /* bps average conflicts */
287 test_conflicts_for_one_set(false,
292 /* ops average conflicts */
293 test_conflicts_for_one_set(false,
298 /* bps average conflicts */
299 test_conflicts_for_one_set(true,
303 /* ops average conflicts */
304 test_conflicts_for_one_set(true,
309 /* functions to test the throttle_is_valid function */
310 static void test_is_valid_for_value(int value
, bool should_be_valid
)
313 for (is_max
= 0; is_max
< 2; is_max
++) {
314 for (index
= 0; index
< BUCKETS_COUNT
; index
++) {
315 memset(&cfg
, 0, sizeof(cfg
));
316 set_cfg_value(is_max
, index
, value
);
317 g_assert(throttle_is_valid(&cfg
) == should_be_valid
);
322 static void test_is_valid(void)
324 /* negative number are invalid */
325 test_is_valid_for_value(-1, false);
326 /* zero are valids */
327 test_is_valid_for_value(0, true);
328 /* positives numers are valids */
329 test_is_valid_for_value(1, true);
332 static void test_have_timer(void)
334 /* zero structures */
335 memset(&ts
, 0, sizeof(ts
));
336 memset(&tt
, 0, sizeof(tt
));
338 /* no timer set should return false */
339 g_assert(!throttle_timers_are_initialized(&tt
));
341 /* init structures */
343 throttle_timers_init(&tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
344 read_timer_cb
, write_timer_cb
, &ts
);
346 /* timer set by init should return true */
347 g_assert(throttle_timers_are_initialized(&tt
));
349 throttle_timers_destroy(&tt
);
352 static void test_detach_attach(void)
354 /* zero structures */
355 memset(&ts
, 0, sizeof(ts
));
356 memset(&tt
, 0, sizeof(tt
));
358 /* init the structure */
360 throttle_timers_init(&tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
361 read_timer_cb
, write_timer_cb
, &ts
);
363 /* timer set by init should return true */
364 g_assert(throttle_timers_are_initialized(&tt
));
366 /* timer should no longer exist after detaching */
367 throttle_timers_detach_aio_context(&tt
);
368 g_assert(!throttle_timers_are_initialized(&tt
));
370 /* timer should exist again after attaching */
371 throttle_timers_attach_aio_context(&tt
, ctx
);
372 g_assert(throttle_timers_are_initialized(&tt
));
374 throttle_timers_destroy(&tt
);
377 static bool do_test_accounting(bool is_ops
, /* are we testing bps or ops */
378 int size
, /* size of the operation to do */
379 double avg
, /* io limit */
380 uint64_t op_size
, /* ideal size of an io */
385 BucketType to_test
[2][3] = { { THROTTLE_BPS_TOTAL
,
387 THROTTLE_BPS_WRITE
, },
388 { THROTTLE_OPS_TOTAL
,
390 THROTTLE_OPS_WRITE
, } };
395 for (i
= 0; i
< 3; i
++) {
396 BucketType index
= to_test
[is_ops
][i
];
397 cfg
.buckets
[index
].avg
= avg
;
400 cfg
.op_size
= op_size
;
403 throttle_timers_init(&tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
404 read_timer_cb
, write_timer_cb
, &ts
);
405 throttle_config(&ts
, &tt
, &cfg
);
408 throttle_account(&ts
, false, size
);
409 /* account a write */
410 throttle_account(&ts
, true, size
);
412 /* check total result */
413 index
= to_test
[is_ops
][0];
414 if (!double_cmp(ts
.cfg
.buckets
[index
].level
, total_result
)) {
418 /* check read result */
419 index
= to_test
[is_ops
][1];
420 if (!double_cmp(ts
.cfg
.buckets
[index
].level
, read_result
)) {
424 /* check write result */
425 index
= to_test
[is_ops
][2];
426 if (!double_cmp(ts
.cfg
.buckets
[index
].level
, write_result
)) {
430 throttle_timers_destroy(&tt
);
435 static void test_accounting(void)
440 g_assert(do_test_accounting(false,
449 g_assert(do_test_accounting(false,
457 /* op of size 2 and orthogonal parameter change */
458 g_assert(do_test_accounting(false,
470 g_assert(do_test_accounting(true,
479 g_assert(do_test_accounting(true,
487 /* jumbo op accounting fragmentation : size 64 with op size of 13 units */
488 g_assert(do_test_accounting(true,
496 /* same with orthogonal parameters changes */
497 g_assert(do_test_accounting(true,
506 static void test_groups(void)
508 ThrottleConfig cfg1
, cfg2
;
509 BlockDriverState
*bdrv1
, *bdrv2
, *bdrv3
;
515 g_assert(bdrv1
->throttle_state
== NULL
);
516 g_assert(bdrv2
->throttle_state
== NULL
);
517 g_assert(bdrv3
->throttle_state
== NULL
);
519 throttle_group_register_bs(bdrv1
, "bar");
520 throttle_group_register_bs(bdrv2
, "foo");
521 throttle_group_register_bs(bdrv3
, "bar");
523 g_assert(bdrv1
->throttle_state
!= NULL
);
524 g_assert(bdrv2
->throttle_state
!= NULL
);
525 g_assert(bdrv3
->throttle_state
!= NULL
);
527 g_assert(!strcmp(throttle_group_get_name(bdrv1
), "bar"));
528 g_assert(!strcmp(throttle_group_get_name(bdrv2
), "foo"));
529 g_assert(bdrv1
->throttle_state
== bdrv3
->throttle_state
);
531 /* Setting the config of a group member affects the whole group */
532 memset(&cfg1
, 0, sizeof(cfg1
));
533 cfg1
.buckets
[THROTTLE_BPS_READ
].avg
= 500000;
534 cfg1
.buckets
[THROTTLE_BPS_WRITE
].avg
= 285000;
535 cfg1
.buckets
[THROTTLE_OPS_READ
].avg
= 20000;
536 cfg1
.buckets
[THROTTLE_OPS_WRITE
].avg
= 12000;
537 throttle_group_config(bdrv1
, &cfg1
);
539 throttle_group_get_config(bdrv1
, &cfg1
);
540 throttle_group_get_config(bdrv3
, &cfg2
);
541 g_assert(!memcmp(&cfg1
, &cfg2
, sizeof(cfg1
)));
543 cfg2
.buckets
[THROTTLE_BPS_READ
].avg
= 4547;
544 cfg2
.buckets
[THROTTLE_BPS_WRITE
].avg
= 1349;
545 cfg2
.buckets
[THROTTLE_OPS_READ
].avg
= 123;
546 cfg2
.buckets
[THROTTLE_OPS_WRITE
].avg
= 86;
547 throttle_group_config(bdrv3
, &cfg1
);
549 throttle_group_get_config(bdrv1
, &cfg1
);
550 throttle_group_get_config(bdrv3
, &cfg2
);
551 g_assert(!memcmp(&cfg1
, &cfg2
, sizeof(cfg1
)));
553 throttle_group_unregister_bs(bdrv1
);
554 throttle_group_unregister_bs(bdrv2
);
555 throttle_group_unregister_bs(bdrv3
);
557 g_assert(bdrv1
->throttle_state
== NULL
);
558 g_assert(bdrv2
->throttle_state
== NULL
);
559 g_assert(bdrv3
->throttle_state
== NULL
);
562 int main(int argc
, char **argv
)
564 Error
*local_error
= NULL
;
566 qemu_init_main_loop(&local_error
);
567 ctx
= qemu_get_aio_context();
570 error_report("Failed to create AIO Context: '%s'",
571 local_error
? error_get_pretty(local_error
) :
572 "Failed to initialize the QEMU main loop");
574 error_free(local_error
);
581 do {} while (g_main_context_iteration(NULL
, false));
583 /* tests in the same order as the header function declarations */
584 g_test_init(&argc
, &argv
, NULL
);
585 g_test_add_func("/throttle/leak_bucket", test_leak_bucket
);
586 g_test_add_func("/throttle/compute_wait", test_compute_wait
);
587 g_test_add_func("/throttle/init", test_init
);
588 g_test_add_func("/throttle/destroy", test_destroy
);
589 g_test_add_func("/throttle/have_timer", test_have_timer
);
590 g_test_add_func("/throttle/detach_attach", test_detach_attach
);
591 g_test_add_func("/throttle/config/enabled", test_enabled
);
592 g_test_add_func("/throttle/config/conflicting", test_conflicting_config
);
593 g_test_add_func("/throttle/config/is_valid", test_is_valid
);
594 g_test_add_func("/throttle/config_functions", test_config_functions
);
595 g_test_add_func("/throttle/accounting", test_accounting
);
596 g_test_add_func("/throttle/groups", test_groups
);