Formatted output functions for Unicode strings.
[gnulib.git] / tests / unistdio / test-u8-asnprintf1.h
1 /* Test of u8_[v]asnprintf() function.
2    Copyright (C) 2007 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 2, or (at your option)
7    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, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
19
20 static void
21 test_function (uint8_t * (*my_asnprintf) (uint8_t *, size_t *, const char *, ...))
22 {
23   uint8_t buf[8];
24   int size;
25
26   /* Test return value convention.  */
27
28   for (size = 0; size <= 8; size++)
29     {
30       size_t length = size;
31       uint8_t *result = my_asnprintf (NULL, &length, "%d", 12345);
32       static const uint8_t expected[] = "12345";
33       ASSERT (result != NULL);
34       ASSERT (u8_strcmp (result, expected) == 0);
35       ASSERT (length == 5);
36       free (result);
37     }
38
39   for (size = 0; size <= 8; size++)
40     {
41       static const uint8_t initializer[] = "DEADBEEF";
42       static const uint8_t expected[] = "12345";
43       size_t length;
44       uint8_t *result;
45
46       u8_cpy (buf, initializer, 8);
47       length = size;
48       result = my_asnprintf (buf, &length, "%d", 12345);
49       ASSERT (result != NULL);
50       ASSERT (u8_strcmp (result, expected) == 0);
51       ASSERT (length == 5);
52       if (size < 6)
53         ASSERT (result != buf);
54       ASSERT (u8_cmp (buf + size, initializer + size, 8 - size) == 0);
55       if (result != buf)
56         free (result);
57     }
58 }