2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-23 10:39:16 +00:00
bind/lib/isc/tests/counter_test.c

104 lines
1.9 KiB
C
Raw Normal View History

/*
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
*/
2018-10-23 21:16:16 -07:00
#if HAVE_CMOCKA
#include <sched.h> /* IWYU pragma: keep */
#include <setjmp.h>
2018-10-23 21:16:16 -07:00
#include <stdarg.h>
#include <stddef.h>
#include <stdlib.h>
2018-10-23 21:16:16 -07:00
#include <string.h>
2018-10-23 21:16:16 -07:00
#define UNIT_TESTING
#include <cmocka.h>
#include <isc/counter.h>
#include <isc/result.h>
2018-10-23 21:16:16 -07:00
#include <isc/util.h>
#include "isctest.h"
2018-10-23 21:16:16 -07:00
static int
2020-02-13 14:44:37 -08:00
_setup(void **state) {
2018-10-23 21:16:16 -07:00
isc_result_t result;
UNUSED(state);
result = isc_test_begin(NULL, true, 0);
assert_int_equal(result, ISC_R_SUCCESS);
return (0);
}
2018-10-23 21:16:16 -07:00
static int
2020-02-13 14:44:37 -08:00
_teardown(void **state) {
2018-10-23 21:16:16 -07:00
UNUSED(state);
isc_test_end();
return (0);
}
/* test isc_counter object */
static void
2020-02-13 14:44:37 -08:00
isc_counter_test(void **state) {
isc_result_t result;
isc_counter_t *counter = NULL;
2020-02-13 14:44:37 -08:00
int i;
2018-10-23 21:16:16 -07:00
UNUSED(state);
result = isc_counter_create(test_mctx, 0, &counter);
2018-10-23 21:16:16 -07:00
assert_int_equal(result, ISC_R_SUCCESS);
for (i = 0; i < 10; i++) {
result = isc_counter_increment(counter);
2018-10-23 21:16:16 -07:00
assert_int_equal(result, ISC_R_SUCCESS);
}
2018-10-23 21:16:16 -07:00
assert_int_equal(isc_counter_used(counter), 10);
isc_counter_setlimit(counter, 15);
for (i = 0; i < 10; i++) {
result = isc_counter_increment(counter);
2018-10-23 21:16:16 -07:00
if (result != ISC_R_SUCCESS) {
break;
2018-10-23 21:16:16 -07:00
}
}
2018-10-23 21:16:16 -07:00
assert_int_equal(isc_counter_used(counter), 15);
isc_counter_detach(&counter);
}
2018-10-23 21:16:16 -07:00
int
2020-02-13 14:44:37 -08:00
main(void) {
2018-10-23 21:16:16 -07:00
const struct CMUnitTest tests[] = {
cmocka_unit_test_setup_teardown(isc_counter_test, _setup,
_teardown),
2018-10-23 21:16:16 -07:00
};
return (cmocka_run_group_tests(tests, NULL, NULL));
}
#else /* HAVE_CMOCKA */
#include <stdio.h>
int
2020-02-13 14:44:37 -08:00
main(void) {
2018-10-23 21:16:16 -07:00
printf("1..0 # Skipped: cmocka not available\n");
return (SKIPPED_TEST_EXIT_CODE);
}
#endif /* if HAVE_CMOCKA */