test_fmt.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Copyright (c) 2022 Agustina Arzille.
  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. */
  18. #include <assert.h>
  19. #include <string.h>
  20. #include <kern/error.h>
  21. #include <kern/fmt.h>
  22. #include <kern/init.h>
  23. #include <kern/log.h>
  24. #include <test/test.h>
  25. struct test_stream
  26. {
  27. struct stream base;
  28. char *buf;
  29. uint32_t len;
  30. };
  31. static void
  32. test_stream_write (struct stream *stream, const void *data, uint32_t bytes)
  33. {
  34. _Auto sp = (struct test_stream *) stream;
  35. for (uint32_t i = 0; i < bytes; ++i)
  36. {
  37. int ch = ((const char *)data)[i];
  38. sp->buf[sp->len + i] = ch < 'A' || ch > 'Z' ? ch : ((ch - 'A') + 'a');
  39. }
  40. sp->len += bytes;
  41. }
  42. static const struct stream_ops test_stream_ops =
  43. {
  44. .write = test_stream_write
  45. };
  46. static void
  47. test_sscanf (void)
  48. {
  49. int x1, x2;
  50. char c1, c2;
  51. int rv = fmt_sscanf ("123 qx -45", "%d %c%c %d", &x1, &c1, &c2, &x2);
  52. assert (rv == 4);
  53. assert (x1 == 123);
  54. assert (c1 == 'q');
  55. assert (c2 == 'x');
  56. assert (x2 == -45);
  57. }
  58. TEST_INLINE (fmt)
  59. {
  60. char buf[32];
  61. int rv = fmt_sprintf (buf, "hello %d %s", -4, "???");
  62. assert (rv == 12);
  63. rv = strcmp (buf, "hello -4 ???");
  64. assert (rv == 0);
  65. rv = fmt_snprintf (buf, 4, "abc%d", 33);
  66. assert (rv == 5);
  67. buf[rv - 1] = '\0';
  68. rv = strcmp (buf, "abc3");
  69. assert (rv == 0);
  70. struct test_stream stream = { .buf = buf, .len = 0 };
  71. stream_init (&stream.base, &test_stream_ops);
  72. rv = fmt_xprintf (&stream.base, "HELLO %d", -1);
  73. assert (rv > 0);
  74. buf[rv] = '\0';
  75. assert (strcmp (buf, "hello -1") == 0);
  76. test_sscanf ();
  77. return (TEST_OK);
  78. }