From 5f2b09982312c98863eb9a8dfe2c608b81f58259 Mon Sep 17 00:00:00 2001 From: "Manuel A. Fernandez Montecelo" Date: Thu, 26 May 2016 16:48:15 +0100 Subject: Imported Upstream version 0.9.6 --- tests/unigbrk/test-u8-grapheme-next.c | 79 +++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 tests/unigbrk/test-u8-grapheme-next.c (limited to 'tests/unigbrk/test-u8-grapheme-next.c') diff --git a/tests/unigbrk/test-u8-grapheme-next.c b/tests/unigbrk/test-u8-grapheme-next.c new file mode 100644 index 0000000..e437dbd --- /dev/null +++ b/tests/unigbrk/test-u8-grapheme-next.c @@ -0,0 +1,79 @@ +/* Next grapheme cluster length test. + Copyright (C) 2010-2015 Free Software Foundation, Inc. + + This program is free software: you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published + by the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with this program. If not, see . */ + +/* Written by Ben Pfaff , 2010. */ + +#include + +/* Specification. */ +#include + +#include +#include + +#include "macros.h" + +static void +test_u8_grapheme_next (const char *input, size_t n, size_t len) +{ + const uint8_t *s = (const uint8_t *) input; + const uint8_t *next = u8_grapheme_next (s, s + n); + if (next != s + len) + { + size_t i; + + if (next == NULL) + fputs ("u8_grapheme_next returned NULL", stderr); + else + fprintf (stderr, "u8_grapheme_next skipped %zu bytes", next - s); + fprintf (stderr, ", expected %zu:\n", len); + for (i = 0; i < n; i++) + fprintf (stderr, " %02x", s[i]); + putc ('\n', stderr); + abort (); + } +} + +int +main (void) +{ + static const uint8_t s[] = "abc"; + + /* Empty string. */ + ASSERT (u8_grapheme_next (NULL, NULL) == NULL); + ASSERT (u8_grapheme_next (s, s) == NULL); + + /* Standalone 1-unit graphemes. */ + test_u8_grapheme_next ("a", 1, 1); + test_u8_grapheme_next ("ab", 2, 1); + test_u8_grapheme_next ("abc", 3, 1); + + /* Multi-unit, single code point graphemes. */ +#define HIRAGANA_A "\343\201\202" /* あ: Hiragana letter 'a'. */ + test_u8_grapheme_next (HIRAGANA_A, 3, 3); + test_u8_grapheme_next (HIRAGANA_A"x", 4, 3); + test_u8_grapheme_next (HIRAGANA_A HIRAGANA_A, 6, 3); + + /* Combining accents. */ +#define GRAVE "\314\200" /* Combining grave accent. */ +#define ACUTE "\314\201" /* Combining acute accent. */ + test_u8_grapheme_next ("e"ACUTE, 3, 3); + test_u8_grapheme_next ("e"ACUTE GRAVE, 5, 5); + test_u8_grapheme_next ("e"ACUTE"x", 4, 3); + test_u8_grapheme_next ("e"ACUTE "e"ACUTE, 6, 3); + + return 0; +} -- cgit v1.2.3