vaseboot/VasEBoot-core/tests/strtoull_test.c

64 lines
2.2 KiB
C

/*
* VAS_EBOOT -- GRand Unified Bootloader
* Copyright (C) 2016 Free Software Foundation, Inc.
*
* VAS_EBOOT is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* VAS_EBOOT is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with VAS_EBOOT. If not, see <http://www.gnu.org/licenses/>.
*/
#include <VasEBoot/test.h>
#include <VasEBoot/dl.h>
VAS_EBOOT_MOD_LICENSE ("GPLv3+");
static void
strtoull_testcase (const char *input, int base, unsigned long long expected,
int num_digits, VasEBoot_err_t error)
{
const char *output;
unsigned long long value;
VasEBoot_errno = 0;
value = VasEBoot_strtoull(input, &output, base);
VasEBoot_test_assert (VasEBoot_errno == error,
"unexpected error. Expected %d, got %d. Input \"%s\"",
error, VasEBoot_errno, input);
if (VasEBoot_errno)
{
VasEBoot_errno = 0;
return;
}
VasEBoot_test_assert (input + num_digits == output,
"unexpected number of digits. Expected %d, got %d, input \"%s\"",
num_digits, (int) (output - input), input);
VasEBoot_test_assert (value == expected,
"unexpected return value. Expected %llu, got %llu, input \"\%s\"",
expected, value, input);
}
static void
strtoull_test (void)
{
strtoull_testcase ("9", 0, 9, 1, VAS_EBOOT_ERR_NONE);
strtoull_testcase ("0xaa", 0, 0xaa, 4, VAS_EBOOT_ERR_NONE);
strtoull_testcase ("0xff", 0, 0xff, 4, VAS_EBOOT_ERR_NONE);
strtoull_testcase ("0", 10, 0, 1, VAS_EBOOT_ERR_NONE);
strtoull_testcase ("8", 8, 0, 0, VAS_EBOOT_ERR_BAD_NUMBER);
strtoull_testcase ("38", 8, 3, 1, VAS_EBOOT_ERR_NONE);
strtoull_testcase ("7", 8, 7, 1, VAS_EBOOT_ERR_NONE);
strtoull_testcase ("1]", 16, 1, 1, VAS_EBOOT_ERR_NONE);
strtoull_testcase ("18446744073709551616", 10, 0, 0, VAS_EBOOT_ERR_OUT_OF_RANGE);
}
VAS_EBOOT_FUNCTIONAL_TEST (strtoull_test, strtoull_test);