StringWriter.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // ArduinoJson - arduinojson.org
  2. // Copyright Benoit Blanchon 2014-2019
  3. // MIT License
  4. #include <ArduinoJson.h>
  5. #include <catch.hpp>
  6. using namespace ARDUINOJSON_NAMESPACE;
  7. template <typename StringWriter>
  8. static size_t print(StringWriter& sb, const char* s) {
  9. return sb.write(reinterpret_cast<const uint8_t*>(s), strlen(s));
  10. }
  11. template <typename StringWriter, typename String>
  12. void common_tests(StringWriter& sb, const String& output) {
  13. SECTION("InitialState") {
  14. REQUIRE(std::string("") == output);
  15. }
  16. SECTION("EmptyString") {
  17. REQUIRE(0 == print(sb, ""));
  18. REQUIRE(std::string("") == output);
  19. }
  20. SECTION("OneString") {
  21. REQUIRE(4 == print(sb, "ABCD"));
  22. REQUIRE(std::string("ABCD") == output);
  23. }
  24. SECTION("TwoStrings") {
  25. REQUIRE(4 == print(sb, "ABCD"));
  26. REQUIRE(4 == print(sb, "EFGH"));
  27. REQUIRE(std::string("ABCDEFGH") == output);
  28. }
  29. }
  30. TEST_CASE("StaticStringWriter") {
  31. char output[20];
  32. StaticStringWriter sb(output, sizeof(output));
  33. common_tests(sb, static_cast<const char*>(output));
  34. SECTION("OverCapacity") {
  35. REQUIRE(19 == print(sb, "ABCDEFGHIJKLMNOPQRSTUVWXYZ"));
  36. REQUIRE(0 == print(sb, "ABC"));
  37. REQUIRE(std::string("ABCDEFGHIJKLMNOPQRS") == output);
  38. }
  39. }
  40. TEST_CASE("DynamicStringWriter") {
  41. std::string output;
  42. DynamicStringWriter<std::string> sb(output);
  43. common_tests(sb, output);
  44. }