hio/t/t-002.c

77 lines
3.0 KiB
C
Raw Normal View History

2021-07-22 07:30:20 +00:00
#include <hio-utl.h>
#include <stdio.h>
#include "tap.h"
int main ()
{
no_plan ();
{
int is_sober;
2021-07-22 07:30:20 +00:00
const hio_bch_t* endptr;
hio_intmax_t v;
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10 ", 3, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(0,0,0,10), &endptr, &is_sober);
OK (v == 10 && *endptr == ' ' && is_sober == 1, "space after digits without rtrim");
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10 ", 3, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(0,0,1,10), &endptr, &is_sober);
OK (v == 10 && *endptr == '\0' && is_sober == 1, "space after digits with rtrim");
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10E", 3, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(0,0,1,10), &endptr, &is_sober);
OK (v == 10 && *endptr == 'E' && is_sober == 1, "number ending with E without the E option ");
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10E", 3, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(1,0,1,10), &endptr, &is_sober);
OK (v == 10 && *endptr == '\0' && is_sober == 1, "integer in E notation");
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10E+0", 5, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(1,0,1,10), &endptr, &is_sober);
OK (v == 10 && *endptr == '\0' && is_sober == 1, "integer in E notation");
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10E+1", 5, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(1,0,1,10), &endptr, &is_sober);
OK (v == 100 && *endptr == '\0' && is_sober == 1, "integer in E notation");
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10E+2", 5, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(1,0,1,10), &endptr, &is_sober);
OK (v == 1000 && *endptr == '\0' && is_sober == 1, "integer in E notation");
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10E3", 4, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(1,0,1,10), &endptr, &is_sober);
OK (v == 10000 && *endptr == '\0' && is_sober == 1, "integer in E notation");
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10E-", 4, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(1,0,1,10), &endptr, &is_sober);
OK (v == 10 && *endptr == '\0' && is_sober == 1, "integer in E notation");
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10E-0", 5, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(1,0,1,10), &endptr, &is_sober);
OK (v == 10 && *endptr == '\0' && is_sober == 1, "integer in E notation");
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10E-1", 5, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(1,0,1,10), &endptr, &is_sober);
OK (v == 1 && *endptr == '\0' && is_sober == 1, "integer in E notation");
2021-07-22 07:30:20 +00:00
v = hio_bchars_to_intmax("10E-2", 5, HIO_BCHARS_TO_INTMAX_MAKE_OPTION(1,0,1,10), &endptr, &is_sober);
OK (v == 0 && *endptr == '\0' && is_sober == 1, "integer in E notation");
}
2022-01-07 02:04:28 +00:00
{
hio_bch_t tmp[10];
hio_oow_t x;
hio_uch_t uc;
x = hio_uc_to_utf8(0x2665, tmp, HIO_COUNTOF(tmp));
OK (x == 3 && (hio_uint8_t)tmp[0] == 0xE2 && (hio_uint8_t)tmp[1] == 0x99 && (hio_uint8_t)tmp[2] == 0xA5, "unicode to utf8 conversion");
2022-01-07 02:04:28 +00:00
x = hio_utf8_to_uc(tmp, x, &uc);
OK (x == 3 && uc == 0x2665, "utf8 to unicode conversion");
2022-01-07 02:04:28 +00:00
#if (HIO_SIZEOF_UCH_T > 2)
x = hio_uc_to_utf8(0x1F3E9, tmp, HIO_COUNTOF(tmp));
OK (x == 4 && (hio_uint8_t)tmp[0] == 0xF0 && (hio_uint8_t)tmp[1] == 0x9F && (hio_uint8_t)tmp[2] == 0x8F && (hio_uint8_t)tmp[3] == 0xA9, "unicode to utf8 conversion");
2022-01-07 02:04:28 +00:00
x = hio_utf8_to_uc(tmp, x, &uc);
OK (x == 4 && uc == 0x1F3E9, "utf8 to unicode conversion");
2022-01-07 02:04:28 +00:00
#endif
}
return exit_status();
}