summaryrefslogtreecommitdiffstats
path: root/libnetdata/tests/test_str2ld.c
blob: 01d8677f022a335ac1cfbf9fda44f1c1462d946e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// SPDX-License-Identifier: GPL-3.0-or-later

#include "../libnetdata.h"
#include "../required_dummies.h"
#include <setjmp.h>
#include <cmocka.h>

static void test_str2ld(void **state)
{
    (void)state;
    char *values[] = {
        "1.2345678",
        "-35.6",
        "0.00123",
        "23842384234234.2",
        ".1",
        "1.2e-10",
        "hello",
        "1wrong",
        "nan",
        "inf",
        NULL
    };

    for (int i = 0; values[i]; i++) {
        char *e_mine = "hello", *e_sys = "world";
        LONG_DOUBLE mine = str2ld(values[i], &e_mine);
        LONG_DOUBLE sys = strtold(values[i], &e_sys);

        if (isnan(mine))
            assert_true(isnan(sys));
        else if (isinf(mine))
            assert_true(isinf(sys));
        else if (mine != sys)
            assert_false(ABS(mine - sys) > 0.000001);

        assert_ptr_equal(e_mine, e_sys);
    }
}

int main(void)
{
    const struct CMUnitTest tests[] = {
        cmocka_unit_test(test_str2ld)
    };

    return cmocka_run_group_tests_name("str2ld", tests, NULL, NULL);
}