test-xvasprintf: Add %s%s related checks.
[gnulib.git] / tests / test-xvasprintf.c
1 /* Test of xvasprintf() and xasprintf() functions.
2    Copyright (C) 2007-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>, 2007.  */
18
19 #include <config.h>
20
21 #include "xvasprintf.h"
22
23 #include <stdarg.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27
28 #include "progname.h"
29
30 #define ASSERT(expr) \
31   do                                                                         \
32     {                                                                        \
33       if (!(expr))                                                           \
34         {                                                                    \
35           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
36           fflush (stderr);                                                   \
37           abort ();                                                          \
38         }                                                                    \
39     }                                                                        \
40   while (0)
41
42 static char *
43 my_xasprintf (const char *format, ...)
44 {
45   va_list args;
46   char *ret;
47
48   va_start (args, format);
49   ret = xvasprintf (format, args);
50   va_end (args);
51   return ret;
52 }
53
54 static void
55 test_xvasprintf (void)
56 {
57   int repeat;
58   char *result;
59
60   for (repeat = 0; repeat <= 8; repeat++)
61     {
62       result = my_xasprintf ("%d", 12345);
63       ASSERT (result != NULL);
64       ASSERT (strcmp (result, "12345") == 0);
65       free (result);
66     }
67
68   result = my_xasprintf ("");
69   ASSERT (result != NULL);
70   ASSERT (strcmp (result, "") == 0);
71
72   result = my_xasprintf ("%s", "foo");
73   ASSERT (result != NULL);
74   ASSERT (strcmp (result, "foo") == 0);
75
76   result = my_xasprintf ("%s%s", "foo", "bar");
77   ASSERT (result != NULL);
78   ASSERT (strcmp (result, "foobar") == 0);
79
80   result = my_xasprintf ("%s%sbaz", "foo", "bar");
81   ASSERT (result != NULL);
82   ASSERT (strcmp (result, "foobarbaz") == 0);
83 }
84
85 static void
86 test_xasprintf ()
87 {
88   int repeat;
89   char *result;
90
91   for (repeat = 0; repeat <= 8; repeat++)
92     {
93       result = xasprintf ("%d", 12345);
94       ASSERT (result != NULL);
95       ASSERT (strcmp (result, "12345") == 0);
96       free (result);
97     }
98
99   result = xasprintf ("");
100   ASSERT (result != NULL);
101   ASSERT (strcmp (result, "") == 0);
102
103   result = xasprintf ("%s", "foo");
104   ASSERT (result != NULL);
105   ASSERT (strcmp (result, "foo") == 0);
106
107   result = xasprintf ("%s%s", "foo", "bar");
108   ASSERT (result != NULL);
109   ASSERT (strcmp (result, "foobar") == 0);
110
111   result = my_xasprintf ("%s%sbaz", "foo", "bar");
112   ASSERT (result != NULL);
113   ASSERT (strcmp (result, "foobarbaz") == 0);
114 }
115
116 int
117 main (int argc _UNUSED_PARAMETER_, char *argv[])
118 {
119   set_program_name (argv[0]);
120
121   test_xvasprintf ();
122   test_xasprintf ();
123
124   return 0;
125 }