clean up compiler warnings
[libc-test] / src / stdio / snprintf.c
1 #define _XOPEN_SOURCE 700
2 #include <stdio.h>
3 #include <string.h>
4 #include <errno.h>
5 #include <limits.h>
6 #include <math.h>
7 #include "test.h"
8
9 #define DISABLE_SLOW_TESTS
10
11 #define TEST(r, f, x, m) ( \
12         ((r) = (f)) == (x) || \
13         (error("%s failed (" m ")\n", #f, r, x), 0) )
14
15 #define TEST_S(s, x, m) ( \
16         !strcmp((s),(x)) || \
17         (error("[%s] != [%s] (%s)\n", s, x, m), 0) )
18
19 static const struct {
20         const char *fmt;
21         int i;
22         const char *expect;
23 } int_tests[] = {
24         /* width, precision, alignment */
25         { "%04d", 12, "0012" },
26         { "%.3d", 12, "012" },
27         { "%3d", 12, " 12" },
28         { "%-3d", 12, "12 " },
29         { "%+3d", 12, "+12" },
30         { "%+-5d", 12, "+12  " },
31         { "%+- 5d", 12, "+12  " },
32         { "%- 5d", 12, " 12  " },
33         { "% d", 12, " 12" },
34         { "%0-5d", 12, "12   " },
35         { "%-05d", 12, "12   " },
36
37         /* ...explicit precision of 0 shall be no characters. */
38         { "%.0d", 0, "" },
39         { "%.0o", 0, "" },
40         { "%#.0d", 0, "" },
41         { "%#.0o", 0, "" },
42         { "%#.0x", 0, "" },
43
44         /* ...but it still has to honor width and flags. */
45         { "%2.0u", 0, "  " },
46         { "%02.0u", 0, "  " },
47         { "%2.0d", 0, "  " },
48         { "%02.0d", 0, "  " },
49         { "% .0d", 0, " " },
50         { "%+.0d", 0, "+" },
51
52         /* hex: test alt form and case */
53         { "%x", 63, "3f" },
54         { "%#x", 63, "0x3f" },
55         { "%X", 63, "3F" },
56
57         /* octal: test alt form */
58         { "%o", 15, "17" },
59         { "%#o", 15, "017" },
60
61         { NULL, 0.0, NULL }
62 };
63
64 static const struct {
65         const char *fmt;
66         double f;
67         const char *expect;
68 } fp_tests[] = {
69         /* basic form, handling of exponent/precision for 0 */
70         { "%e", 0.0, "0.000000e+00" },
71         { "%f", 0.0, "0.000000" },
72         { "%g", 0.0, "0" },
73         { "%#g", 0.0, "0.00000" },
74
75         /* rounding */
76         { "%f", 1.1, "1.100000" },
77         { "%f", 1.2, "1.200000" },
78         { "%f", 1.3, "1.300000" },
79         { "%f", 1.4, "1.400000" },
80         { "%f", 1.5, "1.500000" },
81         { "%.4f", 1.06125, "1.0612" },
82         { "%.2f", 1.375, "1.38" },
83         { "%.1f", 1.375, "1.4" },
84         { "%.15f", 1.1, "1.100000000000000" },
85         { "%.16f", 1.1, "1.1000000000000001" },
86         { "%.17f", 1.1, "1.10000000000000009" },
87         { "%.2e", 1500001.0, "1.50e+06" },
88         { "%.2e", 1505000.0, "1.50e+06" },
89         { "%.2e", 1505000.00000095367431640625, "1.51e+06" },
90         { "%.2e", 1505001.0, "1.51e+06" },
91         { "%.2e", 1506000.0, "1.51e+06" },
92         
93         /* correctness in DBL_DIG places */
94         { "%.15g", 1.23456789012345, "1.23456789012345" },
95
96         /* correct choice of notation for %g */
97         { "%g", 0.0001, "0.0001" },
98         { "%g", 0.00001, "1e-05" },
99         { "%g", 123456, "123456" },
100         { "%g", 1234567, "1.23457e+06" },
101         { "%.7g", 1234567, "1234567" },
102         { "%.7g", 12345678, "1.234568e+07" },
103         { "%.8g", 0.1, "0.1" },
104         { "%.9g", 0.1, "0.1" },
105         { "%.10g", 0.1, "0.1" },
106         { "%.11g", 0.1, "0.1" },
107
108         /* pi in double precision, printed to a few extra places */
109         { "%.15f", M_PI, "3.141592653589793" },
110         { "%.18f", M_PI, "3.141592653589793116" },
111
112         /* exact conversion of large integers */
113         { "%.0f", 340282366920938463463374607431768211456.0,
114                  "340282366920938463463374607431768211456" },
115
116         { NULL, 0.0, NULL }
117 };
118
119 void test_snprintf(void)
120 {
121         int i, j, k;
122         char b[2000];
123
124         TEST(i, snprintf(0, 0, "%d", 123456), 6, "length returned %d != %d");
125         TEST(i, snprintf(0, 0, "%.4s", "hello"), 4, "length returned %d != %d");
126         TEST(i, snprintf(b, 0, "%.0s", "goodbye"), 0, "length returned %d != %d");
127
128         strcpy(b, "xxxxxxxx");
129         TEST(i, snprintf(b, 4, "%d", 123456), 6, "length returned %d != %d");
130         TEST_S(b, "123", "incorrect output");
131         TEST(i, b[5], 'x', "buffer overrun");
132
133         /* Perform ascii arithmetic to test printing tiny doubles */
134         TEST(i, snprintf(b, sizeof b, "%.1022f", 0x1p-1021), 1024, "%d != %d");
135         b[1] = '0';
136         for (i=0; i<1021; i++) {
137                 for (k=0, j=1023; j>0; j--) {
138                         if (b[j]<'5') b[j]+=b[j]-'0'+k, k=0;
139                         else b[j]+=b[j]-'0'-10+k, k=1;
140                 }
141         }
142         TEST(i, b[1], '1', "'%c' != '%c'");
143         for (j=2; b[j]=='0'; j++);
144         TEST(i, j, 1024, "%d != %d");
145
146
147 #ifndef DISABLE_SLOW_TESTS
148         errno = 0;
149         TEST(i, snprintf(NULL, 0, "%.*u", 2147483647, 0), 2147483647, "cannot print max length %d");
150         TEST(i, snprintf(NULL, 0, "%.*u ", 2147483647, 0), -1, "integer overflow %d");
151         TEST(i, errno, EOVERFLOW, "after overflow: %d != %d");
152 #endif
153         for (j=0; int_tests[j].fmt; j++) {
154                 TEST(i, snprintf(b, sizeof b, int_tests[j].fmt, int_tests[j].i), strlen(b), "%d != %d");
155                 TEST_S(b, int_tests[j].expect, "bad integer conversion");
156         }
157
158         for (j=0; fp_tests[j].fmt; j++) {
159                 TEST(i, snprintf(b, sizeof b, fp_tests[j].fmt, fp_tests[j].f), strlen(b), "%d != %d");
160                 TEST_S(b, fp_tests[j].expect, "bad floating point conversion");
161         }
162
163         TEST(i, snprintf(0, 0, "%.4a", 1.0), 11, "%d != %d");
164 }