229e3fd18fe260ac093708124a35da847e1bbd87
[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   free (result);
72
73   result = my_xasprintf ("%s", "foo");
74   ASSERT (result != NULL);
75   ASSERT (strcmp (result, "foo") == 0);
76   free (result);
77
78   result = my_xasprintf ("%s%s", "foo", "bar");
79   ASSERT (result != NULL);
80   ASSERT (strcmp (result, "foobar") == 0);
81   free (result);
82
83   result = my_xasprintf ("%s%sbaz", "foo", "bar");
84   ASSERT (result != NULL);
85   ASSERT (strcmp (result, "foobarbaz") == 0);
86   free (result);
87 }
88
89 static void
90 test_xasprintf ()
91 {
92   int repeat;
93   char *result;
94
95   for (repeat = 0; repeat <= 8; repeat++)
96     {
97       result = xasprintf ("%d", 12345);
98       ASSERT (result != NULL);
99       ASSERT (strcmp (result, "12345") == 0);
100       free (result);
101     }
102
103   result = xasprintf ("");
104   ASSERT (result != NULL);
105   ASSERT (strcmp (result, "") == 0);
106   free (result);
107
108   result = xasprintf ("%s", "foo");
109   ASSERT (result != NULL);
110   ASSERT (strcmp (result, "foo") == 0);
111   free (result);
112
113   result = xasprintf ("%s%s", "foo", "bar");
114   ASSERT (result != NULL);
115   ASSERT (strcmp (result, "foobar") == 0);
116   free (result);
117
118   result = my_xasprintf ("%s%sbaz", "foo", "bar");
119   ASSERT (result != NULL);
120   ASSERT (strcmp (result, "foobarbaz") == 0);
121   free (result);
122 }
123
124 int
125 main (int argc _UNUSED_PARAMETER_, char *argv[])
126 {
127   set_program_name (argv[0]);
128
129   test_xvasprintf ();
130   test_xasprintf ();
131
132   return 0;
133 }