| 
									
										
										
										
											2018-09-28 01:30:29 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "includes.h"
 | 
					
						
							| 
									
										
										
										
											2019-05-13 00:09:00 +03:00
										 |  |  | #include "spdlog/details/fmt_helper.h"
 | 
					
						
							| 
									
										
										
										
											2018-09-28 01:30:29 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-04 02:10:46 +03:00
										 |  |  | void test_pad2(int n, const char *expected) | 
					
						
							| 
									
										
										
										
											2018-09-28 01:30:29 +03:00
										 |  |  | { | 
					
						
							|  |  |  |     fmt::memory_buffer buf; | 
					
						
							|  |  |  |     spdlog::details::fmt_helper::pad2(n, buf); | 
					
						
							|  |  |  |     REQUIRE(fmt::to_string(buf) == expected); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-16 12:56:36 +02:00
										 |  |  | void test_pad3(uint32_t n, const char *expected) | 
					
						
							| 
									
										
										
										
											2018-09-28 01:30:29 +03:00
										 |  |  | { | 
					
						
							|  |  |  |     fmt::memory_buffer buf; | 
					
						
							|  |  |  |     spdlog::details::fmt_helper::pad3(n, buf); | 
					
						
							|  |  |  |     REQUIRE(fmt::to_string(buf) == expected); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-04 02:10:46 +03:00
										 |  |  | void test_pad6(std::size_t n, const char *expected) | 
					
						
							| 
									
										
										
										
											2018-09-28 01:30:29 +03:00
										 |  |  | { | 
					
						
							|  |  |  |     fmt::memory_buffer buf; | 
					
						
							|  |  |  |     spdlog::details::fmt_helper::pad6(n, buf); | 
					
						
							|  |  |  |     REQUIRE(fmt::to_string(buf) == expected); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-12 16:44:34 +02:00
										 |  |  | void test_pad9(std::size_t n, const char *expected) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     fmt::memory_buffer buf; | 
					
						
							|  |  |  |     spdlog::details::fmt_helper::pad9(n, buf); | 
					
						
							|  |  |  |     REQUIRE(fmt::to_string(buf) == expected); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-28 01:30:29 +03:00
										 |  |  | TEST_CASE("pad2", "[fmt_helper]") | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     test_pad2(0, "00"); | 
					
						
							|  |  |  |     test_pad2(3, "03"); | 
					
						
							|  |  |  |     test_pad2(23, "23"); | 
					
						
							|  |  |  |     test_pad2(123, "123"); | 
					
						
							|  |  |  |     test_pad2(1234, "1234"); | 
					
						
							|  |  |  |     test_pad2(-5, "-5"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE("pad3", "[fmt_helper]") | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     test_pad3(0, "000"); | 
					
						
							|  |  |  |     test_pad3(3, "003"); | 
					
						
							|  |  |  |     test_pad3(23, "023"); | 
					
						
							|  |  |  |     test_pad3(123, "123"); | 
					
						
							|  |  |  |     test_pad3(1234, "1234"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE("pad6", "[fmt_helper]") | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     test_pad6(0, "000000"); | 
					
						
							|  |  |  |     test_pad6(3, "000003"); | 
					
						
							|  |  |  |     test_pad6(23, "000023"); | 
					
						
							|  |  |  |     test_pad6(123, "000123"); | 
					
						
							|  |  |  |     test_pad6(1234, "001234"); | 
					
						
							|  |  |  |     test_pad6(12345, "012345"); | 
					
						
							|  |  |  |     test_pad6(123456, "123456"); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-11-12 16:44:34 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST_CASE("pad9", "[fmt_helper]") | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-11-16 12:56:36 +02:00
										 |  |  |     test_pad9(0, "000000000"); | 
					
						
							| 
									
										
										
										
											2018-11-12 16:44:34 +02:00
										 |  |  |     test_pad9(3, "000000003"); | 
					
						
							|  |  |  |     test_pad9(23, "000000023"); | 
					
						
							|  |  |  |     test_pad9(123, "000000123"); | 
					
						
							|  |  |  |     test_pad9(1234, "000001234"); | 
					
						
							|  |  |  |     test_pad9(12345, "000012345"); | 
					
						
							|  |  |  |     test_pad9(123456, "000123456"); | 
					
						
							|  |  |  |     test_pad9(1234567, "001234567"); | 
					
						
							|  |  |  |     test_pad9(12345678, "012345678"); | 
					
						
							|  |  |  |     test_pad9(123456789, "123456789"); | 
					
						
							|  |  |  |     test_pad9(1234567891, "1234567891"); | 
					
						
							|  |  |  | } |