1 /* Test of u32_prev() function.
2 Copyright (C) 2010-2020 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2010. */
26 check (const uint32_t *input
, size_t input_length
, ucs4_t
*puc
)
30 /* Test recognition when at the beginning of the string. */
31 if (u32_prev (&uc
, input
+ input_length
, input
) != input
)
34 /* Test recognition when preceded by a 1-unit character. */
43 for (i
= 0; i
< input_length
; i
++)
46 if (u32_prev (&uc1
, ptr
+ input_length
, buf
) != ptr
)
57 check_invalid (const uint32_t *input
, size_t input_length
)
61 /* Test recognition when at the beginning of the string. */
63 if (u32_prev (&uc
, input
+ input_length
, input
) != NULL
)
68 /* Test recognition when preceded by a 1-unit character. */
76 for (i
= 0; i
< input_length
; i
++)
80 if (u32_prev (&uc
, ptr
+ input_length
, buf
) != NULL
)
94 /* Test ISO 646 unit input. */
99 for (c
= 0; c
< 0x80; c
++)
103 ASSERT (check (buf
, 1, &uc
) == 0);
108 /* Test BMP unit input. */
110 static const uint32_t input
[] = { 0x20AC };
112 ASSERT (check (input
, SIZEOF (input
), &uc
) == 0);
113 ASSERT (uc
== 0x20AC);
116 /* Test non-BMP unit input. */
118 static const uint32_t input
[] = { 0x1D51F };
120 ASSERT (check (input
, SIZEOF (input
), &uc
) == 0);
121 ASSERT (uc
== 0x1D51F);
124 /* Test incomplete/invalid 1-unit input. */
126 static const uint32_t input
[] = { 0x340000 };
127 ASSERT (check_invalid (input
, SIZEOF (input
)) == 0);