2012-09-12 15:08:19 -05:00
|
|
|
/*
|
2018-02-23 09:53:12 +01:00
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2012-09-12 15:08:19 -05:00
|
|
|
*
|
2016-06-27 14:56:38 +10:00
|
|
|
* 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/.
|
2018-02-23 09:53:12 +01:00
|
|
|
*
|
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
|
|
* information regarding copyright ownership.
|
2012-09-12 15:08:19 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*! \file */
|
|
|
|
|
2018-10-23 21:20:45 -07:00
|
|
|
#if HAVE_CMOCKA
|
2012-09-12 15:08:19 -05:00
|
|
|
|
2018-10-23 21:20:45 -07:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2018-03-28 14:19:37 +02:00
|
|
|
#include <inttypes.h>
|
2012-09-12 15:08:19 -05:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
2018-10-23 21:20:45 -07:00
|
|
|
#define UNIT_TESTING
|
|
|
|
#include <cmocka.h>
|
|
|
|
|
2012-09-12 15:08:19 -05:00
|
|
|
#include <isc/parseint.h>
|
2018-10-23 21:20:45 -07:00
|
|
|
#include <isc/util.h>
|
2012-09-12 15:08:19 -05:00
|
|
|
|
|
|
|
#include "isctest.h"
|
|
|
|
|
2018-10-23 21:20:45 -07:00
|
|
|
static int
|
|
|
|
_setup(void **state) {
|
|
|
|
isc_result_t result;
|
2012-09-12 15:08:19 -05:00
|
|
|
|
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);
|
2012-09-12 15:08:19 -05:00
|
|
|
}
|
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) {
|
2012-09-12 15:08:19 -05:00
|
|
|
isc_result_t result;
|
2018-03-28 14:19:37 +02:00
|
|
|
uint32_t output;
|
2012-09-12 15:08:19 -05:00
|
|
|
|
2018-10-23 21:20:45 -07:00
|
|
|
UNUSED(state);
|
2012-09-12 15:08:19 -05:00
|
|
|
|
|
|
|
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);
|
2012-09-12 15:08:19 -05:00
|
|
|
|
|
|
|
result = isc_parse_uint32(&output, "123456789012345", 10);
|
2018-10-23 21:20:45 -07:00
|
|
|
assert_int_equal(ISC_R_RANGE, result);
|
2012-09-12 15:08:19 -05:00
|
|
|
|
|
|
|
result = isc_parse_uint32(&output, "12345678901234567890", 10);
|
2018-10-23 21:20:45 -07:00
|
|
|
assert_int_equal(ISC_R_RANGE, result);
|
|
|
|
}
|
2012-09-12 15:08:19 -05:00
|
|
|
|
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));
|
2012-09-12 15:08:19 -05:00
|
|
|
}
|
|
|
|
|
2018-10-23 21:20:45 -07:00
|
|
|
#else /* HAVE_CMOCKA */
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2012-09-12 15:08:19 -05:00
|
|
|
|
2018-10-23 21:20:45 -07:00
|
|
|
int
|
|
|
|
main(void) {
|
|
|
|
printf("1..0 # Skipped: cmocka not available\n");
|
|
|
|
return (0);
|
2012-09-12 15:08:19 -05:00
|
|
|
}
|
|
|
|
|
2018-10-23 21:20:45 -07:00
|
|
|
#endif
|