Tests for module 'unicase/u32-is-lowercase'.
[gnulib.git] / tests / unicase / test-u32-is-lowercase.c
1 /* Test of test whether an UTF-32 string is entirely lower case.
2    Copyright (C) 2009 Free Software Foundation, Inc.
3
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.
8
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.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2009.  */
18
19 #include <config.h>
20
21 #include "unicase.h"
22
23 #include <stdio.h>
24 #include <stdlib.h>
25
26 #include "unistr.h"
27
28 #define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
29 #define ASSERT(expr) \
30   do                                                                         \
31     {                                                                        \
32       if (!(expr))                                                           \
33         {                                                                    \
34           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
35           fflush (stderr);                                                   \
36           abort ();                                                          \
37         }                                                                    \
38     }                                                                        \
39   while (0)
40
41 #define UNIT uint32_t
42 #include "test-is-lowercase.h"
43 #undef UNIT
44
45 static void
46 test_nonascii (int (*my_is) (const uint32_t *, size_t, const char *, bool *))
47 {
48   /* Test cases from Unicode 5.1.0.  */
49   {
50     static const uint32_t input[] = { 0x24D7 };
51     bool result;
52
53     ASSERT (my_is (input, SIZEOF (input), NULL, &result) == 0);
54     ASSERT (result == true);
55   }
56   {
57     static const uint32_t input[] = { 0x24BD };
58     bool result;
59
60     ASSERT (my_is (input, SIZEOF (input), NULL, &result) == 0);
61     ASSERT (result == false);
62   }
63   {
64     static const uint32_t input[] = { 0x02B0 };
65     bool result;
66
67     ASSERT (my_is (input, SIZEOF (input), NULL, &result) == 0);
68     ASSERT (result == true);
69   }
70   {
71     static const uint32_t input[] = { 0x1D34 };
72     bool result;
73
74     ASSERT (my_is (input, SIZEOF (input), NULL, &result) == 0);
75     ASSERT (result == true);
76   }
77   {
78     static const uint32_t input[] = { 0x02BD };
79     bool result;
80
81     ASSERT (my_is (input, SIZEOF (input), NULL, &result) == 0);
82     ASSERT (result == true);
83   }
84 }
85
86 int
87 main ()
88 {
89   test_ascii (u32_is_lowercase);
90   test_nonascii (u32_is_lowercase);
91
92   return 0;
93 }