]> git.proxmox.com Git - mirror_qemu.git/blob - tests/test-throttle.c
throttle: Make LeakyBucket.avg and LeakyBucket.max integer types
[mirror_qemu.git] / tests / test-throttle.c
1 /*
2 * Throttle infrastructure tests
3 *
4 * Copyright Nodalink, EURL. 2013-2014
5 * Copyright Igalia, S.L. 2015
6 *
7 * Authors:
8 * BenoƮt Canet <benoit.canet@nodalink.com>
9 * Alberto Garcia <berto@igalia.com>
10 *
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.
13 */
14
15 #include "qemu/osdep.h"
16 #include <math.h>
17 #include "block/aio.h"
18 #include "qapi/error.h"
19 #include "qemu/throttle.h"
20 #include "qemu/error-report.h"
21 #include "block/throttle-groups.h"
22 #include "sysemu/block-backend.h"
23
24 static AioContext *ctx;
25 static LeakyBucket bkt;
26 static ThrottleConfig cfg;
27 static ThrottleState ts;
28 static ThrottleTimers tt;
29
30 /* useful function */
31 static bool double_cmp(double x, double y)
32 {
33 return fabsl(x - y) < 1e-6;
34 }
35
36 /* tests for single bucket operations */
37 static void test_leak_bucket(void)
38 {
39 throttle_config_init(&cfg);
40 bkt = cfg.buckets[THROTTLE_BPS_TOTAL];
41
42 /* set initial value */
43 bkt.avg = 150;
44 bkt.max = 15;
45 bkt.level = 1.5;
46
47 /* leak an op work of time */
48 throttle_leak_bucket(&bkt, NANOSECONDS_PER_SECOND / 150);
49 g_assert(bkt.avg == 150);
50 g_assert(bkt.max == 15);
51 g_assert(double_cmp(bkt.level, 0.5));
52
53 /* leak again emptying the bucket */
54 throttle_leak_bucket(&bkt, NANOSECONDS_PER_SECOND / 150);
55 g_assert(bkt.avg == 150);
56 g_assert(bkt.max == 15);
57 g_assert(double_cmp(bkt.level, 0));
58
59 /* check that the bucket level won't go lower */
60 throttle_leak_bucket(&bkt, NANOSECONDS_PER_SECOND / 150);
61 g_assert(bkt.avg == 150);
62 g_assert(bkt.max == 15);
63 g_assert(double_cmp(bkt.level, 0));
64
65 /* check that burst_level leaks correctly */
66 bkt.burst_level = 6;
67 bkt.max = 250;
68 bkt.burst_length = 2; /* otherwise burst_level will not leak */
69 throttle_leak_bucket(&bkt, NANOSECONDS_PER_SECOND / 100);
70 g_assert(double_cmp(bkt.burst_level, 3.5));
71
72 throttle_leak_bucket(&bkt, NANOSECONDS_PER_SECOND / 100);
73 g_assert(double_cmp(bkt.burst_level, 1));
74
75 throttle_leak_bucket(&bkt, NANOSECONDS_PER_SECOND / 100);
76 g_assert(double_cmp(bkt.burst_level, 0));
77
78 throttle_leak_bucket(&bkt, NANOSECONDS_PER_SECOND / 100);
79 g_assert(double_cmp(bkt.burst_level, 0));
80 }
81
82 static void test_compute_wait(void)
83 {
84 unsigned i;
85 int64_t wait;
86 int64_t result;
87
88 throttle_config_init(&cfg);
89 bkt = cfg.buckets[THROTTLE_BPS_TOTAL];
90
91 /* no operation limit set */
92 bkt.avg = 0;
93 bkt.max = 15;
94 bkt.level = 1.5;
95 wait = throttle_compute_wait(&bkt);
96 g_assert(!wait);
97
98 /* zero delta */
99 bkt.avg = 150;
100 bkt.max = 15;
101 bkt.level = 15;
102 wait = throttle_compute_wait(&bkt);
103 g_assert(!wait);
104
105 /* below zero delta */
106 bkt.avg = 150;
107 bkt.max = 15;
108 bkt.level = 9;
109 wait = throttle_compute_wait(&bkt);
110 g_assert(!wait);
111
112 /* half an operation above max */
113 bkt.avg = 150;
114 bkt.max = 15;
115 bkt.level = 15.5;
116 wait = throttle_compute_wait(&bkt);
117 /* time required to do half an operation */
118 result = (int64_t) NANOSECONDS_PER_SECOND / 150 / 2;
119 g_assert(wait == result);
120
121 /* Perform I/O for 2.2 seconds at a rate of bkt.max */
122 bkt.burst_length = 2;
123 bkt.level = 0;
124 bkt.avg = 10;
125 bkt.max = 200;
126 for (i = 0; i < 22; i++) {
127 double units = bkt.max / 10;
128 bkt.level += units;
129 bkt.burst_level += units;
130 throttle_leak_bucket(&bkt, NANOSECONDS_PER_SECOND / 10);
131 wait = throttle_compute_wait(&bkt);
132 g_assert(double_cmp(bkt.burst_level, 0));
133 g_assert(double_cmp(bkt.level, (i + 1) * (bkt.max - bkt.avg) / 10));
134 /* We can do bursts for the 2 seconds we have configured in
135 * burst_length. We have 100 extra miliseconds of burst
136 * because bkt.level has been leaking during this time.
137 * After that, we have to wait. */
138 result = i < 21 ? 0 : 1.8 * NANOSECONDS_PER_SECOND;
139 g_assert(wait == result);
140 }
141 }
142
143 /* functions to test ThrottleState initialization/destroy methods */
144 static void read_timer_cb(void *opaque)
145 {
146 }
147
148 static void write_timer_cb(void *opaque)
149 {
150 }
151
152 static void test_init(void)
153 {
154 int i;
155
156 /* fill the structures with crap */
157 memset(&ts, 1, sizeof(ts));
158 memset(&tt, 1, sizeof(tt));
159
160 /* init structures */
161 throttle_init(&ts);
162 throttle_timers_init(&tt, ctx, QEMU_CLOCK_VIRTUAL,
163 read_timer_cb, write_timer_cb, &ts);
164
165 /* check initialized fields */
166 g_assert(tt.clock_type == QEMU_CLOCK_VIRTUAL);
167 g_assert(tt.timers[0]);
168 g_assert(tt.timers[1]);
169
170 /* check other fields where cleared */
171 g_assert(!ts.previous_leak);
172 g_assert(!ts.cfg.op_size);
173 for (i = 0; i < BUCKETS_COUNT; i++) {
174 g_assert(!ts.cfg.buckets[i].avg);
175 g_assert(!ts.cfg.buckets[i].max);
176 g_assert(!ts.cfg.buckets[i].level);
177 }
178
179 throttle_timers_destroy(&tt);
180 }
181
182 static void test_destroy(void)
183 {
184 int i;
185 throttle_init(&ts);
186 throttle_timers_init(&tt, ctx, QEMU_CLOCK_VIRTUAL,
187 read_timer_cb, write_timer_cb, &ts);
188 throttle_timers_destroy(&tt);
189 for (i = 0; i < 2; i++) {
190 g_assert(!tt.timers[i]);
191 }
192 }
193
194 /* function to test throttle_config and throttle_get_config */
195 static void test_config_functions(void)
196 {
197 int i;
198 ThrottleConfig orig_cfg, final_cfg;
199
200 orig_cfg.buckets[THROTTLE_BPS_TOTAL].avg = 153;
201 orig_cfg.buckets[THROTTLE_BPS_READ].avg = 56;
202 orig_cfg.buckets[THROTTLE_BPS_WRITE].avg = 1;
203
204 orig_cfg.buckets[THROTTLE_OPS_TOTAL].avg = 150;
205 orig_cfg.buckets[THROTTLE_OPS_READ].avg = 69;
206 orig_cfg.buckets[THROTTLE_OPS_WRITE].avg = 23;
207
208 orig_cfg.buckets[THROTTLE_BPS_TOTAL].max = 0;
209 orig_cfg.buckets[THROTTLE_BPS_READ].max = 56;
210 orig_cfg.buckets[THROTTLE_BPS_WRITE].max = 120;
211
212 orig_cfg.buckets[THROTTLE_OPS_TOTAL].max = 150;
213 orig_cfg.buckets[THROTTLE_OPS_READ].max = 400;
214 orig_cfg.buckets[THROTTLE_OPS_WRITE].max = 500;
215
216 orig_cfg.buckets[THROTTLE_BPS_TOTAL].level = 45;
217 orig_cfg.buckets[THROTTLE_BPS_READ].level = 65;
218 orig_cfg.buckets[THROTTLE_BPS_WRITE].level = 23;
219
220 orig_cfg.buckets[THROTTLE_OPS_TOTAL].level = 1;
221 orig_cfg.buckets[THROTTLE_OPS_READ].level = 90;
222 orig_cfg.buckets[THROTTLE_OPS_WRITE].level = 75;
223
224 orig_cfg.op_size = 1;
225
226 throttle_init(&ts);
227 throttle_timers_init(&tt, ctx, QEMU_CLOCK_VIRTUAL,
228 read_timer_cb, write_timer_cb, &ts);
229 /* structure reset by throttle_init previous_leak should be null */
230 g_assert(!ts.previous_leak);
231 throttle_config(&ts, QEMU_CLOCK_VIRTUAL, &orig_cfg);
232
233 /* has previous leak been initialized by throttle_config ? */
234 g_assert(ts.previous_leak);
235
236 /* get back the fixed configuration */
237 throttle_get_config(&ts, &final_cfg);
238
239 throttle_timers_destroy(&tt);
240
241 g_assert(final_cfg.buckets[THROTTLE_BPS_TOTAL].avg == 153);
242 g_assert(final_cfg.buckets[THROTTLE_BPS_READ].avg == 56);
243 g_assert(final_cfg.buckets[THROTTLE_BPS_WRITE].avg == 1);
244
245 g_assert(final_cfg.buckets[THROTTLE_OPS_TOTAL].avg == 150);
246 g_assert(final_cfg.buckets[THROTTLE_OPS_READ].avg == 69);
247 g_assert(final_cfg.buckets[THROTTLE_OPS_WRITE].avg == 23);
248
249 g_assert(final_cfg.buckets[THROTTLE_BPS_TOTAL].max == 0);
250 g_assert(final_cfg.buckets[THROTTLE_BPS_READ].max == 56);
251 g_assert(final_cfg.buckets[THROTTLE_BPS_WRITE].max == 120);
252
253 g_assert(final_cfg.buckets[THROTTLE_OPS_TOTAL].max == 150);
254 g_assert(final_cfg.buckets[THROTTLE_OPS_READ].max == 400);
255 g_assert(final_cfg.buckets[THROTTLE_OPS_WRITE].max == 500);
256
257 g_assert(final_cfg.op_size == 1);
258
259 /* check bucket have been cleared */
260 for (i = 0; i < BUCKETS_COUNT; i++) {
261 g_assert(!final_cfg.buckets[i].level);
262 }
263 }
264
265 /* functions to test is throttle is enabled by a config */
266 static void set_cfg_value(bool is_max, int index, int value)
267 {
268 if (is_max) {
269 cfg.buckets[index].max = value;
270 /* If max is set, avg should never be 0 */
271 cfg.buckets[index].avg = MAX(cfg.buckets[index].avg, 1);
272 } else {
273 cfg.buckets[index].avg = value;
274 }
275 }
276
277 static void test_enabled(void)
278 {
279 int i;
280
281 throttle_config_init(&cfg);
282 g_assert(!throttle_enabled(&cfg));
283
284 for (i = 0; i < BUCKETS_COUNT; i++) {
285 throttle_config_init(&cfg);
286 set_cfg_value(false, i, 150);
287 g_assert(throttle_is_valid(&cfg, NULL));
288 g_assert(throttle_enabled(&cfg));
289 }
290
291 for (i = 0; i < BUCKETS_COUNT; i++) {
292 throttle_config_init(&cfg);
293 set_cfg_value(false, i, -150);
294 g_assert(!throttle_is_valid(&cfg, NULL));
295 }
296 }
297
298 /* tests functions for throttle_conflicting */
299
300 static void test_conflicts_for_one_set(bool is_max,
301 int total,
302 int read,
303 int write)
304 {
305 throttle_config_init(&cfg);
306 g_assert(throttle_is_valid(&cfg, NULL));
307
308 set_cfg_value(is_max, total, 1);
309 set_cfg_value(is_max, read, 1);
310 g_assert(!throttle_is_valid(&cfg, NULL));
311
312 throttle_config_init(&cfg);
313 set_cfg_value(is_max, total, 1);
314 set_cfg_value(is_max, write, 1);
315 g_assert(!throttle_is_valid(&cfg, NULL));
316
317 throttle_config_init(&cfg);
318 set_cfg_value(is_max, total, 1);
319 set_cfg_value(is_max, read, 1);
320 set_cfg_value(is_max, write, 1);
321 g_assert(!throttle_is_valid(&cfg, NULL));
322
323 throttle_config_init(&cfg);
324 set_cfg_value(is_max, total, 1);
325 g_assert(throttle_is_valid(&cfg, NULL));
326
327 throttle_config_init(&cfg);
328 set_cfg_value(is_max, read, 1);
329 set_cfg_value(is_max, write, 1);
330 g_assert(throttle_is_valid(&cfg, NULL));
331 }
332
333 static void test_conflicting_config(void)
334 {
335 /* bps average conflicts */
336 test_conflicts_for_one_set(false,
337 THROTTLE_BPS_TOTAL,
338 THROTTLE_BPS_READ,
339 THROTTLE_BPS_WRITE);
340
341 /* ops average conflicts */
342 test_conflicts_for_one_set(false,
343 THROTTLE_OPS_TOTAL,
344 THROTTLE_OPS_READ,
345 THROTTLE_OPS_WRITE);
346
347 /* bps average conflicts */
348 test_conflicts_for_one_set(true,
349 THROTTLE_BPS_TOTAL,
350 THROTTLE_BPS_READ,
351 THROTTLE_BPS_WRITE);
352 /* ops average conflicts */
353 test_conflicts_for_one_set(true,
354 THROTTLE_OPS_TOTAL,
355 THROTTLE_OPS_READ,
356 THROTTLE_OPS_WRITE);
357 }
358 /* functions to test the throttle_is_valid function */
359 static void test_is_valid_for_value(int value, bool should_be_valid)
360 {
361 int is_max, index;
362 for (is_max = 0; is_max < 2; is_max++) {
363 for (index = 0; index < BUCKETS_COUNT; index++) {
364 throttle_config_init(&cfg);
365 set_cfg_value(is_max, index, value);
366 g_assert(throttle_is_valid(&cfg, NULL) == should_be_valid);
367 }
368 }
369 }
370
371 static void test_is_valid(void)
372 {
373 /* negative number are invalid */
374 test_is_valid_for_value(-1, false);
375 /* zero are valids */
376 test_is_valid_for_value(0, true);
377 /* positives numers are valids */
378 test_is_valid_for_value(1, true);
379 }
380
381 static void test_max_is_missing_limit(void)
382 {
383 int i;
384
385 for (i = 0; i < BUCKETS_COUNT; i++) {
386 throttle_config_init(&cfg);
387 cfg.buckets[i].max = 100;
388 cfg.buckets[i].avg = 0;
389 g_assert(!throttle_is_valid(&cfg, NULL));
390
391 cfg.buckets[i].max = 0;
392 cfg.buckets[i].avg = 0;
393 g_assert(throttle_is_valid(&cfg, NULL));
394
395 cfg.buckets[i].max = 0;
396 cfg.buckets[i].avg = 100;
397 g_assert(throttle_is_valid(&cfg, NULL));
398
399 cfg.buckets[i].max = 30;
400 cfg.buckets[i].avg = 100;
401 g_assert(!throttle_is_valid(&cfg, NULL));
402
403 cfg.buckets[i].max = 100;
404 cfg.buckets[i].avg = 100;
405 g_assert(throttle_is_valid(&cfg, NULL));
406 }
407 }
408
409 static void test_iops_size_is_missing_limit(void)
410 {
411 /* A total/read/write iops limit is required */
412 throttle_config_init(&cfg);
413 cfg.op_size = 4096;
414 g_assert(!throttle_is_valid(&cfg, NULL));
415 }
416
417 static void test_have_timer(void)
418 {
419 /* zero structures */
420 memset(&ts, 0, sizeof(ts));
421 memset(&tt, 0, sizeof(tt));
422
423 /* no timer set should return false */
424 g_assert(!throttle_timers_are_initialized(&tt));
425
426 /* init structures */
427 throttle_init(&ts);
428 throttle_timers_init(&tt, ctx, QEMU_CLOCK_VIRTUAL,
429 read_timer_cb, write_timer_cb, &ts);
430
431 /* timer set by init should return true */
432 g_assert(throttle_timers_are_initialized(&tt));
433
434 throttle_timers_destroy(&tt);
435 }
436
437 static void test_detach_attach(void)
438 {
439 /* zero structures */
440 memset(&ts, 0, sizeof(ts));
441 memset(&tt, 0, sizeof(tt));
442
443 /* init the structure */
444 throttle_init(&ts);
445 throttle_timers_init(&tt, ctx, QEMU_CLOCK_VIRTUAL,
446 read_timer_cb, write_timer_cb, &ts);
447
448 /* timer set by init should return true */
449 g_assert(throttle_timers_are_initialized(&tt));
450
451 /* timer should no longer exist after detaching */
452 throttle_timers_detach_aio_context(&tt);
453 g_assert(!throttle_timers_are_initialized(&tt));
454
455 /* timer should exist again after attaching */
456 throttle_timers_attach_aio_context(&tt, ctx);
457 g_assert(throttle_timers_are_initialized(&tt));
458
459 throttle_timers_destroy(&tt);
460 }
461
462 static bool do_test_accounting(bool is_ops, /* are we testing bps or ops */
463 int size, /* size of the operation to do */
464 double avg, /* io limit */
465 uint64_t op_size, /* ideal size of an io */
466 double total_result,
467 double read_result,
468 double write_result)
469 {
470 BucketType to_test[2][3] = { { THROTTLE_BPS_TOTAL,
471 THROTTLE_BPS_READ,
472 THROTTLE_BPS_WRITE, },
473 { THROTTLE_OPS_TOTAL,
474 THROTTLE_OPS_READ,
475 THROTTLE_OPS_WRITE, } };
476 ThrottleConfig cfg;
477 BucketType index;
478 int i;
479
480 for (i = 0; i < 3; i++) {
481 BucketType index = to_test[is_ops][i];
482 cfg.buckets[index].avg = avg;
483 }
484
485 cfg.op_size = op_size;
486
487 throttle_init(&ts);
488 throttle_timers_init(&tt, ctx, QEMU_CLOCK_VIRTUAL,
489 read_timer_cb, write_timer_cb, &ts);
490 throttle_config(&ts, QEMU_CLOCK_VIRTUAL, &cfg);
491
492 /* account a read */
493 throttle_account(&ts, false, size);
494 /* account a write */
495 throttle_account(&ts, true, size);
496
497 /* check total result */
498 index = to_test[is_ops][0];
499 if (!double_cmp(ts.cfg.buckets[index].level, total_result)) {
500 return false;
501 }
502
503 /* check read result */
504 index = to_test[is_ops][1];
505 if (!double_cmp(ts.cfg.buckets[index].level, read_result)) {
506 return false;
507 }
508
509 /* check write result */
510 index = to_test[is_ops][2];
511 if (!double_cmp(ts.cfg.buckets[index].level, write_result)) {
512 return false;
513 }
514
515 throttle_timers_destroy(&tt);
516
517 return true;
518 }
519
520 static void test_accounting(void)
521 {
522 /* tests for bps */
523
524 /* op of size 1 */
525 g_assert(do_test_accounting(false,
526 1 * 512,
527 150,
528 0,
529 1024,
530 512,
531 512));
532
533 /* op of size 2 */
534 g_assert(do_test_accounting(false,
535 2 * 512,
536 150,
537 0,
538 2048,
539 1024,
540 1024));
541
542 /* op of size 2 and orthogonal parameter change */
543 g_assert(do_test_accounting(false,
544 2 * 512,
545 150,
546 17,
547 2048,
548 1024,
549 1024));
550
551
552 /* tests for ops */
553
554 /* op of size 1 */
555 g_assert(do_test_accounting(true,
556 1 * 512,
557 150,
558 0,
559 2,
560 1,
561 1));
562
563 /* op of size 2 */
564 g_assert(do_test_accounting(true,
565 2 * 512,
566 150,
567 0,
568 2,
569 1,
570 1));
571
572 /* jumbo op accounting fragmentation : size 64 with op size of 13 units */
573 g_assert(do_test_accounting(true,
574 64 * 512,
575 150,
576 13 * 512,
577 (64.0 * 2) / 13,
578 (64.0 / 13),
579 (64.0 / 13)));
580
581 /* same with orthogonal parameters changes */
582 g_assert(do_test_accounting(true,
583 64 * 512,
584 300,
585 13 * 512,
586 (64.0 * 2) / 13,
587 (64.0 / 13),
588 (64.0 / 13)));
589 }
590
591 static void test_groups(void)
592 {
593 ThrottleConfig cfg1, cfg2;
594 BlockBackend *blk1, *blk2, *blk3;
595 BlockBackendPublic *blkp1, *blkp2, *blkp3;
596
597 /* No actual I/O is performed on these devices */
598 blk1 = blk_new(0, BLK_PERM_ALL);
599 blk2 = blk_new(0, BLK_PERM_ALL);
600 blk3 = blk_new(0, BLK_PERM_ALL);
601
602 blkp1 = blk_get_public(blk1);
603 blkp2 = blk_get_public(blk2);
604 blkp3 = blk_get_public(blk3);
605
606 g_assert(blkp1->throttle_state == NULL);
607 g_assert(blkp2->throttle_state == NULL);
608 g_assert(blkp3->throttle_state == NULL);
609
610 throttle_group_register_blk(blk1, "bar");
611 throttle_group_register_blk(blk2, "foo");
612 throttle_group_register_blk(blk3, "bar");
613
614 g_assert(blkp1->throttle_state != NULL);
615 g_assert(blkp2->throttle_state != NULL);
616 g_assert(blkp3->throttle_state != NULL);
617
618 g_assert(!strcmp(throttle_group_get_name(blk1), "bar"));
619 g_assert(!strcmp(throttle_group_get_name(blk2), "foo"));
620 g_assert(blkp1->throttle_state == blkp3->throttle_state);
621
622 /* Setting the config of a group member affects the whole group */
623 throttle_config_init(&cfg1);
624 cfg1.buckets[THROTTLE_BPS_READ].avg = 500000;
625 cfg1.buckets[THROTTLE_BPS_WRITE].avg = 285000;
626 cfg1.buckets[THROTTLE_OPS_READ].avg = 20000;
627 cfg1.buckets[THROTTLE_OPS_WRITE].avg = 12000;
628 throttle_group_config(blk1, &cfg1);
629
630 throttle_group_get_config(blk1, &cfg1);
631 throttle_group_get_config(blk3, &cfg2);
632 g_assert(!memcmp(&cfg1, &cfg2, sizeof(cfg1)));
633
634 cfg2.buckets[THROTTLE_BPS_READ].avg = 4547;
635 cfg2.buckets[THROTTLE_BPS_WRITE].avg = 1349;
636 cfg2.buckets[THROTTLE_OPS_READ].avg = 123;
637 cfg2.buckets[THROTTLE_OPS_WRITE].avg = 86;
638 throttle_group_config(blk3, &cfg1);
639
640 throttle_group_get_config(blk1, &cfg1);
641 throttle_group_get_config(blk3, &cfg2);
642 g_assert(!memcmp(&cfg1, &cfg2, sizeof(cfg1)));
643
644 throttle_group_unregister_blk(blk1);
645 throttle_group_unregister_blk(blk2);
646 throttle_group_unregister_blk(blk3);
647
648 g_assert(blkp1->throttle_state == NULL);
649 g_assert(blkp2->throttle_state == NULL);
650 g_assert(blkp3->throttle_state == NULL);
651 }
652
653 int main(int argc, char **argv)
654 {
655 qemu_init_main_loop(&error_fatal);
656 ctx = qemu_get_aio_context();
657 bdrv_init();
658
659 do {} while (g_main_context_iteration(NULL, false));
660
661 /* tests in the same order as the header function declarations */
662 g_test_init(&argc, &argv, NULL);
663 g_test_add_func("/throttle/leak_bucket", test_leak_bucket);
664 g_test_add_func("/throttle/compute_wait", test_compute_wait);
665 g_test_add_func("/throttle/init", test_init);
666 g_test_add_func("/throttle/destroy", test_destroy);
667 g_test_add_func("/throttle/have_timer", test_have_timer);
668 g_test_add_func("/throttle/detach_attach", test_detach_attach);
669 g_test_add_func("/throttle/config/enabled", test_enabled);
670 g_test_add_func("/throttle/config/conflicting", test_conflicting_config);
671 g_test_add_func("/throttle/config/is_valid", test_is_valid);
672 g_test_add_func("/throttle/config/max", test_max_is_missing_limit);
673 g_test_add_func("/throttle/config/iops_size",
674 test_iops_size_is_missing_limit);
675 g_test_add_func("/throttle/config_functions", test_config_functions);
676 g_test_add_func("/throttle/accounting", test_accounting);
677 g_test_add_func("/throttle/groups", test_groups);
678 return g_test_run();
679 }
680