453ca58e92e752baeefe80c61024cce1ab000f77
[gnulib.git] / tests / test-xvasprintf.c
1 /* Test of xvasprintf() and xasprintf() functions.
2    Copyright (C) 2007-2013 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 <stdlib.h>
25 #include <string.h>
26
27 #include "progname.h"
28 #include "macros.h"
29
30 static char *
31 my_xasprintf (const char *format, ...)
32 {
33   va_list args;
34   char *ret;
35
36   va_start (args, format);
37   ret = xvasprintf (format, args);
38   va_end (args);
39   return ret;
40 }
41
42 static void
43 test_xvasprintf (void)
44 {
45   int repeat;
46   char *result;
47
48   for (repeat = 0; repeat <= 8; repeat++)
49     {
50       result = my_xasprintf ("%d", 12345);
51       ASSERT (result != NULL);
52       ASSERT (strcmp (result, "12345") == 0);
53       free (result);
54     }
55
56   {
57     /* Silence gcc warning about zero-length format string.  */
58     const char *empty = "";
59     result = my_xasprintf (empty);
60     ASSERT (result != NULL);
61     ASSERT (strcmp (result, "") == 0);
62     free (result);
63   }
64
65   result = my_xasprintf ("%s", "foo");
66   ASSERT (result != NULL);
67   ASSERT (strcmp (result, "foo") == 0);
68   free (result);
69
70   result = my_xasprintf ("%s%s", "foo", "bar");
71   ASSERT (result != NULL);
72   ASSERT (strcmp (result, "foobar") == 0);
73   free (result);
74
75   result = my_xasprintf ("%s%sbaz", "foo", "bar");
76   ASSERT (result != NULL);
77   ASSERT (strcmp (result, "foobarbaz") == 0);
78   free (result);
79 }
80
81 static void
82 test_xasprintf (void)
83 {
84   int repeat;
85   char *result;
86
87   for (repeat = 0; repeat <= 8; repeat++)
88     {
89       result = xasprintf ("%d", 12345);
90       ASSERT (result != NULL);
91       ASSERT (strcmp (result, "12345") == 0);
92       free (result);
93     }
94
95   {
96     /* Silence gcc warning about zero-length format string,
97        and about "format not a string literal and no format"
98        (whatever that means) .  */
99     const char *empty = "";
100     result = xasprintf (empty, empty);
101     ASSERT (result != NULL);
102     ASSERT (strcmp (result, "") == 0);
103     free (result);
104   }
105
106   result = xasprintf ("%s", "foo");
107   ASSERT (result != NULL);
108   ASSERT (strcmp (result, "foo") == 0);
109   free (result);
110
111   result = xasprintf ("%s%s", "foo", "bar");
112   ASSERT (result != NULL);
113   ASSERT (strcmp (result, "foobar") == 0);
114   free (result);
115
116   result = my_xasprintf ("%s%sbaz", "foo", "bar");
117   ASSERT (result != NULL);
118   ASSERT (strcmp (result, "foobarbaz") == 0);
119   free (result);
120 }
121
122 int
123 main (int argc _GL_UNUSED, char *argv[])
124 {
125   set_program_name (argv[0]);
126
127   test_xvasprintf ();
128   test_xasprintf ();
129
130   return 0;
131 }