bioprinttest.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. /*
  2. * Copyright 2016-2025 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #define TESTUTIL_NO_size_t_COMPARISON
  10. #include <stdio.h>
  11. #include <string.h>
  12. #include <openssl/bio.h>
  13. #include "internal/numbers.h"
  14. #include "testutil.h"
  15. #include "testutil/output.h"
  16. #define nelem(x) (int)(sizeof(x) / sizeof((x)[0]))
  17. static int justprint = 0;
  18. static char *fpexpected[][11][5] = {
  19. {
  20. /* 0.00 */ { "0.0000e+00", "0.0000", "0", "0.0000E+00", "0" },
  21. /* 0.01 */ { "6.7000e-01", "0.6700", "0.67", "6.7000E-01", "0.67" },
  22. /* 0.02 */ { "6.6667e-01", "0.6667", "0.6667", "6.6667E-01", "0.6667" },
  23. /* 0.03 */ { "6.6667e-04", "0.0007", "0.0006667", "6.6667E-04", "0.0006667" },
  24. /* 0.04 */ { "6.6667e-05", "0.0001", "6.667e-05", "6.6667E-05", "6.667E-05" },
  25. /* 0.05 */ { "6.6667e+00", "6.6667", "6.667", "6.6667E+00", "6.667" },
  26. /* 0.06 */ { "6.6667e+01", "66.6667", "66.67", "6.6667E+01", "66.67" },
  27. /* 0.07 */ { "6.6667e+02", "666.6667", "666.7", "6.6667E+02", "666.7" },
  28. /* 0.08 */ { "6.6667e+03", "6666.6667", "6667", "6.6667E+03", "6667" },
  29. /* 0.09 */ { "6.6667e+04", "66666.6667", "6.667e+04", "6.6667E+04", "6.667E+04" },
  30. /* 0.10 */ { "-6.6667e+04", "-66666.6667", "-6.667e+04", "-6.6667E+04", "-6.667E+04" },
  31. },
  32. {
  33. /* 1.00 */ { "0.00000e+00", "0.00000", "0", "0.00000E+00", "0" },
  34. /* 1.01 */ { "6.70000e-01", "0.67000", "0.67", "6.70000E-01", "0.67" },
  35. /* 1.02 */ { "6.66667e-01", "0.66667", "0.66667", "6.66667E-01", "0.66667" },
  36. /* 1.03 */ { "6.66667e-04", "0.00067", "0.00066667", "6.66667E-04", "0.00066667" },
  37. /* 1.04 */ { "6.66667e-05", "0.00007", "6.6667e-05", "6.66667E-05", "6.6667E-05" },
  38. /* 1.05 */ { "6.66667e+00", "6.66667", "6.6667", "6.66667E+00", "6.6667" },
  39. /* 1.06 */ { "6.66667e+01", "66.66667", "66.667", "6.66667E+01", "66.667" },
  40. /* 1.07 */ { "6.66667e+02", "666.66667", "666.67", "6.66667E+02", "666.67" },
  41. /* 1.08 */ { "6.66667e+03", "6666.66667", "6666.7", "6.66667E+03", "6666.7" },
  42. /* 1.09 */ { "6.66667e+04", "66666.66667", "66667", "6.66667E+04", "66667" },
  43. /* 1.10 */ { "-6.66667e+04", "-66666.66667", "-66667", "-6.66667E+04", "-66667" },
  44. },
  45. {
  46. /* 2.00 */ { " 0.0000e+00", " 0.0000", " 0", " 0.0000E+00", " 0" },
  47. /* 2.01 */ { " 6.7000e-01", " 0.6700", " 0.67", " 6.7000E-01", " 0.67" },
  48. /* 2.02 */ { " 6.6667e-01", " 0.6667", " 0.6667", " 6.6667E-01", " 0.6667" },
  49. /* 2.03 */ { " 6.6667e-04", " 0.0007", " 0.0006667", " 6.6667E-04", " 0.0006667" },
  50. /* 2.04 */ { " 6.6667e-05", " 0.0001", " 6.667e-05", " 6.6667E-05", " 6.667E-05" },
  51. /* 2.05 */ { " 6.6667e+00", " 6.6667", " 6.667", " 6.6667E+00", " 6.667" },
  52. /* 2.06 */ { " 6.6667e+01", " 66.6667", " 66.67", " 6.6667E+01", " 66.67" },
  53. /* 2.07 */ { " 6.6667e+02", " 666.6667", " 666.7", " 6.6667E+02", " 666.7" },
  54. /* 2.08 */ { " 6.6667e+03", " 6666.6667", " 6667", " 6.6667E+03", " 6667" },
  55. /* 2.09 */ { " 6.6667e+04", " 66666.6667", " 6.667e+04", " 6.6667E+04", " 6.667E+04" },
  56. /* 2.10 */ { " -6.6667e+04", " -66666.6667", " -6.667e+04", " -6.6667E+04", " -6.667E+04" },
  57. },
  58. {
  59. /* 3.00 */ { " 0.00000e+00", " 0.00000", " 0", " 0.00000E+00", " 0" },
  60. /* 3.01 */ { " 6.70000e-01", " 0.67000", " 0.67", " 6.70000E-01", " 0.67" },
  61. /* 3.02 */ { " 6.66667e-01", " 0.66667", " 0.66667", " 6.66667E-01", " 0.66667" },
  62. /* 3.03 */ { " 6.66667e-04", " 0.00067", " 0.00066667", " 6.66667E-04", " 0.00066667" },
  63. /* 3.04 */ { " 6.66667e-05", " 0.00007", " 6.6667e-05", " 6.66667E-05", " 6.6667E-05" },
  64. /* 3.05 */ { " 6.66667e+00", " 6.66667", " 6.6667", " 6.66667E+00", " 6.6667" },
  65. /* 3.06 */ { " 6.66667e+01", " 66.66667", " 66.667", " 6.66667E+01", " 66.667" },
  66. /* 3.07 */ { " 6.66667e+02", " 666.66667", " 666.67", " 6.66667E+02", " 666.67" },
  67. /* 3.08 */ { " 6.66667e+03", " 6666.66667", " 6666.7", " 6.66667E+03", " 6666.7" },
  68. /* 3.09 */ { " 6.66667e+04", " 66666.66667", " 66667", " 6.66667E+04", " 66667" },
  69. /* 3.10 */ { "-6.66667e+04", "-66666.66667", " -66667", "-6.66667E+04", " -66667" },
  70. },
  71. {
  72. /* 4.00 */ { "0e+00", "0", "0", "0E+00", "0" },
  73. /* 4.01 */ { "7e-01", "1", "0.7", "7E-01", "0.7" },
  74. /* 4.02 */ { "7e-01", "1", "0.7", "7E-01", "0.7" },
  75. /* 4.03 */ { "7e-04", "0", "0.0007", "7E-04", "0.0007" },
  76. /* 4.04 */ { "7e-05", "0", "7e-05", "7E-05", "7E-05" },
  77. /* 4.05 */ { "7e+00", "7", "7", "7E+00", "7" },
  78. /* 4.06 */ { "7e+01", "67", "7e+01", "7E+01", "7E+01" },
  79. /* 4.07 */ { "7e+02", "667", "7e+02", "7E+02", "7E+02" },
  80. /* 4.08 */ { "7e+03", "6667", "7e+03", "7E+03", "7E+03" },
  81. /* 4.09 */ { "7e+04", "66667", "7e+04", "7E+04", "7E+04" },
  82. /* 4.10 */ { "-7e+04", "-66667", "-7e+04", "-7E+04", "-7E+04" },
  83. },
  84. {
  85. /* 5.00 */ { "0.000000e+00", "0.000000", "0", "0.000000E+00", "0" },
  86. /* 5.01 */ { "6.700000e-01", "0.670000", "0.67", "6.700000E-01", "0.67" },
  87. /* 5.02 */ { "6.666667e-01", "0.666667", "0.666667", "6.666667E-01", "0.666667" },
  88. /* 5.03 */ { "6.666667e-04", "0.000667", "0.000666667", "6.666667E-04", "0.000666667" },
  89. /* 5.04 */ { "6.666667e-05", "0.000067", "6.66667e-05", "6.666667E-05", "6.66667E-05" },
  90. /* 5.05 */ { "6.666667e+00", "6.666667", "6.66667", "6.666667E+00", "6.66667" },
  91. /* 5.06 */ { "6.666667e+01", "66.666667", "66.6667", "6.666667E+01", "66.6667" },
  92. /* 5.07 */ { "6.666667e+02", "666.666667", "666.667", "6.666667E+02", "666.667" },
  93. /* 5.08 */ { "6.666667e+03", "6666.666667", "6666.67", "6.666667E+03", "6666.67" },
  94. /* 5.09 */ { "6.666667e+04", "66666.666667", "66666.7", "6.666667E+04", "66666.7" },
  95. /* 5.10 */ { "-6.666667e+04", "-66666.666667", "-66666.7", "-6.666667E+04", "-66666.7" },
  96. },
  97. {
  98. /* 6.00 */ { "0.0000e+00", "000.0000", "00000000", "0.0000E+00", "00000000" },
  99. /* 6.01 */ { "6.7000e-01", "000.6700", "00000.67", "6.7000E-01", "00000.67" },
  100. /* 6.02 */ { "6.6667e-01", "000.6667", "000.6667", "6.6667E-01", "000.6667" },
  101. /* 6.03 */ { "6.6667e-04", "000.0007", "0.0006667", "6.6667E-04", "0.0006667" },
  102. /* 6.04 */ { "6.6667e-05", "000.0001", "6.667e-05", "6.6667E-05", "6.667E-05" },
  103. /* 6.05 */ { "6.6667e+00", "006.6667", "0006.667", "6.6667E+00", "0006.667" },
  104. /* 6.06 */ { "6.6667e+01", "066.6667", "00066.67", "6.6667E+01", "00066.67" },
  105. /* 6.07 */ { "6.6667e+02", "666.6667", "000666.7", "6.6667E+02", "000666.7" },
  106. /* 6.08 */ { "6.6667e+03", "6666.6667", "00006667", "6.6667E+03", "00006667" },
  107. /* 6.09 */ { "6.6667e+04", "66666.6667", "6.667e+04", "6.6667E+04", "6.667E+04" },
  108. /* 6.10 */ { "-6.6667e+04", "-66666.6667", "-6.667e+04", "-6.6667E+04", "-6.667E+04" },
  109. },
  110. };
  111. typedef struct z_data_st {
  112. size_t value;
  113. const char *format;
  114. const char *expected;
  115. } z_data;
  116. static z_data zu_data[] = {
  117. { SIZE_MAX, "%zu", (sizeof(size_t) == 4 ? "4294967295"
  118. : sizeof(size_t) == 8 ? "18446744073709551615"
  119. : "") },
  120. /*
  121. * in 2-complement, the unsigned number divided by two plus one becomes the
  122. * smallest possible negative signed number of the corresponding type
  123. */
  124. { SIZE_MAX / 2 + 1, "%zi", (sizeof(size_t) == 4 ? "-2147483648"
  125. : sizeof(size_t) == 8 ? "-9223372036854775808"
  126. : "") },
  127. { 0, "%zu", "0" },
  128. { 0, "%zi", "0" },
  129. };
  130. static int test_zu(int i)
  131. {
  132. char bio_buf[80];
  133. const z_data *data = &zu_data[i];
  134. BIO_snprintf(bio_buf, sizeof(bio_buf) - 1, data->format, data->value);
  135. if (!TEST_str_eq(bio_buf, data->expected))
  136. return 0;
  137. return 1;
  138. }
  139. typedef struct j_data_st {
  140. uint64_t value;
  141. const char *format;
  142. const char *expected;
  143. } j_data;
  144. static j_data jf_data[] = {
  145. { 0xffffffffffffffffULL, "%ju", "18446744073709551615" },
  146. { 0xffffffffffffffffULL, "%jx", "ffffffffffffffff" },
  147. { 0x8000000000000000ULL, "%ju", "9223372036854775808" },
  148. /*
  149. * These tests imply two's-complement, but it's the only binary
  150. * representation we support, see test/sanitytest.c...
  151. */
  152. { 0x8000000000000000ULL, "%ji", "-9223372036854775808" },
  153. };
  154. static int test_j(int i)
  155. {
  156. const j_data *data = &jf_data[i];
  157. char bio_buf[80];
  158. BIO_snprintf(bio_buf, sizeof(bio_buf) - 1, data->format, data->value);
  159. if (!TEST_str_eq(bio_buf, data->expected))
  160. return 0;
  161. return 1;
  162. }
  163. /* Precision and width. */
  164. typedef struct pw_st {
  165. int p;
  166. const char *w;
  167. } pw;
  168. static pw pw_params[] = {
  169. { 4, "" },
  170. { 5, "" },
  171. { 4, "12" },
  172. { 5, "12" },
  173. { 0, "" },
  174. { -1, "" },
  175. { 4, "08" }
  176. };
  177. static int dofptest(int test, int sub, double val, const char *width, int prec)
  178. {
  179. static const char *fspecs[] = {
  180. "e", "f", "g", "E", "G"
  181. };
  182. char format[80], result[80];
  183. int ret = 1, i;
  184. for (i = 0; i < nelem(fspecs); i++) {
  185. const char *fspec = fspecs[i];
  186. if (prec >= 0)
  187. BIO_snprintf(format, sizeof(format), "%%%s.%d%s", width, prec,
  188. fspec);
  189. else
  190. BIO_snprintf(format, sizeof(format), "%%%s%s", width, fspec);
  191. BIO_snprintf(result, sizeof(result), format, val);
  192. if (justprint) {
  193. if (i == 0)
  194. printf(" /* %d.%02d */ { \"%s\"", test, sub, result);
  195. else
  196. printf(", \"%s\"", result);
  197. } else if (!TEST_str_eq(fpexpected[test][sub][i], result)) {
  198. TEST_info("test %d format=|%s| exp=|%s|, ret=|%s|",
  199. test, format, fpexpected[test][sub][i], result);
  200. ret = 0;
  201. }
  202. }
  203. if (justprint)
  204. printf(" },\n");
  205. return ret;
  206. }
  207. static int test_fp(int i)
  208. {
  209. int t = 0, r;
  210. const double frac = 2.0 / 3.0;
  211. const pw *pwp = &pw_params[i];
  212. if (justprint)
  213. printf(" {\n");
  214. r = TEST_true(dofptest(i, t++, 0.0, pwp->w, pwp->p))
  215. && TEST_true(dofptest(i, t++, 0.67, pwp->w, pwp->p))
  216. && TEST_true(dofptest(i, t++, frac, pwp->w, pwp->p))
  217. && TEST_true(dofptest(i, t++, frac / 1000, pwp->w, pwp->p))
  218. && TEST_true(dofptest(i, t++, frac / 10000, pwp->w, pwp->p))
  219. && TEST_true(dofptest(i, t++, 6.0 + frac, pwp->w, pwp->p))
  220. && TEST_true(dofptest(i, t++, 66.0 + frac, pwp->w, pwp->p))
  221. && TEST_true(dofptest(i, t++, 666.0 + frac, pwp->w, pwp->p))
  222. && TEST_true(dofptest(i, t++, 6666.0 + frac, pwp->w, pwp->p))
  223. && TEST_true(dofptest(i, t++, 66666.0 + frac, pwp->w, pwp->p))
  224. && TEST_true(dofptest(i, t++, -66666.0 - frac, pwp->w, pwp->p));
  225. if (justprint)
  226. printf(" },\n");
  227. return r;
  228. }
  229. static int test_big(void)
  230. {
  231. char buf[80];
  232. /* Test excessively big number. Should fail */
  233. if (!TEST_int_eq(BIO_snprintf(buf, sizeof(buf),
  234. "%f\n", 2 * (double)ULONG_MAX), -1))
  235. return 0;
  236. return 1;
  237. }
  238. typedef enum OPTION_choice {
  239. OPT_ERR = -1,
  240. OPT_EOF = 0,
  241. OPT_PRINT,
  242. OPT_TEST_ENUM
  243. } OPTION_CHOICE;
  244. const OPTIONS *test_get_options(void)
  245. {
  246. static const OPTIONS options[] = {
  247. OPT_TEST_OPTIONS_DEFAULT_USAGE,
  248. { "expected", OPT_PRINT, '-', "Output values" },
  249. { NULL }
  250. };
  251. return options;
  252. }
  253. int setup_tests(void)
  254. {
  255. OPTION_CHOICE o;
  256. while ((o = opt_next()) != OPT_EOF) {
  257. switch (o) {
  258. case OPT_PRINT:
  259. justprint = 1;
  260. break;
  261. case OPT_TEST_CASES:
  262. break;
  263. default:
  264. return 0;
  265. }
  266. }
  267. ADD_TEST(test_big);
  268. ADD_ALL_TESTS(test_fp, nelem(pw_params));
  269. ADD_ALL_TESTS(test_zu, nelem(zu_data));
  270. ADD_ALL_TESTS(test_j, nelem(jf_data));
  271. return 1;
  272. }
  273. /*
  274. * Replace testutil output routines. We do this to eliminate possible sources
  275. * of BIO error
  276. */
  277. BIO *bio_out = NULL;
  278. BIO *bio_err = NULL;
  279. static int tap_level = 0;
  280. void test_open_streams(void)
  281. {
  282. }
  283. void test_adjust_streams_tap_level(int level)
  284. {
  285. tap_level = level;
  286. }
  287. void test_close_streams(void)
  288. {
  289. }
  290. /*
  291. * This works out as long as caller doesn't use any "fancy" formats.
  292. * But we are caller's caller, and test_str_eq is the only one called,
  293. * and it uses only "%s", which is not "fancy"...
  294. */
  295. int test_vprintf_stdout(const char *fmt, va_list ap)
  296. {
  297. return fprintf(stdout, "%*s# ", tap_level, "") + vfprintf(stdout, fmt, ap);
  298. }
  299. int test_vprintf_stderr(const char *fmt, va_list ap)
  300. {
  301. return fprintf(stderr, "%*s# ", tap_level, "") + vfprintf(stderr, fmt, ap);
  302. }
  303. int test_flush_stdout(void)
  304. {
  305. return fflush(stdout);
  306. }
  307. int test_flush_stderr(void)
  308. {
  309. return fflush(stderr);
  310. }
  311. int test_vprintf_tapout(const char *fmt, va_list ap)
  312. {
  313. return fprintf(stdout, "%*s", tap_level, "") + vfprintf(stdout, fmt, ap);
  314. }
  315. int test_vprintf_taperr(const char *fmt, va_list ap)
  316. {
  317. return fprintf(stderr, "%*s", tap_level, "") + vfprintf(stderr, fmt, ap);
  318. }
  319. int test_flush_tapout(void)
  320. {
  321. return fflush(stdout);
  322. }
  323. int test_flush_taperr(void)
  324. {
  325. return fflush(stderr);
  326. }