2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 18:19:42 +00:00
bind/lib/isc/tests/parse_test.c

95 lines
1.8 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 http://mozilla.org/MPL/2.0/.
*
* See the COPYRIGHT file distributed with this work for additional
* information regarding copyright ownership.
*/
/*! \file */
2018-10-23 21:20:45 -07:00
#if HAVE_CMOCKA
2018-10-23 21:20:45 -07:00
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <stdlib.h>
#include <string.h>
#include <inttypes.h>
#include <unistd.h>
#include <time.h>
2018-10-23 21:20:45 -07:00
#define UNIT_TESTING
#include <cmocka.h>
#include <isc/parseint.h>
2018-10-23 21:20:45 -07:00
#include <isc/util.h>
#include "isctest.h"
2018-10-23 21:20:45 -07:00
static int
_setup(void **state) {
isc_result_t result;
2018-10-23 21:20:45 -07:00
UNUSED(state);
result = isc_test_begin(NULL, true, 0);
assert_int_equal(result, ISC_R_SUCCESS);
return (0);
}
2018-10-23 21:20:45 -07:00
static int
_teardown(void **state) {
UNUSED(state);
isc_test_end();
return (0);
}
/* Test for 32 bit overflow on 64 bit machines in isc_parse_uint32 */
static void
parse_overflow(void **state) {
isc_result_t result;
uint32_t output;
2018-10-23 21:20:45 -07:00
UNUSED(state);
result = isc_parse_uint32(&output, "1234567890", 10);
2018-10-23 21:20:45 -07:00
assert_int_equal(ISC_R_SUCCESS, result);
assert_int_equal(1234567890, output);
result = isc_parse_uint32(&output, "123456789012345", 10);
2018-10-23 21:20:45 -07:00
assert_int_equal(ISC_R_RANGE, result);
result = isc_parse_uint32(&output, "12345678901234567890", 10);
2018-10-23 21:20:45 -07:00
assert_int_equal(ISC_R_RANGE, result);
}
2018-10-23 21:20:45 -07:00
int
main(void) {
const struct CMUnitTest tests[] = {
cmocka_unit_test_setup_teardown(parse_overflow,
_setup, _teardown),
};
return (cmocka_run_group_tests(tests, NULL, NULL));
}
2018-10-23 21:20:45 -07:00
#else /* HAVE_CMOCKA */
#include <stdio.h>
2018-10-23 21:20:45 -07:00
int
main(void) {
printf("1..0 # Skipped: cmocka not available\n");
return (0);
}
2018-10-23 21:20:45 -07:00
#endif