mirror of
				https://github.com/eledio-devices/thirdparty-ArduinoJson.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	Fixed value returned by serializeXxx() when writing to a String
This commit is contained in:
		
							
								
								
									
										39
									
								
								extras/tests/Helpers/WString.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								extras/tests/Helpers/WString.h
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,39 @@ | ||||
| // ArduinoJson - arduinojson.org | ||||
| // Copyright Benoit Blanchon 2014-2020 | ||||
| // MIT License | ||||
|  | ||||
| #pragma once | ||||
|  | ||||
| #include <string> | ||||
|  | ||||
| // Reproduces Arduino's String class | ||||
| class String { | ||||
|  public: | ||||
|   String& operator+=(char c) { | ||||
|     _str += c; | ||||
|     return *this; | ||||
|   } | ||||
|   String& operator+=(int);  // no used, just to add ambiguity | ||||
|  | ||||
|   unsigned char reserve(size_t capacity) { | ||||
|     _str.reserve(capacity); | ||||
|     return 1; | ||||
|   } | ||||
|  | ||||
|   size_t length() const { | ||||
|     return _str.size(); | ||||
|   } | ||||
|  | ||||
|   const char* c_str() const { | ||||
|     return _str.c_str(); | ||||
|   } | ||||
|  | ||||
|  private: | ||||
|   std::string _str; | ||||
| }; | ||||
|  | ||||
| class StringSumHelper; | ||||
|  | ||||
| bool operator==(const std::string& lhs, const ::String& rhs) { | ||||
|   return lhs == rhs.c_str(); | ||||
| } | ||||
| @@ -2,6 +2,7 @@ | ||||
| // Copyright Benoit Blanchon 2014-2020 | ||||
| // MIT License | ||||
|  | ||||
| #define ARDUINOJSON_ENABLE_ARDUINO_STRING 1 | ||||
| #include <ArduinoJson.h> | ||||
| #include <catch.hpp> | ||||
| #include "custom_string.hpp" | ||||
| @@ -55,6 +56,12 @@ TEST_CASE("Writer<std::string>") { | ||||
|   common_tests(sb, output); | ||||
| } | ||||
|  | ||||
| TEST_CASE("Writer<String>") { | ||||
|   ::String output; | ||||
|   Writer< ::String> sb(output); | ||||
|   common_tests(sb, output); | ||||
| } | ||||
|  | ||||
| TEST_CASE("Writer<custom_string>") { | ||||
|   custom_string output; | ||||
|   Writer<custom_string> sb(output); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user