| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | // Formatting library for C++ - formatting library tests
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Copyright (c) 2012 - present, Victor Zverovich
 | 
					
						
							|  |  |  | // All rights reserved.
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  | // For the license information refer to format.h.
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | #include <stdint.h>
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | #include <cctype>
 | 
					
						
							|  |  |  | #include <cfloat>
 | 
					
						
							|  |  |  | #include <climits>
 | 
					
						
							|  |  |  | #include <cmath>
 | 
					
						
							|  |  |  | #include <cstring>
 | 
					
						
							|  |  |  | #include <deque>
 | 
					
						
							|  |  |  | #include <list>
 | 
					
						
							|  |  |  | #include <memory>
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  | // Check if fmt/compile.h compiles with windows.h included before it.
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | #  include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  | #include "fmt/compile.h"
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | #include "gmock.h"
 | 
					
						
							|  |  |  | #include "gtest-extra.h"
 | 
					
						
							|  |  |  | #include "mock-allocator.h"
 | 
					
						
							|  |  |  | #include "util.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #undef ERROR
 | 
					
						
							|  |  |  | #undef min
 | 
					
						
							|  |  |  | #undef max
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using testing::Return; | 
					
						
							|  |  |  | using testing::StrictMock; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // compiletime_prepared_parts_type_provider is useful only with relaxed
 | 
					
						
							|  |  |  | // constexpr.
 | 
					
						
							|  |  |  | #if FMT_USE_CONSTEXPR
 | 
					
						
							|  |  |  | template <unsigned EXPECTED_PARTS_COUNT, typename Format> | 
					
						
							|  |  |  | void check_prepared_parts_type(Format format) { | 
					
						
							| 
									
										
										
										
											2019-09-01 14:57:36 -07:00
										 |  |  |   typedef fmt::internal::compiled_format_base<decltype(format)> provider; | 
					
						
							|  |  |  |   typedef fmt::internal::format_part<char> | 
					
						
							|  |  |  |       expected_parts_type[EXPECTED_PARTS_COUNT]; | 
					
						
							|  |  |  |   static_assert(std::is_same<typename provider::parts_container, | 
					
						
							|  |  |  |                              expected_parts_type>::value, | 
					
						
							|  |  |  |                 "CompileTimePreparedPartsTypeProvider test failed"); | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 06:22:13 -07:00
										 |  |  | TEST(CompileTest, CompileTimePreparedPartsTypeProvider) { | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  |   check_prepared_parts_type<1u>(FMT_STRING("text")); | 
					
						
							|  |  |  |   check_prepared_parts_type<1u>(FMT_STRING("{}")); | 
					
						
							|  |  |  |   check_prepared_parts_type<2u>(FMT_STRING("text{}")); | 
					
						
							|  |  |  |   check_prepared_parts_type<2u>(FMT_STRING("{}text")); | 
					
						
							|  |  |  |   check_prepared_parts_type<3u>(FMT_STRING("text{}text")); | 
					
						
							|  |  |  |   check_prepared_parts_type<3u>(FMT_STRING("{:{}.{}} {:{}}")); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   check_prepared_parts_type<3u>(FMT_STRING("{{{}}}"));   // '{', 'argument', '}'
 | 
					
						
							|  |  |  |   check_prepared_parts_type<2u>(FMT_STRING("text{{"));   // 'text', '{'
 | 
					
						
							|  |  |  |   check_prepared_parts_type<3u>(FMT_STRING("text{{ "));  // 'text', '{', ' '
 | 
					
						
							|  |  |  |   check_prepared_parts_type<2u>(FMT_STRING("}}text"));   // '}', text
 | 
					
						
							|  |  |  |   check_prepared_parts_type<2u>(FMT_STRING("text}}text"));  // 'text}', 'text'
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  |   check_prepared_parts_type<4u>( | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |       FMT_STRING("text{{}}text"));  // 'text', '{', '}', 'text'
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 06:22:13 -07:00
										 |  |  | TEST(CompileTest, PassStringLiteralFormat) { | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  |   const auto prepared = fmt::compile<int>("test {}"); | 
					
						
							| 
									
										
										
										
											2019-08-03 06:28:31 -07:00
										 |  |  |   EXPECT_EQ("test 42", fmt::format(prepared, 42)); | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  |   const auto wprepared = fmt::compile<int>(L"test {}"); | 
					
						
							| 
									
										
										
										
											2019-08-03 06:28:31 -07:00
										 |  |  |   EXPECT_EQ(L"test 42", fmt::format(wprepared, 42)); | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if FMT_USE_CONSTEXPR
 | 
					
						
							| 
									
										
										
										
											2019-08-25 06:22:13 -07:00
										 |  |  | TEST(CompileTest, PassCompileString) { | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  |   const auto prepared = fmt::compile<int>(FMT_STRING("test {}")); | 
					
						
							| 
									
										
										
										
											2019-08-03 06:28:31 -07:00
										 |  |  |   EXPECT_EQ("test 42", fmt::format(prepared, 42)); | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  |   const auto wprepared = fmt::compile<int>(FMT_STRING(L"test {}")); | 
					
						
							| 
									
										
										
										
											2019-08-03 06:28:31 -07:00
										 |  |  |   EXPECT_EQ(L"test 42", fmt::format(wprepared, 42)); | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 06:22:13 -07:00
										 |  |  | TEST(CompileTest, FormatToArrayOfChars) { | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   char buffer[32] = {0}; | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  |   const auto prepared = fmt::compile<int>("4{}"); | 
					
						
							| 
									
										
										
										
											2019-08-11 09:27:59 -07:00
										 |  |  |   fmt::format_to(fmt::internal::make_checked(buffer, 32), prepared, 2); | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   EXPECT_EQ(std::string("42"), buffer); | 
					
						
							|  |  |  |   wchar_t wbuffer[32] = {0}; | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  |   const auto wprepared = fmt::compile<int>(L"4{}"); | 
					
						
							| 
									
										
										
										
											2019-08-11 09:27:59 -07:00
										 |  |  |   fmt::format_to(fmt::internal::make_checked(wbuffer, 32), wprepared, 2); | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   EXPECT_EQ(std::wstring(L"42"), wbuffer); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 06:22:13 -07:00
										 |  |  | TEST(CompileTest, FormatToIterator) { | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   std::string s(2, ' '); | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  |   const auto prepared = fmt::compile<int>("4{}"); | 
					
						
							| 
									
										
										
										
											2019-08-03 08:35:02 -07:00
										 |  |  |   fmt::format_to(s.begin(), prepared, 2); | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   EXPECT_EQ("42", s); | 
					
						
							|  |  |  |   std::wstring ws(2, L' '); | 
					
						
							| 
									
										
										
										
											2019-07-25 19:01:21 +03:00
										 |  |  |   const auto wprepared = fmt::compile<int>(L"4{}"); | 
					
						
							| 
									
										
										
										
											2019-08-03 08:35:02 -07:00
										 |  |  |   fmt::format_to(ws.begin(), wprepared, 2); | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  |   EXPECT_EQ(L"42", ws); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-25 06:38:41 -07:00
										 |  |  | TEST(CompileTest, FormatToN) { | 
					
						
							|  |  |  |   char buf[5]; | 
					
						
							|  |  |  |   auto f = fmt::compile<int>("{:10}"); | 
					
						
							|  |  |  |   auto result = fmt::format_to_n(buf, 5, f, 42); | 
					
						
							|  |  |  |   EXPECT_EQ(result.size, 10); | 
					
						
							|  |  |  |   EXPECT_EQ(result.out, buf + 5); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::string_view(buf, 5), "     "); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(CompileTest, FormattedSize) { | 
					
						
							|  |  |  |   auto f = fmt::compile<int>("{:10}"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::formatted_size(f, 42), 10); | 
					
						
							| 
									
										
										
										
											2019-05-21 21:03:57 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-09-01 11:48:01 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-24 10:54:49 +01:00
										 |  |  | TEST(CompileTest, MultipleTypes) { | 
					
						
							|  |  |  |   auto f = fmt::compile<int, int>("{} {}"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format(f, 42, 42), "42 42"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-01 11:48:01 -07:00
										 |  |  | struct formattable {}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-01 12:12:19 -07:00
										 |  |  | FMT_BEGIN_NAMESPACE | 
					
						
							| 
									
										
										
										
											2019-09-01 14:57:36 -07:00
										 |  |  | template <> struct formatter<formattable> : formatter<const char*> { | 
					
						
							| 
									
										
										
										
											2019-09-01 11:48:01 -07:00
										 |  |  |   auto format(formattable, format_context& ctx) -> decltype(ctx.out()) { | 
					
						
							|  |  |  |     return formatter<const char*>::format("foo", ctx); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2019-09-01 12:12:19 -07:00
										 |  |  | FMT_END_NAMESPACE | 
					
						
							| 
									
										
										
										
											2019-09-01 11:48:01 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(CompileTest, FormatUserDefinedType) { | 
					
						
							|  |  |  |   auto f = fmt::compile<formattable>("{}"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format(f, formattable()), "foo"); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-09-01 14:57:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(CompileTest, EmptyFormatString) { | 
					
						
							|  |  |  |   auto f = fmt::compile<>(""); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format(f), ""); | 
					
						
							|  |  |  | } |