| 
									
										
										
										
											2018-03-04 09:16:51 -08:00
										 |  |  | // Formatting library for C++ - formatting library tests
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Copyright (c) 2012 - present, Victor Zverovich
 | 
					
						
							|  |  |  | // All rights reserved.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // For the license information refer to format.h.
 | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | #include <stdint.h>
 | 
					
						
							| 
									
										
										
										
											2020-03-04 16:43:49 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-12 09:29:32 -08:00
										 |  |  | #include <cctype>
 | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | #include <cfloat>
 | 
					
						
							|  |  |  | #include <climits>
 | 
					
						
							| 
									
										
										
										
											2014-06-06 11:14:53 -07:00
										 |  |  | #include <cmath>
 | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | #include <cstring>
 | 
					
						
							| 
									
										
										
										
											2018-01-15 11:30:53 -08:00
										 |  |  | #include <list>
 | 
					
						
							| 
									
										
										
										
											2012-12-11 20:48:49 -08:00
										 |  |  | #include <memory>
 | 
					
						
							| 
									
										
										
										
											2018-10-24 08:02:15 +02:00
										 |  |  | #include <string>
 | 
					
						
							| 
									
										
										
										
											2014-09-18 09:07:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | // Check if fmt/format.h compiles with windows.h included before it.
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | #  include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-01 08:37:51 -07:00
										 |  |  | // Check if fmt/format.h compiles with the X11 index macro defined.
 | 
					
						
							|  |  |  | #define index(x, y) no nice things
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-06 09:23:34 -08:00
										 |  |  | #include "fmt/color.h"
 | 
					
						
							| 
									
										
										
										
											2019-04-07 10:05:49 -07:00
										 |  |  | #include "fmt/format.h"
 | 
					
						
							| 
									
										
										
										
											2019-11-01 08:37:51 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #undef index
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-07 20:20:36 +02:00
										 |  |  | #include "gmock.h"
 | 
					
						
							| 
									
										
										
										
											2014-08-15 08:40:03 -07:00
										 |  |  | #include "gtest-extra.h"
 | 
					
						
							| 
									
										
										
										
											2018-06-07 20:20:36 +02:00
										 |  |  | #include "mock-allocator.h"
 | 
					
						
							|  |  |  | #include "util.h"
 | 
					
						
							| 
									
										
										
										
											2014-08-15 08:40:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | #undef ERROR
 | 
					
						
							| 
									
										
										
										
											2013-09-09 15:17:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | using fmt::basic_memory_buffer; | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  | using fmt::format; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  | using fmt::format_error; | 
					
						
							| 
									
										
										
										
											2017-02-18 09:13:12 -08:00
										 |  |  | using fmt::memory_buffer; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | using fmt::string_view; | 
					
						
							| 
									
										
										
										
											2017-02-18 09:13:12 -08:00
										 |  |  | using fmt::wmemory_buffer; | 
					
						
							| 
									
										
										
										
											2020-03-11 17:43:14 -07:00
										 |  |  | using fmt::wstring_view; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  | using fmt::detail::max_value; | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | using testing::Return; | 
					
						
							|  |  |  | using testing::StrictMock; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-29 08:39:37 -07:00
										 |  |  | namespace { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-08 12:41:55 -08:00
										 |  |  | #if !FMT_GCC_VERSION || FMT_GCC_VERSION >= 408
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <typename Char, typename T> bool check_enabled_formatter() { | 
					
						
							|  |  |  |   static_assert(std::is_default_constructible<fmt::formatter<T, Char>>::value, | 
					
						
							|  |  |  |                 ""); | 
					
						
							| 
									
										
										
										
											2018-11-08 10:59:10 -08:00
										 |  |  |   return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <typename Char, typename... T> void check_enabled_formatters() { | 
					
						
							| 
									
										
										
										
											2018-11-08 16:26:55 -08:00
										 |  |  |   auto dummy = {check_enabled_formatter<Char, T>()...}; | 
					
						
							| 
									
										
										
										
											2018-11-08 10:59:10 -08:00
										 |  |  |   (void)dummy; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, TestFormattersEnabled) { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   check_enabled_formatters<char, bool, char, signed char, unsigned char, short, | 
					
						
							|  |  |  |                            unsigned short, int, unsigned, long, unsigned long, | 
					
						
							|  |  |  |                            long long, unsigned long long, float, double, | 
					
						
							|  |  |  |                            long double, void*, const void*, char*, const char*, | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |                            std::string, std::nullptr_t>(); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   check_enabled_formatters<wchar_t, bool, wchar_t, signed char, unsigned char, | 
					
						
							|  |  |  |                            short, unsigned short, int, unsigned, long, | 
					
						
							|  |  |  |                            unsigned long, long long, unsigned long long, float, | 
					
						
							|  |  |  |                            double, long double, void*, const void*, wchar_t*, | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |                            const wchar_t*, std::wstring, std::nullptr_t>(); | 
					
						
							| 
									
										
										
										
											2018-11-08 10:59:10 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-11-08 12:41:55 -08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-11-08 10:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  | // Format value using the standard library.
 | 
					
						
							|  |  |  | template <typename Char, typename T> | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | void std_format(const T& value, std::basic_string<Char>& result) { | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  |   std::basic_ostringstream<Char> os; | 
					
						
							|  |  |  |   os << value; | 
					
						
							| 
									
										
										
										
											2015-05-07 07:25:39 -07:00
										 |  |  |   result = os.str(); | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __MINGW32__
 | 
					
						
							|  |  |  | // Workaround a bug in formatting long double in MinGW.
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | void std_format(long double value, std::string& result) { | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  |   char buffer[100]; | 
					
						
							| 
									
										
										
										
											2015-05-07 08:17:30 -07:00
										 |  |  |   safe_sprintf(buffer, "%Lg", value); | 
					
						
							| 
									
										
										
										
											2015-05-07 07:25:39 -07:00
										 |  |  |   result = buffer; | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | void std_format(long double value, std::wstring& result) { | 
					
						
							| 
									
										
										
										
											2015-05-08 07:57:43 -07:00
										 |  |  |   wchar_t buffer[100]; | 
					
						
							|  |  |  |   swprintf(buffer, L"%Lg", value); | 
					
						
							|  |  |  |   result = buffer; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | }  // namespace
 | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | struct uint32_pair { | 
					
						
							|  |  |  |   uint32_t u[2]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, BitCast) { | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   auto s = fmt::detail::bit_cast<uint32_pair>(uint64_t{42}); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::detail::bit_cast<uint64_t>(s), 42ull); | 
					
						
							|  |  |  |   s = fmt::detail::bit_cast<uint32_pair>(uint64_t(~0ull)); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::detail::bit_cast<uint64_t>(s), ~0ull); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, Increment) { | 
					
						
							|  |  |  |   char s[10] = "123"; | 
					
						
							|  |  |  |   increment(s); | 
					
						
							|  |  |  |   EXPECT_STREQ("124", s); | 
					
						
							|  |  |  |   s[2] = '8'; | 
					
						
							|  |  |  |   increment(s); | 
					
						
							|  |  |  |   EXPECT_STREQ("129", s); | 
					
						
							|  |  |  |   increment(s); | 
					
						
							|  |  |  |   EXPECT_STREQ("130", s); | 
					
						
							|  |  |  |   s[1] = s[2] = '9'; | 
					
						
							|  |  |  |   increment(s); | 
					
						
							|  |  |  |   EXPECT_STREQ("200", s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, ParseNonnegativeInt) { | 
					
						
							| 
									
										
										
										
											2019-11-24 06:38:01 -08:00
										 |  |  |   if (max_value<int>() != static_cast<int>(static_cast<unsigned>(1) << 31)) { | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |     fmt::print("Skipping parse_nonnegative_int test\n"); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  |   fmt::string_view s = "10000000000"; | 
					
						
							|  |  |  |   auto begin = s.begin(), end = s.end(); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |       parse_nonnegative_int(begin, end, fmt::detail::error_handler()), | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |       fmt::format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   s = "2147483649"; | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  |   begin = s.begin(); | 
					
						
							|  |  |  |   end = s.end(); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |       parse_nonnegative_int(begin, end, fmt::detail::error_handler()), | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |       fmt::format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(IteratorTest, CountingIterator) { | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::counting_iterator it; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   auto prev = it++; | 
					
						
							|  |  |  |   EXPECT_EQ(prev.count(), 0); | 
					
						
							|  |  |  |   EXPECT_EQ(it.count(), 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(IteratorTest, TruncatingIterator) { | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   char* p = nullptr; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::truncating_iterator<char*> it(p, 3); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   auto prev = it++; | 
					
						
							|  |  |  |   EXPECT_EQ(prev.base(), p); | 
					
						
							|  |  |  |   EXPECT_EQ(it.base(), p + 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-24 08:02:15 +02:00
										 |  |  | TEST(IteratorTest, TruncatingBackInserter) { | 
					
						
							|  |  |  |   std::string buffer; | 
					
						
							|  |  |  |   auto bi = std::back_inserter(buffer); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::truncating_iterator<decltype(bi)> it(bi, 2); | 
					
						
							| 
									
										
										
										
											2018-10-24 08:02:15 +02:00
										 |  |  |   *it++ = '4'; | 
					
						
							|  |  |  |   *it++ = '2'; | 
					
						
							|  |  |  |   *it++ = '1'; | 
					
						
							|  |  |  |   EXPECT_EQ(buffer.size(), 2); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer, "42"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-25 15:22:27 +02:00
										 |  |  | TEST(IteratorTest, IsOutputIterator) { | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   EXPECT_TRUE(fmt::detail::is_output_iterator<char*>::value); | 
					
						
							|  |  |  |   EXPECT_FALSE(fmt::detail::is_output_iterator<const char*>::value); | 
					
						
							|  |  |  |   EXPECT_FALSE(fmt::detail::is_output_iterator<std::string>::value); | 
					
						
							|  |  |  |   EXPECT_TRUE(fmt::detail::is_output_iterator< | 
					
						
							| 
									
										
										
										
											2018-10-25 15:22:27 +02:00
										 |  |  |               std::back_insert_iterator<std::string>>::value); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   EXPECT_TRUE(fmt::detail::is_output_iterator<std::string::iterator>::value); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_FALSE( | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |       fmt::detail::is_output_iterator<std::string::const_iterator>::value); | 
					
						
							|  |  |  |   EXPECT_FALSE(fmt::detail::is_output_iterator<std::list<char>>::value); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_TRUE( | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |       fmt::detail::is_output_iterator<std::list<char>::iterator>::value); | 
					
						
							|  |  |  |   EXPECT_FALSE( | 
					
						
							|  |  |  |       fmt::detail::is_output_iterator<std::list<char>::const_iterator>::value); | 
					
						
							|  |  |  |   EXPECT_FALSE(fmt::detail::is_output_iterator<uint32_pair>::value); | 
					
						
							| 
									
										
										
										
											2018-10-25 15:22:27 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | TEST(MemoryBufferTest, Ctor) { | 
					
						
							|  |  |  |   basic_memory_buffer<char, 123> buffer; | 
					
						
							|  |  |  |   EXPECT_EQ(static_cast<size_t>(0), buffer.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(123u, buffer.capacity()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | static void check_forwarding(mock_allocator<int>& alloc, | 
					
						
							|  |  |  |                              allocator_ref<mock_allocator<int>>& ref) { | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   int mem; | 
					
						
							|  |  |  |   // Check if value_type is properly defined.
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   allocator_ref<mock_allocator<int>>::value_type* ptr = &mem; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   // Check forwarding.
 | 
					
						
							|  |  |  |   EXPECT_CALL(alloc, allocate(42)).WillOnce(testing::Return(ptr)); | 
					
						
							|  |  |  |   ref.allocate(42); | 
					
						
							|  |  |  |   EXPECT_CALL(alloc, deallocate(ptr, 42)); | 
					
						
							|  |  |  |   ref.deallocate(ptr, 42); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(AllocatorTest, allocator_ref) { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   StrictMock<mock_allocator<int>> alloc; | 
					
						
							|  |  |  |   typedef allocator_ref<mock_allocator<int>> test_allocator_ref; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   test_allocator_ref ref(&alloc); | 
					
						
							|  |  |  |   // Check if allocator_ref forwards to the underlying allocator.
 | 
					
						
							|  |  |  |   check_forwarding(alloc, ref); | 
					
						
							|  |  |  |   test_allocator_ref ref2(ref); | 
					
						
							|  |  |  |   check_forwarding(alloc, ref2); | 
					
						
							|  |  |  |   test_allocator_ref ref3; | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   EXPECT_EQ(nullptr, ref3.get()); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   ref3 = ref; | 
					
						
							|  |  |  |   check_forwarding(alloc, ref3); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | typedef allocator_ref<std::allocator<char>> TestAllocator; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | static void check_move_buffer( | 
					
						
							|  |  |  |     const char* str, basic_memory_buffer<char, 5, TestAllocator>& buffer) { | 
					
						
							|  |  |  |   std::allocator<char>* alloc = buffer.get_allocator().get(); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   basic_memory_buffer<char, 5, TestAllocator> buffer2(std::move(buffer)); | 
					
						
							|  |  |  |   // Move shouldn't destroy the inline content of the first buffer.
 | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&buffer[0], buffer.size())); | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&buffer2[0], buffer2.size())); | 
					
						
							|  |  |  |   EXPECT_EQ(5u, buffer2.capacity()); | 
					
						
							|  |  |  |   // Move should transfer allocator.
 | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   EXPECT_EQ(nullptr, buffer.get_allocator().get()); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   EXPECT_EQ(alloc, buffer2.get_allocator().get()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-08 22:42:51 +00:00
										 |  |  | TEST(MemoryBufferTest, MoveCtorInlineBuffer) { | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   std::allocator<char> alloc; | 
					
						
							|  |  |  |   basic_memory_buffer<char, 5, TestAllocator> buffer((TestAllocator(&alloc))); | 
					
						
							|  |  |  |   const char test[] = "test"; | 
					
						
							|  |  |  |   buffer.append(test, test + 4); | 
					
						
							|  |  |  |   check_move_buffer("test", buffer); | 
					
						
							|  |  |  |   // Adding one more character fills the inline buffer, but doesn't cause
 | 
					
						
							|  |  |  |   // dynamic allocation.
 | 
					
						
							|  |  |  |   buffer.push_back('a'); | 
					
						
							|  |  |  |   check_move_buffer("testa", buffer); | 
					
						
							| 
									
										
										
										
											2019-10-08 22:42:51 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(MemoryBufferTest, MoveCtorDynamicBuffer) { | 
					
						
							|  |  |  |   std::allocator<char> alloc; | 
					
						
							|  |  |  |   basic_memory_buffer<char, 4, TestAllocator> buffer((TestAllocator(&alloc))); | 
					
						
							|  |  |  |   const char test[] = "test"; | 
					
						
							|  |  |  |   buffer.append(test, test + 4); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   const char* inline_buffer_ptr = &buffer[0]; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   // Adding one more character causes the content to move from the inline to
 | 
					
						
							|  |  |  |   // a dynamically allocated buffer.
 | 
					
						
							| 
									
										
										
										
											2019-10-08 22:42:51 +00:00
										 |  |  |   buffer.push_back('a'); | 
					
						
							|  |  |  |   basic_memory_buffer<char, 4, TestAllocator> buffer2(std::move(buffer)); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   // Move should rip the guts of the first buffer.
 | 
					
						
							|  |  |  |   EXPECT_EQ(inline_buffer_ptr, &buffer[0]); | 
					
						
							| 
									
										
										
										
											2019-10-08 22:42:51 +00:00
										 |  |  |   EXPECT_EQ("testa", std::string(&buffer2[0], buffer2.size())); | 
					
						
							|  |  |  |   EXPECT_GT(buffer2.capacity(), 4u); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | static void check_move_assign_buffer(const char* str, | 
					
						
							|  |  |  |                                      basic_memory_buffer<char, 5>& buffer) { | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   basic_memory_buffer<char, 5> buffer2; | 
					
						
							|  |  |  |   buffer2 = std::move(buffer); | 
					
						
							|  |  |  |   // Move shouldn't destroy the inline content of the first buffer.
 | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&buffer[0], buffer.size())); | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&buffer2[0], buffer2.size())); | 
					
						
							|  |  |  |   EXPECT_EQ(5u, buffer2.capacity()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(MemoryBufferTest, MoveAssignment) { | 
					
						
							|  |  |  |   basic_memory_buffer<char, 5> buffer; | 
					
						
							|  |  |  |   const char test[] = "test"; | 
					
						
							|  |  |  |   buffer.append(test, test + 4); | 
					
						
							|  |  |  |   check_move_assign_buffer("test", buffer); | 
					
						
							|  |  |  |   // Adding one more character fills the inline buffer, but doesn't cause
 | 
					
						
							|  |  |  |   // dynamic allocation.
 | 
					
						
							|  |  |  |   buffer.push_back('a'); | 
					
						
							|  |  |  |   check_move_assign_buffer("testa", buffer); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   const char* inline_buffer_ptr = &buffer[0]; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   // Adding one more character causes the content to move from the inline to
 | 
					
						
							|  |  |  |   // a dynamically allocated buffer.
 | 
					
						
							|  |  |  |   buffer.push_back('b'); | 
					
						
							|  |  |  |   basic_memory_buffer<char, 5> buffer2; | 
					
						
							|  |  |  |   buffer2 = std::move(buffer); | 
					
						
							|  |  |  |   // Move should rip the guts of the first buffer.
 | 
					
						
							|  |  |  |   EXPECT_EQ(inline_buffer_ptr, &buffer[0]); | 
					
						
							|  |  |  |   EXPECT_EQ("testab", std::string(&buffer2[0], buffer2.size())); | 
					
						
							|  |  |  |   EXPECT_GT(buffer2.capacity(), 5u); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(MemoryBufferTest, Grow) { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   typedef allocator_ref<mock_allocator<int>> Allocator; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   typedef basic_memory_buffer<int, 10, Allocator> Base; | 
					
						
							|  |  |  |   mock_allocator<int> alloc; | 
					
						
							|  |  |  |   struct TestMemoryBuffer : Base { | 
					
						
							|  |  |  |     TestMemoryBuffer(Allocator alloc) : Base(alloc) {} | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |     void grow(size_t size) { Base::grow(size); } | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   } buffer((Allocator(&alloc))); | 
					
						
							|  |  |  |   buffer.resize(7); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   using fmt::detail::to_unsigned; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   for (int i = 0; i < 7; ++i) buffer[to_unsigned(i)] = i * i; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   EXPECT_EQ(10u, buffer.capacity()); | 
					
						
							|  |  |  |   int mem[20]; | 
					
						
							|  |  |  |   mem[7] = 0xdead; | 
					
						
							|  |  |  |   EXPECT_CALL(alloc, allocate(20)).WillOnce(Return(mem)); | 
					
						
							|  |  |  |   buffer.grow(20); | 
					
						
							|  |  |  |   EXPECT_EQ(20u, buffer.capacity()); | 
					
						
							|  |  |  |   // Check if size elements have been copied
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   for (int i = 0; i < 7; ++i) EXPECT_EQ(i * i, buffer[to_unsigned(i)]); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   // and no more than that.
 | 
					
						
							|  |  |  |   EXPECT_EQ(0xdead, buffer[7]); | 
					
						
							|  |  |  |   EXPECT_CALL(alloc, deallocate(mem, 20)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(MemoryBufferTest, Allocator) { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   typedef allocator_ref<mock_allocator<char>> TestAllocator; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   basic_memory_buffer<char, 10, TestAllocator> buffer; | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   EXPECT_EQ(nullptr, buffer.get_allocator().get()); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   StrictMock<mock_allocator<char>> alloc; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   char mem; | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |     basic_memory_buffer<char, 10, TestAllocator> buffer2( | 
					
						
							|  |  |  |         (TestAllocator(&alloc))); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |     EXPECT_EQ(&alloc, buffer2.get_allocator().get()); | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |     size_t size = 2 * fmt::inline_buffer_size; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |     EXPECT_CALL(alloc, allocate(size)).WillOnce(Return(&mem)); | 
					
						
							|  |  |  |     buffer2.reserve(size); | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, deallocate(&mem, size)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(MemoryBufferTest, ExceptionInDeallocate) { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   typedef allocator_ref<mock_allocator<char>> TestAllocator; | 
					
						
							|  |  |  |   StrictMock<mock_allocator<char>> alloc; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   basic_memory_buffer<char, 10, TestAllocator> buffer((TestAllocator(&alloc))); | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |   size_t size = 2 * fmt::inline_buffer_size; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   std::vector<char> mem(size); | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, allocate(size)).WillOnce(Return(&mem[0])); | 
					
						
							|  |  |  |     buffer.resize(size); | 
					
						
							|  |  |  |     std::fill(&buffer[0], &buffer[0] + size, 'x'); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   std::vector<char> mem2(2 * size); | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, allocate(2 * size)).WillOnce(Return(&mem2[0])); | 
					
						
							|  |  |  |     std::exception e; | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, deallocate(&mem[0], size)).WillOnce(testing::Throw(e)); | 
					
						
							|  |  |  |     EXPECT_THROW(buffer.reserve(2 * size), std::exception); | 
					
						
							|  |  |  |     EXPECT_EQ(&mem2[0], &buffer[0]); | 
					
						
							|  |  |  |     // Check that the data has been copied.
 | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |     for (size_t i = 0; i < size; ++i) EXPECT_EQ('x', buffer[i]); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   } | 
					
						
							|  |  |  |   EXPECT_CALL(alloc, deallocate(&mem2[0], 2 * size)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-15 07:45:57 -08:00
										 |  |  | TEST(UtilTest, UTF8ToUTF16) { | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::utf8_to_utf16 u("лошадка"); | 
					
						
							| 
									
										
										
										
											2019-12-15 07:45:57 -08:00
										 |  |  |   EXPECT_EQ(L"\x043B\x043E\x0448\x0430\x0434\x043A\x0430", u.str()); | 
					
						
							|  |  |  |   EXPECT_EQ(7, u.size()); | 
					
						
							|  |  |  |   // U+10437 { DESERET SMALL LETTER YEE }
 | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   EXPECT_EQ(L"\xD801\xDC37", fmt::detail::utf8_to_utf16("𐐷").str()); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(fmt::detail::utf8_to_utf16("\xc3\x28"), std::runtime_error, | 
					
						
							| 
									
										
										
										
											2019-12-15 07:45:57 -08:00
										 |  |  |                    "invalid utf8"); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::detail::utf8_to_utf16(fmt::string_view("л", 1)), | 
					
						
							| 
									
										
										
										
											2019-12-18 09:40:51 -08:00
										 |  |  |                    std::runtime_error, "invalid utf8"); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   EXPECT_EQ(L"123456", fmt::detail::utf8_to_utf16("123456").str()); | 
					
						
							| 
									
										
										
										
											2019-12-15 07:45:57 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, UTF8ToUTF16EmptyString) { | 
					
						
							|  |  |  |   std::string s = ""; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::utf8_to_utf16 u(s.c_str()); | 
					
						
							| 
									
										
										
										
											2019-12-15 07:45:57 -08:00
										 |  |  |   EXPECT_EQ(L"", u.str()); | 
					
						
							|  |  |  |   EXPECT_EQ(s.size(), u.size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | TEST(UtilTest, FormatSystemError) { | 
					
						
							|  |  |  |   fmt::memory_buffer message; | 
					
						
							|  |  |  |   fmt::format_system_error(message, EDOM, "test"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("test: {}", get_system_error(EDOM)), | 
					
						
							|  |  |  |             to_string(message)); | 
					
						
							|  |  |  |   message = fmt::memory_buffer(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Check if std::allocator throws on allocating max size_t / 2 chars.
 | 
					
						
							| 
									
										
										
										
											2019-09-08 09:04:09 -07:00
										 |  |  |   size_t max_size = max_value<size_t>() / 2; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   bool throws_on_alloc = false; | 
					
						
							|  |  |  |   try { | 
					
						
							|  |  |  |     std::allocator<char> alloc; | 
					
						
							|  |  |  |     alloc.deallocate(alloc.allocate(max_size), max_size); | 
					
						
							|  |  |  |   } catch (const std::bad_alloc&) { | 
					
						
							|  |  |  |     throws_on_alloc = true; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   if (!throws_on_alloc) { | 
					
						
							|  |  |  |     fmt::print("warning: std::allocator allocates {} chars", max_size); | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   fmt::format_system_error(message, EDOM, fmt::string_view(nullptr, max_size)); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("error {}", EDOM), to_string(message)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, SystemError) { | 
					
						
							|  |  |  |   fmt::system_error e(EDOM, "test"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("test: {}", get_system_error(EDOM)), e.what()); | 
					
						
							|  |  |  |   EXPECT_EQ(EDOM, e.error_code()); | 
					
						
							| 
									
										
										
										
											2019-12-15 08:54:16 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   fmt::system_error error(0, ""); | 
					
						
							|  |  |  |   try { | 
					
						
							|  |  |  |     throw fmt::system_error(EDOM, "test {}", "error"); | 
					
						
							|  |  |  |   } catch (const fmt::system_error& e) { | 
					
						
							|  |  |  |     error = e; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   fmt::memory_buffer message; | 
					
						
							|  |  |  |   fmt::format_system_error(message, EDOM, "test error"); | 
					
						
							|  |  |  |   EXPECT_EQ(to_string(message), error.what()); | 
					
						
							|  |  |  |   EXPECT_EQ(EDOM, error.error_code()); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, ReportSystemError) { | 
					
						
							|  |  |  |   fmt::memory_buffer out; | 
					
						
							|  |  |  |   fmt::format_system_error(out, EDOM, "test error"); | 
					
						
							|  |  |  |   out.push_back('\n'); | 
					
						
							|  |  |  |   EXPECT_WRITE(stderr, fmt::report_system_error(EDOM, "test error"), | 
					
						
							|  |  |  |                to_string(out)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 06:52:52 -08:00
										 |  |  | TEST(StringViewTest, Ctor) { | 
					
						
							|  |  |  |   EXPECT_STREQ("abc", string_view("abc").data()); | 
					
						
							|  |  |  |   EXPECT_EQ(3u, string_view("abc").size()); | 
					
						
							| 
									
										
										
										
											2015-06-26 07:43:54 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 06:52:52 -08:00
										 |  |  |   EXPECT_STREQ("defg", string_view(std::string("defg")).data()); | 
					
						
							|  |  |  |   EXPECT_EQ(4u, string_view(std::string("defg")).size()); | 
					
						
							| 
									
										
										
										
											2015-06-26 07:43:54 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  | TEST(FormatToTest, FormatWithoutArgs) { | 
					
						
							| 
									
										
										
										
											2018-01-14 14:15:59 -08:00
										 |  |  |   std::string s; | 
					
						
							|  |  |  |   fmt::format_to(std::back_inserter(s), "test"); | 
					
						
							|  |  |  |   EXPECT_EQ("test", s); | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatToTest, Format) { | 
					
						
							| 
									
										
										
										
											2018-01-14 14:15:59 -08:00
										 |  |  |   std::string s; | 
					
						
							|  |  |  |   fmt::format_to(std::back_inserter(s), "part{0}", 1); | 
					
						
							|  |  |  |   EXPECT_EQ("part1", s); | 
					
						
							|  |  |  |   fmt::format_to(std::back_inserter(s), "part{0}", 2); | 
					
						
							|  |  |  |   EXPECT_EQ("part1part2", s); | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-25 07:47:15 -07:00
										 |  |  | TEST(FormatToTest, WideString) { | 
					
						
							|  |  |  |   std::vector<wchar_t> buf; | 
					
						
							|  |  |  |   fmt::format_to(std::back_inserter(buf), L"{}{}", 42, L'\0'); | 
					
						
							|  |  |  |   EXPECT_STREQ(buf.data(), L"42"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-23 08:29:26 -07:00
										 |  |  | TEST(FormatToTest, FormatToMemoryBuffer) { | 
					
						
							|  |  |  |   fmt::basic_memory_buffer<char, 100> buffer; | 
					
						
							|  |  |  |   fmt::format_to(buffer, "{}", "foo"); | 
					
						
							|  |  |  |   EXPECT_EQ("foo", to_string(buffer)); | 
					
						
							| 
									
										
										
										
											2018-09-21 07:56:30 -07:00
										 |  |  |   fmt::wmemory_buffer wbuffer; | 
					
						
							|  |  |  |   fmt::format_to(wbuffer, L"{}", L"foo"); | 
					
						
							|  |  |  |   EXPECT_EQ(L"foo", to_string(wbuffer)); | 
					
						
							| 
									
										
										
										
											2018-06-23 08:29:26 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | TEST(FormatterTest, Escape) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("{", format("{{")); | 
					
						
							|  |  |  |   EXPECT_EQ("before {", format("before {{")); | 
					
						
							|  |  |  |   EXPECT_EQ("{ after", format("{{ after")); | 
					
						
							|  |  |  |   EXPECT_EQ("before { after", format("before {{ after")); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("}", format("}}")); | 
					
						
							|  |  |  |   EXPECT_EQ("before }", format("before }}")); | 
					
						
							|  |  |  |   EXPECT_EQ("} after", format("}} after")); | 
					
						
							|  |  |  |   EXPECT_EQ("before } after", format("before }} after")); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("{}", format("{{}}")); | 
					
						
							|  |  |  |   EXPECT_EQ("{42}", format("{{{0}}}", 42)); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, UnmatchedBraces) { | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{"), format_error, "invalid format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("}"), format_error, "unmatched '}' in format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0{}"), format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | TEST(FormatterTest, NoArgs) { EXPECT_EQ("test", format("test")); } | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | TEST(FormatterTest, ArgsInDifferentPositions) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("before 42", format("before {0}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42 after", format("{0} after", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("before 42 after", format("before {0} after", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("answer = 42", format("{0} = {1}", "answer", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42 is the answer", format("{1} is the {0}", "answer", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("abracadabra", format("{0}{1}{0}", "abra", "cad")); | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, ArgErrors) { | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{"), format_error, "invalid format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{?}"), format_error, "invalid format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0"), format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2020-04-14 06:48:55 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0}"), format_error, "argument not found"); | 
					
						
							| 
									
										
										
										
											2018-11-08 08:48:56 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{00}", 42), format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   char format_str[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u", INT_MAX); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u}", INT_MAX); | 
					
						
							| 
									
										
										
										
											2020-04-22 12:02:39 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), format_error, "argument not found"); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <int N> struct TestFormat { | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  |   template <typename... Args> | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   static std::string format(fmt::string_view format_str, const Args&... args) { | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  |     return TestFormat<N - 1>::format(format_str, N - 1, args...); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <> struct TestFormat<0> { | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  |   template <typename... Args> | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   static std::string format(fmt::string_view format_str, const Args&... args) { | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  |     return fmt::format(format_str, args...); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, ManyArgs) { | 
					
						
							|  |  |  |   EXPECT_EQ("19", TestFormat<20>::format("{19}")); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(TestFormat<20>::format("{20}"), format_error, | 
					
						
							| 
									
										
										
										
											2020-04-14 06:48:55 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(TestFormat<21>::format("{21}"), format_error, | 
					
						
							| 
									
										
										
										
											2020-04-14 06:48:55 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   enum { max_packed_args = fmt::detail::max_packed_args }; | 
					
						
							| 
									
										
										
										
											2018-03-07 07:36:13 -08:00
										 |  |  |   std::string format_str = fmt::format("{{{}}}", max_packed_args + 1); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(TestFormat<max_packed_args>::format(format_str), | 
					
						
							| 
									
										
										
										
											2020-04-14 06:48:55 -07:00
										 |  |  |                    format_error, "argument not found"); | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 09:32:59 +08:00
										 |  |  | TEST(FormatterTest, NamedArg) { | 
					
						
							| 
									
										
										
										
											2015-06-11 06:14:42 -07:00
										 |  |  |   EXPECT_EQ("1/a/A", format("{_1}/{a_}/{A_}", fmt::arg("a_", 'a'), | 
					
						
							|  |  |  |                             fmt::arg("A_", "A"), fmt::arg("_1", 1))); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{a}"), format_error, "argument not found"); | 
					
						
							| 
									
										
										
										
											2015-06-10 09:32:59 +08:00
										 |  |  |   EXPECT_EQ(" -42", format("{0:{width}}", -42, fmt::arg("width", 4))); | 
					
						
							|  |  |  |   EXPECT_EQ("st", format("{0:.{precision}}", "str", fmt::arg("precision", 2))); | 
					
						
							| 
									
										
										
										
											2017-12-09 08:15:13 -08:00
										 |  |  |   EXPECT_EQ("1 2", format("{} {two}", 1, fmt::arg("two", 2))); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_EQ("42", format("{c}", fmt::arg("a", 0), fmt::arg("b", 0), | 
					
						
							|  |  |  |                          fmt::arg("c", 42), fmt::arg("d", 0), fmt::arg("e", 0), | 
					
						
							|  |  |  |                          fmt::arg("f", 0), fmt::arg("g", 0), fmt::arg("h", 0), | 
					
						
							|  |  |  |                          fmt::arg("i", 0), fmt::arg("j", 0), fmt::arg("k", 0), | 
					
						
							|  |  |  |                          fmt::arg("l", 0), fmt::arg("m", 0), fmt::arg("n", 0), | 
					
						
							|  |  |  |                          fmt::arg("o", 0), fmt::arg("p", 0))); | 
					
						
							| 
									
										
										
										
											2015-06-10 09:32:59 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  | TEST(FormatterTest, AutoArgIndex) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("abc", format("{}{}{}", 'a', 'b', 'c')); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0}{}", 'a', 'b'), format_error, | 
					
						
							|  |  |  |                    "cannot switch from manual to automatic argument indexing"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{}{0}", 'a', 'b'), format_error, | 
					
						
							|  |  |  |                    "cannot switch from automatic to manual argument indexing"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("1.2", format("{:.{}}", 1.2345, 2)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0}:.{}", 1.2345, 2), format_error, | 
					
						
							|  |  |  |                    "cannot switch from manual to automatic argument indexing"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{:.{0}}", 1.2345, 2), format_error, | 
					
						
							|  |  |  |                    "cannot switch from automatic to manual argument indexing"); | 
					
						
							| 
									
										
										
										
											2020-04-14 06:48:55 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{}"), format_error, "argument not found"); | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | TEST(FormatterTest, EmptySpecs) { EXPECT_EQ("42", format("{0:}", 42)); } | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-22 14:05:56 -08:00
										 |  |  | TEST(FormatterTest, LeftAlign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42  ", format("{0:<4}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42  ", format("{0:<4o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42  ", format("{0:<4x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", format("{0:<5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", format("{0:<5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", format("{0:<5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", format("{0:<5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", format("{0:<5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", format("{0:<5}", 42ull)); | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ("-42.0  ", format("{0:<7}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42.0  ", format("{0:<7}", -42.0l)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("c    ", format("{0:<5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abc  ", format("{0:<5}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ("0xface  ", format("{0:<8}", reinterpret_cast<void*>(0xface))); | 
					
						
							| 
									
										
										
										
											2012-12-21 09:12:04 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-22 17:53:13 -08:00
										 |  |  | TEST(FormatterTest, RightAlign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("  42", format("{0:>4}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", format("{0:>4o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", format("{0:>4x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", format("{0:>5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:>5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", format("{0:>5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:>5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", format("{0:>5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:>5}", 42ull)); | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ("  -42.0", format("{0:>7}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42.0", format("{0:>7}", -42.0l)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("    c", format("{0:>5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("  abc", format("{0:>5}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ("  0xface", format("{0:>8}", reinterpret_cast<void*>(0xface))); | 
					
						
							| 
									
										
										
										
											2012-12-22 17:53:13 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-06 07:12:35 -07:00
										 |  |  | #if FMT_NUMERIC_ALIGN
 | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  | TEST(FormatterTest, NumericAlign) { EXPECT_EQ("0042", format("{0:=4}", 42)); } | 
					
						
							| 
									
										
										
										
											2019-09-06 07:12:35 -07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-24 19:37:50 -08:00
										 |  |  | TEST(FormatterTest, CenterAlign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(" 42  ", format("{0:^5}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", format("{0:^5o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", format("{0:^5x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", format("{0:^5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", format("{0:^5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", format("{0:^5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", format("{0:^5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", format("{0:^5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", format("{0:^5}", 42ull)); | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ(" -42.0 ", format("{0:^7}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42.0 ", format("{0:^7}", -42.0l)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("  c  ", format("{0:^5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ(" abc  ", format("{0:^6}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ(" 0xface ", format("{0:^8}", reinterpret_cast<void*>(0xface))); | 
					
						
							| 
									
										
										
										
											2012-12-24 19:37:50 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-20 20:10:55 -08:00
										 |  |  | TEST(FormatterTest, Fill) { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{<5}", 'c'), format_error, | 
					
						
							|  |  |  |                    "invalid fill character '{'"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{<5}}", 'c'), format_error, | 
					
						
							|  |  |  |                    "invalid fill character '{'"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("**42", format("{0:*>4}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", format("{0:*>5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", format("{0:*>5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", format("{0:*>5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", format("{0:*>5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", format("{0:*>5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", format("{0:*>5}", 42ull)); | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ("**-42.0", format("{0:*>7}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42.0", format("{0:*>7}", -42.0l)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("c****", format("{0:*<5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abc**", format("{0:*<5}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ("**0xface", format("{0:*>8}", reinterpret_cast<void*>(0xface))); | 
					
						
							| 
									
										
										
										
											2018-05-26 09:23:09 -07:00
										 |  |  |   EXPECT_EQ("foo=", format("{:}=", "foo")); | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  |   EXPECT_EQ(std::string("\0\0\0*", 4), format(string_view("{:\0>4}", 6), '*')); | 
					
						
							| 
									
										
										
										
											2020-01-19 13:22:49 -08:00
										 |  |  |   EXPECT_EQ("жж42", format("{0:ж>4}", 42)); | 
					
						
							| 
									
										
										
										
											2020-01-19 15:57:11 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{:\x80\x80\x80\x80\x80>}", 0), format_error, | 
					
						
							|  |  |  |                    "invalid fill"); | 
					
						
							| 
									
										
										
										
											2012-12-20 20:10:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  | TEST(FormatterTest, PlusSign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("+42", format("{0:+}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:+}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("+42", format("{0:+}", 42)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", 42u), format_error, | 
					
						
							|  |  |  |                    "format specifier requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("+42", format("{0:+}", 42l)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", 42ul), format_error, | 
					
						
							|  |  |  |                    "format specifier requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("+42", format("{0:+}", 42ll)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", 42ull), format_error, | 
					
						
							|  |  |  |                    "format specifier requires signed argument"); | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ("+42.0", format("{0:+}", 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("+42.0", format("{0:+}", 42.0l)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+", 'c'), format_error, | 
					
						
							|  |  |  |                    "missing '}' in format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:+}", 'c'), format_error, | 
					
						
							|  |  |  |                    "invalid format specifier for char"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:+}", "abc"), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:+}", reinterpret_cast<void*>(0x42)), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  | TEST(FormatterTest, MinusSign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:-}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:-}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:-}", 42)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", 42u), format_error, | 
					
						
							|  |  |  |                    "format specifier requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:-}", 42l)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", 42ul), format_error, | 
					
						
							|  |  |  |                    "format specifier requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:-}", 42ll)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", 42ull), format_error, | 
					
						
							|  |  |  |                    "format specifier requires signed argument"); | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ("42.0", format("{0:-}", 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42.0", format("{0:-}", 42.0l)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-", 'c'), format_error, | 
					
						
							|  |  |  |                    "missing '}' in format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:-}", 'c'), format_error, | 
					
						
							|  |  |  |                    "invalid format specifier for char"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:-}", "abc"), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:-}", reinterpret_cast<void*>(0x42)), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  | TEST(FormatterTest, SpaceSign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(" 42", format("{0: }", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0: }", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42", format("{0: }", 42)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", 42u), format_error, | 
					
						
							|  |  |  |                    "format specifier requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(" 42", format("{0: }", 42l)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", 42ul), format_error, | 
					
						
							|  |  |  |                    "format specifier requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(" 42", format("{0: }", 42ll)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", 42ull), format_error, | 
					
						
							|  |  |  |                    "format specifier requires signed argument"); | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ(" 42.0", format("{0: }", 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42.0", format("{0: }", 42.0l)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: ", 'c'), format_error, | 
					
						
							|  |  |  |                    "missing '}' in format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0: }", 'c'), format_error, | 
					
						
							|  |  |  |                    "invalid format specifier for char"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0: }", "abc"), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0: }", reinterpret_cast<void*>(0x42)), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  | TEST(FormatterTest, HashFlag) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:#}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:#}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0b101010", format("{0:#b}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0B101010", format("{0:#B}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0b101010", format("{0:#b}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0X42", format("{0:#X}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0x42", format("{0:#x}", -0x42)); | 
					
						
							| 
									
										
										
										
											2019-09-06 07:03:47 -07:00
										 |  |  |   EXPECT_EQ("0", format("{0:#o}", 0)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("042", format("{0:#o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", format("{0:#o}", -042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:#}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", format("{0:#o}", 042u)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:#}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0x42", format("{0:#x}", -0x42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", format("{0:#o}", 042l)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", format("{0:#o}", -042l)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:#}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", format("{0:#o}", 042ul)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:#}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0x42", format("{0:#x}", -0x42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", format("{0:#o}", 042ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", format("{0:#o}", -042ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:#}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", format("{0:#o}", 042ull)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ("-42.0", format("{0:#}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42.0", format("{0:#}", -42.0l)); | 
					
						
							| 
									
										
										
										
											2019-12-18 12:12:09 -08:00
										 |  |  |   EXPECT_EQ("4.e+01", format("{:#.0e}", 42.0)); | 
					
						
							| 
									
										
										
										
											2019-12-30 10:28:27 -10:00
										 |  |  |   EXPECT_EQ("0.", format("{:#.0f}", 0.01)); | 
					
						
							|  |  |  |   auto s = format("{:#.0f}", 0.5);  // MSVC's printf uses wrong rounding mode.
 | 
					
						
							|  |  |  |   EXPECT_TRUE(s == "0." || s == "1."); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:#", 'c'), format_error, | 
					
						
							|  |  |  |                    "missing '}' in format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:#}", 'c'), format_error, | 
					
						
							|  |  |  |                    "invalid format specifier for char"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:#}", "abc"), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:#}", reinterpret_cast<void*>(0x42)), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, ZeroFlag) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:0}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", format("{0:05}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", format("{0:05}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", format("{0:05}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", format("{0:05}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", format("{0:05}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", format("{0:05}", 42ull)); | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ("-0042.0", format("{0:07}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042.0", format("{0:07}", -42.0l)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:0", 'c'), format_error, | 
					
						
							|  |  |  |                    "missing '}' in format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:05}", 'c'), format_error, | 
					
						
							|  |  |  |                    "invalid format specifier for char"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:05}", "abc"), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:05}", reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    format_error, "format specifier requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, Width) { | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   char format_str[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:%u", UINT_MAX); | 
					
						
							|  |  |  |   increment(format_str + 3); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |   size_t size = std::strlen(format_str); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   format_str[size] = '}'; | 
					
						
							|  |  |  |   format_str[size + 1] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:%u", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(" -42", format("{0:4}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", format("{0:6}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", format("{0:7}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", format("{0:6}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", format("{0:7}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -1.23", format("{0:8}", -1.23)); | 
					
						
							|  |  |  |   EXPECT_EQ("    -1.23", format("{0:9}", -1.23l)); | 
					
						
							|  |  |  |   EXPECT_EQ("    0xcafe", format("{0:10}", reinterpret_cast<void*>(0xcafe))); | 
					
						
							|  |  |  |   EXPECT_EQ("x          ", format("{0:11}", 'x')); | 
					
						
							|  |  |  |   EXPECT_EQ("str         ", format("{0:12}", "str")); | 
					
						
							| 
									
										
										
										
											2020-03-04 16:43:49 -08:00
										 |  |  |   EXPECT_EQ(fmt::format("{:*^5}", "🤡"), "**🤡**"); | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-04 16:43:49 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-17 14:49:19 -07:00
										 |  |  | template <typename T> inline T const_check(T value) { return value; } | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-04 13:59:37 +08:00
										 |  |  | TEST(FormatterTest, RuntimeWidth) { | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   char format_str[BUFFER_SIZE]; | 
					
						
							|  |  |  |   safe_sprintf(format_str, "{0:{%u", UINT_MAX); | 
					
						
							|  |  |  |   increment(format_str + 4); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |   size_t size = std::strlen(format_str); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   format_str[size] = '}'; | 
					
						
							|  |  |  |   format_str[size + 1] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   format_str[size + 1] = '}'; | 
					
						
							|  |  |  |   format_str[size + 2] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-04 13:59:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{", 0), format_error, "invalid format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{}", 0), format_error, | 
					
						
							|  |  |  |                    "cannot switch from manual to automatic argument indexing"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{?}}", 0), format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2020-04-22 12:02:39 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0), format_error, "argument not found"); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{0:}}", 0), format_error, | 
					
						
							|  |  |  |                    "invalid format string"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, -1), format_error, "negative width"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, (INT_MAX + 1u)), format_error, | 
					
						
							|  |  |  |                    "number is too big"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, -1l), format_error, "negative width"); | 
					
						
							| 
									
										
										
										
											2019-03-17 14:49:19 -07:00
										 |  |  |   if (const_check(sizeof(long) > sizeof(int))) { | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |     long value = INT_MAX; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |     EXPECT_THROW_MSG(format("{0:{1}}", 0, (value + 1)), format_error, | 
					
						
							|  |  |  |                      "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, (INT_MAX + 1ul)), format_error, | 
					
						
							|  |  |  |                    "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, '0'), format_error, | 
					
						
							|  |  |  |                    "width is not integer"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, 0.0), format_error, | 
					
						
							|  |  |  |                    "width is not integer"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ(" -42", format("{0:{1}}", -42, 4)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:{1}}", 42u, 5)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", format("{0:{1}}", -42l, 6)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", format("{0:{1}}", 42ul, 7)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", format("{0:{1}}", -42ll, 6)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", format("{0:{1}}", 42ull, 7)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -1.23", format("{0:{1}}", -1.23, 8)); | 
					
						
							|  |  |  |   EXPECT_EQ("    -1.23", format("{0:{1}}", -1.23l, 9)); | 
					
						
							| 
									
										
										
										
											2015-06-11 06:14:42 -07:00
										 |  |  |   EXPECT_EQ("    0xcafe", | 
					
						
							|  |  |  |             format("{0:{1}}", reinterpret_cast<void*>(0xcafe), 10)); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   EXPECT_EQ("x          ", format("{0:{1}}", 'x', 11)); | 
					
						
							|  |  |  |   EXPECT_EQ("str         ", format("{0:{1}}", "str", 12)); | 
					
						
							| 
									
										
										
										
											2015-06-04 13:59:37 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | TEST(FormatterTest, Precision) { | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   char format_str[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:.%u", UINT_MAX); | 
					
						
							|  |  |  |   increment(format_str + 4); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |   size_t size = std::strlen(format_str); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   format_str[size] = '}'; | 
					
						
							|  |  |  |   format_str[size + 1] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:.%u", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:.%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.", 0), format_error, | 
					
						
							|  |  |  |                    "missing precision specifier"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.}", 0), format_error, | 
					
						
							|  |  |  |                    "missing precision specifier"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2", 0), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42u), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42u), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42l), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42l), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42ul), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42ul), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42ll), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42ll), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42ull), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42ull), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:3.0}", 'x'), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("1.2", format("{0:.2}", 1.2345)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.2", format("{0:.2}", 1.2345l)); | 
					
						
							| 
									
										
										
										
											2019-11-19 15:18:38 -08:00
										 |  |  |   EXPECT_EQ("1.2e+56", format("{:.2}", 1.234e56)); | 
					
						
							| 
									
										
										
										
											2019-11-29 06:17:29 -08:00
										 |  |  |   EXPECT_EQ("1e+00", format("{:.0e}", 1.0L)); | 
					
						
							| 
									
										
										
										
											2019-12-02 11:36:33 -08:00
										 |  |  |   EXPECT_EQ("  0.0e+00", format("{:9.1e}", 0.0)); | 
					
						
							| 
									
										
										
										
											2019-11-24 06:38:01 -08:00
										 |  |  |   EXPECT_EQ( | 
					
						
							|  |  |  |       "4.9406564584124654417656879286822137236505980261432476442558568250067550" | 
					
						
							|  |  |  |       "727020875186529983636163599237979656469544571773092665671035593979639877" | 
					
						
							|  |  |  |       "479601078187812630071319031140452784581716784898210368871863605699873072" | 
					
						
							|  |  |  |       "305000638740915356498438731247339727316961514003171538539807412623856559" | 
					
						
							|  |  |  |       "117102665855668676818703956031062493194527159149245532930545654440112748" | 
					
						
							|  |  |  |       "012970999954193198940908041656332452475714786901472678015935523861155013" | 
					
						
							|  |  |  |       "480352649347201937902681071074917033322268447533357208324319361e-324", | 
					
						
							|  |  |  |       format("{:.494}", 4.9406564584124654E-324)); | 
					
						
							| 
									
										
										
										
											2019-11-25 14:57:11 -08:00
										 |  |  |   EXPECT_EQ( | 
					
						
							|  |  |  |       "-0X1.41FE3FFE71C9E000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000P+127", | 
					
						
							|  |  |  |       format("{:.838A}", -2.14001164E+38)); | 
					
						
							| 
									
										
										
										
											2019-11-24 08:22:18 -08:00
										 |  |  |   EXPECT_EQ("123.", format("{:#.0f}", 123.0)); | 
					
						
							| 
									
										
										
										
											2020-03-14 11:37:38 -07:00
										 |  |  |   EXPECT_EQ("1.23", format("{:.02f}", 1.234)); | 
					
						
							| 
									
										
										
										
											2020-03-24 09:01:57 -07:00
										 |  |  |   EXPECT_EQ("0.001", format("{:.1g}", 0.001)); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", reinterpret_cast<void*>(0xcafe)), | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", reinterpret_cast<void*>(0xcafe)), | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{:.{}e}", 42.0, fmt::detail::max_value<int>()), | 
					
						
							| 
									
										
										
										
											2019-12-15 07:45:57 -08:00
										 |  |  |                    format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-08 07:56:08 -08:00
										 |  |  |   EXPECT_EQ("st", format("{0:.2}", "str")); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | TEST(FormatterTest, RuntimePrecision) { | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   char format_str[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:.{%u", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2014-08-27 08:24:31 -07:00
										 |  |  |   increment(format_str + 5); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |   size_t size = std::strlen(format_str); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   format_str[size] = '}'; | 
					
						
							|  |  |  |   format_str[size + 1] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   format_str[size + 1] = '}'; | 
					
						
							|  |  |  |   format_str[size + 2] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{", 0), format_error, "invalid format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{}", 0), format_error, | 
					
						
							|  |  |  |                    "cannot switch from manual to automatic argument indexing"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{?}}", 0), format_error, | 
					
						
							|  |  |  |                    "invalid format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}", 0, 0), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							| 
									
										
										
										
											2020-04-22 12:02:39 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0), format_error, "argument not found"); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{0:}}", 0), format_error, | 
					
						
							|  |  |  |                    "invalid format string"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, -1), format_error, | 
					
						
							|  |  |  |                    "negative precision"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, (INT_MAX + 1u)), format_error, | 
					
						
							|  |  |  |                    "number is too big"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, -1l), format_error, | 
					
						
							|  |  |  |                    "negative precision"); | 
					
						
							| 
									
										
										
										
											2019-03-17 14:49:19 -07:00
										 |  |  |   if (const_check(sizeof(long) > sizeof(int))) { | 
					
						
							| 
									
										
										
										
											2012-12-21 15:02:25 -08:00
										 |  |  |     long value = INT_MAX; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |     EXPECT_THROW_MSG(format("{0:.{1}}", 0, (value + 1)), format_error, | 
					
						
							|  |  |  |                      "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, (INT_MAX + 1ul)), format_error, | 
					
						
							|  |  |  |                    "number is too big"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, '0'), format_error, | 
					
						
							|  |  |  |                    "precision is not integer"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, 0.0), format_error, | 
					
						
							|  |  |  |                    "precision is not integer"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42u, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42u, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42l, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42l, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42ul, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42ul, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42ll, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42ll, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42ull, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42ull, 2), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:3.{1}}", 'x', 0), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("1.2", format("{0:.{1}}", 1.2345, 2)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.2", format("{1:.{0}}", 2, 1.2345l)); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", reinterpret_cast<void*>(0xcafe), 2), | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", reinterpret_cast<void*>(0xcafe), 2), | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							| 
									
										
										
										
											2015-01-08 07:56:08 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("st", format("{0:.{1}}", "str", 2)); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  | template <typename T> | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | void check_unknown_types(const T& value, const char* types, const char*) { | 
					
						
							| 
									
										
										
										
											2017-11-23 10:12:23 -08:00
										 |  |  |   char format_str[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   const char* special = ".0123456789}"; | 
					
						
							| 
									
										
										
										
											2012-12-16 15:46:06 -08:00
										 |  |  |   for (int i = CHAR_MIN; i <= CHAR_MAX; ++i) { | 
					
						
							| 
									
										
										
										
											2015-05-12 08:57:21 -07:00
										 |  |  |     char c = static_cast<char>(i); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |     if (std::strchr(types, c) || std::strchr(special, c) || !c) continue; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |     safe_sprintf(format_str, "{0:10%c}", c); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |     const char* message = "invalid type specifier"; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |     EXPECT_THROW_MSG(format(format_str, value), format_error, message) | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |         << format_str << " " << message; | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-11 09:00:06 -07:00
										 |  |  | TEST(BoolTest, FormatBool) { | 
					
						
							|  |  |  |   EXPECT_EQ("true", format("{}", true)); | 
					
						
							|  |  |  |   EXPECT_EQ("false", format("{}", false)); | 
					
						
							|  |  |  |   EXPECT_EQ("1", format("{:d}", true)); | 
					
						
							|  |  |  |   EXPECT_EQ("true ", format("{:5}", true)); | 
					
						
							|  |  |  |   EXPECT_EQ(L"true", format(L"{}", true)); | 
					
						
							| 
									
										
										
										
											2014-01-28 12:49:36 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | TEST(FormatterTest, FormatShort) { | 
					
						
							|  |  |  |   short s = 42; | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:d}", s)); | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  |   unsigned short us = 42; | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:d}", us)); | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | TEST(FormatterTest, FormatInt) { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:v", 42), format_error, | 
					
						
							|  |  |  |                    "missing '}' in format string"); | 
					
						
							| 
									
										
										
										
											2020-05-17 08:44:55 -07:00
										 |  |  |   check_unknown_types(42, "bBdoxXnLc", "integer"); | 
					
						
							|  |  |  |   EXPECT_EQ("x", format("{:c}", static_cast<int>('x'))); | 
					
						
							| 
									
										
										
										
											2013-11-14 08:45:50 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatBin) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0", format("{0:b}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("101010", format("{0:b}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("101010", format("{0:b}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-101010", format("{0:b}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("11000000111001", format("{0:b}", 12345)); | 
					
						
							|  |  |  |   EXPECT_EQ("10010001101000101011001111000", format("{0:b}", 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("10010000101010111100110111101111", format("{0:b}", 0x90ABCDEF)); | 
					
						
							| 
									
										
										
										
											2013-11-14 08:45:50 -08:00
										 |  |  |   EXPECT_EQ("11111111111111111111111111111111", | 
					
						
							| 
									
										
										
										
											2019-09-08 09:04:09 -07:00
										 |  |  |             format("{0:b}", max_value<uint32_t>())); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #if FMT_USE_INT128
 | 
					
						
							| 
									
										
										
										
											2019-09-05 17:43:40 -07:00
										 |  |  | constexpr auto int128_max = static_cast<__int128_t>( | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |     (static_cast<__uint128_t>(1) << ((__SIZEOF_INT128__ * CHAR_BIT) - 1)) - 1); | 
					
						
							| 
									
										
										
										
											2019-09-05 17:43:40 -07:00
										 |  |  | constexpr auto int128_min = -int128_max - 1; | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-05 17:43:40 -07:00
										 |  |  | constexpr auto uint128_max = ~static_cast<__uint128_t>(0); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | TEST(FormatterTest, FormatDec) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0", format("{0}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:d}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345", format("{0}", 12345)); | 
					
						
							|  |  |  |   EXPECT_EQ("67890", format("{0}", 67890)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #if FMT_USE_INT128
 | 
					
						
							|  |  |  |   EXPECT_EQ("0", format("{0}", static_cast<__int128_t>(0))); | 
					
						
							|  |  |  |   EXPECT_EQ("0", format("{0}", static_cast<__uint128_t>(0))); | 
					
						
							|  |  |  |   EXPECT_EQ("9223372036854775808", | 
					
						
							|  |  |  |             format("{0}", static_cast<__int128_t>(INT64_MAX) + 1)); | 
					
						
							|  |  |  |   EXPECT_EQ("-9223372036854775809", | 
					
						
							|  |  |  |             format("{0}", static_cast<__int128_t>(INT64_MIN) - 1)); | 
					
						
							|  |  |  |   EXPECT_EQ("18446744073709551616", | 
					
						
							|  |  |  |             format("{0}", static_cast<__int128_t>(UINT64_MAX) + 1)); | 
					
						
							|  |  |  |   EXPECT_EQ("170141183460469231731687303715884105727", | 
					
						
							| 
									
										
										
										
											2019-09-05 17:43:40 -07:00
										 |  |  |             format("{0}", int128_max)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("-170141183460469231731687303715884105728", | 
					
						
							| 
									
										
										
										
											2019-09-05 17:43:40 -07:00
										 |  |  |             format("{0}", int128_min)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("340282366920938463463374607431768211455", | 
					
						
							| 
									
										
										
										
											2019-09-05 17:43:40 -07:00
										 |  |  |             format("{0}", uint128_max)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%d", INT_MIN); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%d", INT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", INT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%u", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%ld", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%ld", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lu", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", ULONG_MAX)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatHex) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0", format("{0:x}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:x}", 0x42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:x}", -0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345678", format("{0:x}", 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("90abcdef", format("{0:x}", 0x90abcdef)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345678", format("{0:X}", 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("90ABCDEF", format("{0:X}", 0x90ABCDEF)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #if FMT_USE_INT128
 | 
					
						
							|  |  |  |   EXPECT_EQ("0", format("{0:x}", static_cast<__int128_t>(0))); | 
					
						
							|  |  |  |   EXPECT_EQ("0", format("{0:x}", static_cast<__uint128_t>(0))); | 
					
						
							|  |  |  |   EXPECT_EQ("8000000000000000", | 
					
						
							|  |  |  |             format("{0:x}", static_cast<__int128_t>(INT64_MAX) + 1)); | 
					
						
							|  |  |  |   EXPECT_EQ("-8000000000000001", | 
					
						
							|  |  |  |             format("{0:x}", static_cast<__int128_t>(INT64_MIN) - 1)); | 
					
						
							|  |  |  |   EXPECT_EQ("10000000000000000", | 
					
						
							|  |  |  |             format("{0:x}", static_cast<__int128_t>(UINT64_MAX) + 1)); | 
					
						
							| 
									
										
										
										
											2019-09-05 17:43:40 -07:00
										 |  |  |   EXPECT_EQ("7fffffffffffffffffffffffffffffff", format("{0:x}", int128_max)); | 
					
						
							|  |  |  |   EXPECT_EQ("-80000000000000000000000000000000", format("{0:x}", int128_min)); | 
					
						
							|  |  |  |   EXPECT_EQ("ffffffffffffffffffffffffffffffff", format("{0:x}", uint128_max)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-10-23 20:04:32 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%x", 0 - static_cast<unsigned>(INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%x", INT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", INT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%x", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%lx", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lx", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lx", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", ULONG_MAX)); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  | TEST(FormatterTest, FormatOct) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0", format("{0:o}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:o}", 042u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:o}", -042)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345670", format("{0:o}", 012345670)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #if FMT_USE_INT128
 | 
					
						
							|  |  |  |   EXPECT_EQ("0", format("{0:o}", static_cast<__int128_t>(0))); | 
					
						
							|  |  |  |   EXPECT_EQ("0", format("{0:o}", static_cast<__uint128_t>(0))); | 
					
						
							|  |  |  |   EXPECT_EQ("1000000000000000000000", | 
					
						
							|  |  |  |             format("{0:o}", static_cast<__int128_t>(INT64_MAX) + 1)); | 
					
						
							|  |  |  |   EXPECT_EQ("-1000000000000000000001", | 
					
						
							|  |  |  |             format("{0:o}", static_cast<__int128_t>(INT64_MIN) - 1)); | 
					
						
							|  |  |  |   EXPECT_EQ("2000000000000000000000", | 
					
						
							|  |  |  |             format("{0:o}", static_cast<__int128_t>(UINT64_MAX) + 1)); | 
					
						
							|  |  |  |   EXPECT_EQ("1777777777777777777777777777777777777777777", | 
					
						
							| 
									
										
										
										
											2019-09-05 17:43:40 -07:00
										 |  |  |             format("{0:o}", int128_max)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("-2000000000000000000000000000000000000000000", | 
					
						
							| 
									
										
										
										
											2019-09-05 17:43:40 -07:00
										 |  |  |             format("{0:o}", int128_min)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("3777777777777777777777777777777777777777777", | 
					
						
							| 
									
										
										
										
											2019-09-05 17:43:40 -07:00
										 |  |  |             format("{0:o}", uint128_max)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%o", 0 - static_cast<unsigned>(INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%o", INT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", INT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%o", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%lo", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lo", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lo", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", ULONG_MAX)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-17 19:06:03 -07:00
										 |  |  | TEST(FormatterTest, FormatIntLocale) { | 
					
						
							| 
									
										
										
										
											2019-11-03 00:28:52 +01:00
										 |  |  |   EXPECT_EQ("1234", format("{:n}", 1234)); | 
					
						
							| 
									
										
										
										
											2020-04-02 06:58:38 -07:00
										 |  |  |   EXPECT_EQ("1234", format("{:L}", 1234)); | 
					
						
							| 
									
										
										
										
											2016-04-17 19:06:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-01 15:21:57 -08:00
										 |  |  | struct ConvertibleToLongLong { | 
					
						
							|  |  |  |   operator long long() const { return 1LL << 32; } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatConvertibleToLongLong) { | 
					
						
							|  |  |  |   EXPECT_EQ("100000000", format("{:x}", ConvertibleToLongLong())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | TEST(FormatterTest, FormatFloat) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("392.500000", format("{0:f}", 392.5f)); | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | TEST(FormatterTest, FormatDouble) { | 
					
						
							| 
									
										
										
										
											2020-04-10 07:16:20 -07:00
										 |  |  |   check_unknown_types(1.2, "eEfFgGaAnL%", "double"); | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ("0.0", format("{:}", 0.0)); | 
					
						
							| 
									
										
										
										
											2018-11-03 16:20:45 -07:00
										 |  |  |   EXPECT_EQ("0.000000", format("{:f}", 0.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("0", format("{:g}", 0.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{:}", 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{:g}", 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{:G}", 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", format("{:f}", 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", format("{:F}", 392.65)); | 
					
						
							| 
									
										
										
										
											2020-04-10 07:16:20 -07:00
										 |  |  |   EXPECT_EQ("42", format("{:L}", 42.0)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%e", 392.65); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:e}", 392.65)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%E", 392.65); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:E}", 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("+0000392.6", format("{0:+010.4g}", 392.65)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%a", -42.0); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{:a}", -42.0)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%A", -42.0); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{:A}", -42.0)); | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-09 13:53:23 -08:00
										 |  |  | TEST(FormatterTest, PrecisionRounding) { | 
					
						
							| 
									
										
										
										
											2019-06-30 06:54:41 -07:00
										 |  |  |   EXPECT_EQ("0", format("{:.0f}", 0.0)); | 
					
						
							| 
									
										
										
										
											2019-06-30 08:44:59 -07:00
										 |  |  |   EXPECT_EQ("0", format("{:.0f}", 0.01)); | 
					
						
							| 
									
										
										
										
											2019-03-13 10:46:25 -07:00
										 |  |  |   EXPECT_EQ("0", format("{:.0f}", 0.1)); | 
					
						
							| 
									
										
										
										
											2019-03-09 13:53:23 -08:00
										 |  |  |   EXPECT_EQ("0.000", format("{:.3f}", 0.00049)); | 
					
						
							| 
									
										
										
										
											2019-03-09 15:14:23 -08:00
										 |  |  |   EXPECT_EQ("0.001", format("{:.3f}", 0.0005)); | 
					
						
							| 
									
										
										
										
											2019-03-13 13:10:18 -07:00
										 |  |  |   EXPECT_EQ("0.001", format("{:.3f}", 0.00149)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.002", format("{:.3f}", 0.0015)); | 
					
						
							| 
									
										
										
										
											2019-03-15 08:42:14 -07:00
										 |  |  |   EXPECT_EQ("1.000", format("{:.3f}", 0.9999)); | 
					
						
							| 
									
										
										
										
											2019-03-13 13:10:18 -07:00
										 |  |  |   EXPECT_EQ("0.00123", format("{:.3}", 0.00123)); | 
					
						
							| 
									
										
										
										
											2019-04-27 07:42:27 -07:00
										 |  |  |   EXPECT_EQ("0.1", format("{:.16g}", 0.1)); | 
					
						
							| 
									
										
										
										
											2019-03-15 08:42:14 -07:00
										 |  |  |   // Trigger rounding error in Grisu by a carefully chosen number.
 | 
					
						
							|  |  |  |   auto n = 3788512123356.985352; | 
					
						
							|  |  |  |   char buffer[64]; | 
					
						
							| 
									
										
										
										
											2019-08-11 06:53:03 -07:00
										 |  |  |   safe_sprintf(buffer, "%f", n); | 
					
						
							| 
									
										
										
										
											2019-03-15 08:42:14 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{:f}", n)); | 
					
						
							| 
									
										
										
										
											2019-03-09 13:53:23 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-28 08:27:54 -08:00
										 |  |  | TEST(FormatterTest, FormatNaN) { | 
					
						
							|  |  |  |   double nan = std::numeric_limits<double>::quiet_NaN(); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("nan", format("{}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("+nan", format("{:+}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ(" nan", format("{: }", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("NAN", format("{:F}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("nan    ", format("{:<7}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("  nan  ", format("{:^7}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("    nan", format("{:>7}", nan)); | 
					
						
							| 
									
										
										
										
											2012-12-28 08:27:54 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-29 06:44:14 -08:00
										 |  |  | TEST(FormatterTest, FormatInfinity) { | 
					
						
							|  |  |  |   double inf = std::numeric_limits<double>::infinity(); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("inf", format("{}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("+inf", format("{:+}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("-inf", format("{}", -inf)); | 
					
						
							|  |  |  |   EXPECT_EQ(" inf", format("{: }", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("INF", format("{:F}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("inf    ", format("{:<7}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("  inf  ", format("{:^7}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("    inf", format("{:>7}", inf)); | 
					
						
							| 
									
										
										
										
											2012-12-29 06:44:14 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | TEST(FormatterTest, FormatLongDouble) { | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ("0.0", format("{0:}", 0.0l)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0.000000", format("{0:f}", 0.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{0:}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{0:g}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{0:G}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", format("{0:f}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", format("{0:F}", 392.65l)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%Le", 392.65l); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:e}", 392.65l)); | 
					
						
							| 
									
										
										
										
											2015-06-23 07:39:49 -07:00
										 |  |  |   EXPECT_EQ("+0000392.6", format("{0:+010.4g}", 392.64l)); | 
					
						
							| 
									
										
										
										
											2019-06-12 20:03:56 -07:00
										 |  |  |   safe_sprintf(buffer, "%La", 3.31l); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer, format("{:a}", 3.31l)); | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, FormatChar) { | 
					
						
							| 
									
										
										
										
											2020-04-02 06:58:38 -07:00
										 |  |  |   const char types[] = "cbBdoxXnL"; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_unknown_types('a', types, "char"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("a", format("{0}", 'a')); | 
					
						
							|  |  |  |   EXPECT_EQ("z", format("{0:c}", 'z')); | 
					
						
							|  |  |  |   EXPECT_EQ(L"a", format(L"{0}", 'a')); | 
					
						
							| 
									
										
										
										
											2014-07-25 07:10:33 -07:00
										 |  |  |   int n = 'x'; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   for (const char* type = types + 1; *type; ++type) { | 
					
						
							| 
									
										
										
										
											2014-07-25 07:10:33 -07:00
										 |  |  |     std::string format_str = fmt::format("{{:{}}}", *type); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format(format_str, n), fmt::format(format_str, 'x')); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:02X}", n), fmt::format("{:02X}", 'x')); | 
					
						
							| 
									
										
										
										
											2013-12-07 08:12:03 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-14 12:34:56 -07:00
										 |  |  | TEST(FormatterTest, FormatVolatileChar) { | 
					
						
							|  |  |  |   volatile char c = 'x'; | 
					
						
							|  |  |  |   EXPECT_EQ("x", format("{}", c)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-05 20:46:22 -05:00
										 |  |  | TEST(FormatterTest, FormatUnsignedChar) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{}", static_cast<unsigned char>(42))); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{}", static_cast<uint8_t>(42))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 08:12:03 -08:00
										 |  |  | TEST(FormatterTest, FormatWChar) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(L"a", format(L"{0}", L'a')); | 
					
						
							| 
									
										
										
										
											2013-12-07 08:12:03 -08:00
										 |  |  |   // This shouldn't compile:
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   // format("{}", L'a');
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  | TEST(FormatterTest, FormatCString) { | 
					
						
							| 
									
										
										
										
											2015-11-09 07:17:36 -08:00
										 |  |  |   check_unknown_types("test", "sp", "string"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("test", format("{0}", "test")); | 
					
						
							|  |  |  |   EXPECT_EQ("test", format("{0:s}", "test")); | 
					
						
							| 
									
										
										
										
											2012-12-17 16:39:49 -08:00
										 |  |  |   char nonconst[] = "nonconst"; | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("nonconst", format("{0}", nonconst)); | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0}", static_cast<const char*>(nullptr)), | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    format_error, "string pointer is null"); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-30 08:15:56 -07:00
										 |  |  | TEST(FormatterTest, FormatSCharString) { | 
					
						
							|  |  |  |   signed char str[] = "test"; | 
					
						
							|  |  |  |   EXPECT_EQ("test", format("{0:s}", str)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   const signed char* const_str = str; | 
					
						
							| 
									
										
										
										
											2014-09-30 08:15:56 -07:00
										 |  |  |   EXPECT_EQ("test", format("{0:s}", const_str)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatUCharString) { | 
					
						
							|  |  |  |   unsigned char str[] = "test"; | 
					
						
							|  |  |  |   EXPECT_EQ("test", format("{0:s}", str)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   const unsigned char* const_str = str; | 
					
						
							| 
									
										
										
										
											2014-09-30 08:15:56 -07:00
										 |  |  |   EXPECT_EQ("test", format("{0:s}", const_str)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   unsigned char* ptr = str; | 
					
						
							| 
									
										
										
										
											2016-08-23 08:42:25 -07:00
										 |  |  |   EXPECT_EQ("test", format("{0:s}", ptr)); | 
					
						
							| 
									
										
										
										
											2014-09-30 08:15:56 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | TEST(FormatterTest, FormatPointer) { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_unknown_types(reinterpret_cast<void*>(0x1234), "p", "pointer"); | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   EXPECT_EQ("0x0", format("{0}", static_cast<void*>(nullptr))); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0x1234", format("{0}", reinterpret_cast<void*>(0x1234))); | 
					
						
							|  |  |  |   EXPECT_EQ("0x1234", format("{0:p}", reinterpret_cast<void*>(0x1234))); | 
					
						
							| 
									
										
										
										
											2012-12-24 12:28:54 -08:00
										 |  |  |   EXPECT_EQ("0x" + std::string(sizeof(void*) * CHAR_BIT / 4, 'f'), | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |             format("{0}", reinterpret_cast<void*>(~uintptr_t()))); | 
					
						
							| 
									
										
										
										
											2017-08-27 08:41:28 -07:00
										 |  |  |   EXPECT_EQ("0x1234", format("{}", fmt::ptr(reinterpret_cast<int*>(0x1234)))); | 
					
						
							| 
									
										
										
										
											2019-04-18 13:48:44 +08:00
										 |  |  |   std::unique_ptr<int> up(new int(1)); | 
					
						
							|  |  |  |   EXPECT_EQ(format("{}", fmt::ptr(up.get())), format("{}", fmt::ptr(up))); | 
					
						
							|  |  |  |   std::shared_ptr<int> sp(new int(1)); | 
					
						
							|  |  |  |   EXPECT_EQ(format("{}", fmt::ptr(sp.get())), format("{}", fmt::ptr(sp))); | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   EXPECT_EQ("0x0", format("{}", nullptr)); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatString) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("test", format("{0}", std::string("test"))); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-26 15:13:10 -07:00
										 |  |  | TEST(FormatterTest, FormatStringView) { | 
					
						
							| 
									
										
										
										
											2018-03-21 09:01:51 -07:00
										 |  |  |   EXPECT_EQ("test", format("{}", string_view("test"))); | 
					
						
							|  |  |  |   EXPECT_EQ("", format("{}", string_view())); | 
					
						
							| 
									
										
										
										
											2013-11-08 09:53:50 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-22 19:48:37 -07:00
										 |  |  | #ifdef FMT_USE_STRING_VIEW
 | 
					
						
							|  |  |  | struct string_viewable {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FMT_BEGIN_NAMESPACE | 
					
						
							|  |  |  | template <> struct formatter<string_viewable> : formatter<std::string_view> { | 
					
						
							|  |  |  |   auto format(string_viewable, format_context& ctx) -> decltype(ctx.out()) { | 
					
						
							|  |  |  |     return formatter<std::string_view>::format("foo", ctx); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | FMT_END_NAMESPACE | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-26 06:50:22 -10:00
										 |  |  | TEST(FormatterTest, FormatStdStringView) { | 
					
						
							| 
									
										
										
										
											2019-06-22 19:48:37 -07:00
										 |  |  |   EXPECT_EQ("test", format("{}", std::string_view("test"))); | 
					
						
							|  |  |  |   EXPECT_EQ("foo", format("{}", string_viewable())); | 
					
						
							| 
									
										
										
										
											2018-02-24 18:19:30 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-12-05 13:12:46 +09:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct explicitly_convertible_to_std_string_view { | 
					
						
							|  |  |  |   explicit operator std::string_view() const { return "foo"; } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace fmt { | 
					
						
							|  |  |  | template <> | 
					
						
							|  |  |  | struct formatter<explicitly_convertible_to_std_string_view> | 
					
						
							|  |  |  |     : formatter<std::string_view> { | 
					
						
							|  |  |  |   auto format(const explicitly_convertible_to_std_string_view& v, | 
					
						
							| 
									
										
										
										
											2019-12-09 13:25:08 -08:00
										 |  |  |               format_context& ctx) -> decltype(ctx.out()) { | 
					
						
							| 
									
										
										
										
											2019-12-05 13:12:46 +09:00
										 |  |  |     return format_to(ctx.out(), "'{}'", std::string_view(v)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | }  // namespace fmt
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatExplicitlyConvertibleToStdStringView) { | 
					
						
							|  |  |  |   EXPECT_EQ("'foo'", | 
					
						
							|  |  |  |             fmt::format("{}", explicitly_convertible_to_std_string_view())); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-24 18:19:30 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-19 16:23:30 -07:00
										 |  |  | // std::is_constructible is broken in MSVC until version 2015.
 | 
					
						
							|  |  |  | #if !FMT_MSC_VER || FMT_MSC_VER >= 1900
 | 
					
						
							|  |  |  | struct explicitly_convertible_to_wstring_view { | 
					
						
							|  |  |  |   explicit operator fmt::wstring_view() const { return L"foo"; } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, FormatExplicitlyConvertibleToWStringView) { | 
					
						
							|  |  |  |   EXPECT_EQ(L"foo", | 
					
						
							|  |  |  |             fmt::format(L"{}", explicitly_convertible_to_wstring_view())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace fake_qt { | 
					
						
							|  |  |  | class QString { | 
					
						
							|  |  |  |  public: | 
					
						
							|  |  |  |   QString(const wchar_t* s) : s_(std::make_shared<std::wstring>(s)) {} | 
					
						
							|  |  |  |   const wchar_t* utf16() const FMT_NOEXCEPT { return s_->data(); } | 
					
						
							|  |  |  |   int size() const FMT_NOEXCEPT { return static_cast<int>(s_->size()); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  private: | 
					
						
							|  |  |  |   std::shared_ptr<std::wstring> s_; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | fmt::basic_string_view<wchar_t> to_string_view(const QString& s) FMT_NOEXCEPT { | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |   return {s.utf16(), static_cast<size_t>(s.size())}; | 
					
						
							| 
									
										
										
										
											2020-04-19 16:23:30 -07:00
										 |  |  | } | 
					
						
							|  |  |  | }  // namespace fake_qt
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, FormatForeignStrings) { | 
					
						
							|  |  |  |   using fake_qt::QString; | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format(QString(L"{}"), 42), L"42"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format(QString(L"{}"), QString(L"42")), L"42"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-12 08:33:51 -07:00
										 |  |  | FMT_BEGIN_NAMESPACE | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <> struct formatter<Date> { | 
					
						
							| 
									
										
										
										
											2017-09-16 16:50:40 -07:00
										 |  |  |   template <typename ParseContext> | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   FMT_CONSTEXPR auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { | 
					
						
							| 
									
										
										
										
											2017-11-05 13:18:42 -08:00
										 |  |  |     auto it = ctx.begin(); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |     if (*it == 'd') ++it; | 
					
						
							| 
									
										
										
										
											2017-11-05 13:18:42 -08:00
										 |  |  |     return it; | 
					
						
							| 
									
										
										
										
											2017-08-13 13:09:02 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   auto format(const Date& d, format_context& ctx) -> decltype(ctx.out()) { | 
					
						
							| 
									
										
										
										
											2018-04-22 09:16:32 -07:00
										 |  |  |     format_to(ctx.out(), "{}-{}-{}", d.year(), d.month(), d.day()); | 
					
						
							|  |  |  |     return ctx.out(); | 
					
						
							| 
									
										
										
										
											2017-08-13 13:09:02 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2018-05-12 08:33:51 -07:00
										 |  |  | FMT_END_NAMESPACE | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatCustom) { | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   Date date(2012, 12, 9); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::format("{:s}", date), format_error, | 
					
						
							| 
									
										
										
										
											2016-11-07 08:55:40 -08:00
										 |  |  |                    "unknown format specifier"); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-17 14:56:44 -08:00
										 |  |  | class Answer {}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-12 08:33:51 -07:00
										 |  |  | FMT_BEGIN_NAMESPACE | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <> struct formatter<Answer> : formatter<int> { | 
					
						
							| 
									
										
										
										
											2018-07-04 07:40:56 -07:00
										 |  |  |   template <typename FormatContext> | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   auto format(Answer, FormatContext& ctx) -> decltype(ctx.out()) { | 
					
						
							| 
									
										
										
										
											2018-01-14 11:00:27 -08:00
										 |  |  |     return formatter<int>::format(42, ctx); | 
					
						
							| 
									
										
										
										
											2017-08-13 13:09:02 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2018-05-12 08:33:51 -07:00
										 |  |  | FMT_END_NAMESPACE | 
					
						
							| 
									
										
										
										
											2012-12-17 14:56:44 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, CustomFormat) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0}", Answer())); | 
					
						
							| 
									
										
										
										
											2017-07-29 07:50:16 -07:00
										 |  |  |   EXPECT_EQ("0042", format("{:04}", Answer())); | 
					
						
							| 
									
										
										
										
											2012-12-17 14:56:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-04 07:40:56 -07:00
										 |  |  | TEST(FormatterTest, CustomFormatTo) { | 
					
						
							|  |  |  |   char buf[10] = {}; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   auto end = | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |       &*fmt::format_to(fmt::detail::make_checked(buf, 10), "{}", Answer()); | 
					
						
							| 
									
										
										
										
											2018-07-04 07:40:56 -07:00
										 |  |  |   EXPECT_EQ(end, buf + 2); | 
					
						
							|  |  |  |   EXPECT_STREQ(buf, "42"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 22:03:37 -07:00
										 |  |  | TEST(FormatterTest, WideFormatString) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(L"42", format(L"{}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ(L"4.2", format(L"{}", 4.2)); | 
					
						
							|  |  |  |   EXPECT_EQ(L"abc", format(L"{}", L"abc")); | 
					
						
							|  |  |  |   EXPECT_EQ(L"z", format(L"{}", L'z')); | 
					
						
							| 
									
										
										
										
											2013-09-04 22:03:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | TEST(FormatterTest, FormatStringFromSpeedTest) { | 
					
						
							|  |  |  |   EXPECT_EQ("1.2340000000:0042:+3.13:str:0x3e8:X:%", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |             format("{0:0.10f}:{1:04}:{2:+g}:{3}:{4}:{5}:%", 1.234, 42, 3.13, | 
					
						
							|  |  |  |                    "str", reinterpret_cast<void*>(1000), 'X')); | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-12-10 20:37:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  | TEST(FormatterTest, FormatExamples) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   std::string message = format("The answer is {}", 42); | 
					
						
							| 
									
										
										
										
											2013-01-12 10:08:51 -08:00
										 |  |  |   EXPECT_EQ("The answer is 42", message); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format(std::string("{}"), 42)); | 
					
						
							| 
									
										
										
										
											2013-01-04 09:14:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 09:13:12 -08:00
										 |  |  |   memory_buffer out; | 
					
						
							|  |  |  |   format_to(out, "The answer is {}.", 42); | 
					
						
							|  |  |  |   EXPECT_EQ("The answer is 42.", to_string(out)); | 
					
						
							| 
									
										
										
										
											2014-04-30 12:38:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   const char* filename = "nonexistent"; | 
					
						
							|  |  |  |   FILE* ftest = safe_fopen(filename, "r"); | 
					
						
							| 
									
										
										
										
											2015-08-04 07:22:03 -07:00
										 |  |  |   if (ftest) fclose(ftest); | 
					
						
							| 
									
										
										
										
											2014-05-06 06:58:32 -07:00
										 |  |  |   int error_code = errno; | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   EXPECT_TRUE(ftest == nullptr); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_SYSTEM_ERROR( | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  |         FILE* f = safe_fopen(filename, "r"); | 
					
						
							|  |  |  |         if (!f) | 
					
						
							|  |  |  |           throw fmt::system_error(errno, "Cannot open file '{}'", filename); | 
					
						
							|  |  |  |         fclose(f); | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       error_code, "Cannot open file 'nonexistent'"); | 
					
						
							| 
									
										
										
										
											2012-12-11 13:54:53 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 19:32:19 -07:00
										 |  |  | TEST(FormatterTest, Examples) { | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("First, thou shalt count to three", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |             format("First, thou shalt count to {0}", "three")); | 
					
						
							|  |  |  |   EXPECT_EQ("Bring me a shrubbery", format("Bring me a {}", "shrubbery")); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("From 1 to 3", format("From {} to {}", 1, 3)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%03.2f", -1.2); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{:03.2f}", -1.2)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("a, b, c", format("{0}, {1}, {2}", 'a', 'b', 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("a, b, c", format("{}, {}, {}", 'a', 'b', 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("c, b, a", format("{2}, {1}, {0}", 'a', 'b', 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abracadabra", format("{0}{1}{0}", "abra", "cad")); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_EQ("left aligned                  ", format("{:<30}", "left aligned")); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("                 right aligned", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |             format("{:>30}", "right aligned")); | 
					
						
							|  |  |  |   EXPECT_EQ("           centered           ", format("{:^30}", "centered")); | 
					
						
							|  |  |  |   EXPECT_EQ("***********centered***********", format("{:*^30}", "centered")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("+3.140000; -3.140000", format("{:+f}; {:+f}", 3.14, -3.14)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 3.140000; -3.140000", format("{: f}; {: f}", 3.14, -3.14)); | 
					
						
							|  |  |  |   EXPECT_EQ("3.140000; -3.140000", format("{:-f}; {:-f}", 3.14, -3.14)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("int: 42;  hex: 2a;  oct: 52", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |             format("int: {0:d};  hex: {0:x};  oct: {0:o}", 42)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("int: 42;  hex: 0x2a;  oct: 052", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |             format("int: {0:d};  hex: {0:#x};  oct: {0:#o}", 42)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("The answer is 42", format("The answer is {}", 42)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("The answer is {:d}", "forty-two"), format_error, | 
					
						
							|  |  |  |                    "invalid type specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 14:53:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_EQ(L"Cyrillic letter \x42e", format(L"Cyrillic letter {}", L'\x42e')); | 
					
						
							| 
									
										
										
										
											2014-05-14 06:45:39 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_WRITE( | 
					
						
							|  |  |  |       stdout, fmt::print("{}", std::numeric_limits<double>::infinity()), "inf"); | 
					
						
							| 
									
										
										
										
											2012-12-11 13:54:53 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-12-16 15:20:01 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-15 09:39:06 -08:00
										 |  |  | TEST(FormatIntTest, Data) { | 
					
						
							| 
									
										
										
										
											2018-05-19 08:57:31 -07:00
										 |  |  |   fmt::format_int format_int(42); | 
					
						
							| 
									
										
										
										
											2014-02-15 09:39:06 -08:00
										 |  |  |   EXPECT_EQ("42", std::string(format_int.data(), format_int.size())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  | TEST(FormatIntTest, FormatInt) { | 
					
						
							| 
									
										
										
										
											2018-05-19 08:57:31 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format_int(42).str()); | 
					
						
							|  |  |  |   EXPECT_EQ(2u, fmt::format_int(42).size()); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format_int(-42).str()); | 
					
						
							|  |  |  |   EXPECT_EQ(3u, fmt::format_int(-42).size()); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format_int(42ul).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format_int(-42l).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format_int(42ull).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format_int(-42ll).str()); | 
					
						
							| 
									
										
										
										
											2014-01-30 08:02:06 -08:00
										 |  |  |   std::ostringstream os; | 
					
						
							| 
									
										
										
										
											2019-09-08 09:04:09 -07:00
										 |  |  |   os << max_value<int64_t>(); | 
					
						
							| 
									
										
										
										
											2019-11-24 06:38:01 -08:00
										 |  |  |   EXPECT_EQ(os.str(), fmt::format_int(max_value<int64_t>()).str()); | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-06 08:05:51 -07:00
										 |  |  | TEST(FormatTest, Print) { | 
					
						
							| 
									
										
										
										
											2019-11-15 05:41:14 -08:00
										 |  |  | #if FMT_USE_FCNTL
 | 
					
						
							| 
									
										
										
										
											2014-06-28 19:59:44 -07:00
										 |  |  |   EXPECT_WRITE(stdout, fmt::print("Don't {}!", "panic"), "Don't panic!"); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_WRITE(stderr, fmt::print(stderr, "Don't {}!", "panic"), | 
					
						
							|  |  |  |                "Don't panic!"); | 
					
						
							| 
									
										
										
										
											2014-07-09 06:56:36 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2020-03-28 06:31:38 -07:00
										 |  |  |   // Check that the wide print overload compiles.
 | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   if (fmt::detail::const_check(false)) fmt::print(L"test"); | 
					
						
							| 
									
										
										
										
											2014-05-06 08:05:51 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  | TEST(FormatTest, Variadic) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("abc1", format("{}c{}", "ab", 1)); | 
					
						
							|  |  |  |   EXPECT_EQ(L"abc1", format(L"{}c{}", L"ab", 1)); | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-18 21:48:35 -04:00
										 |  |  | TEST(FormatTest, Dynamic) { | 
					
						
							| 
									
										
										
										
											2018-10-24 06:34:28 -07:00
										 |  |  |   typedef fmt::format_context ctx; | 
					
						
							| 
									
										
										
										
											2018-07-18 21:48:35 -04:00
										 |  |  |   std::vector<fmt::basic_format_arg<ctx>> args; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   args.emplace_back(fmt::detail::make_arg<ctx>(42)); | 
					
						
							|  |  |  |   args.emplace_back(fmt::detail::make_arg<ctx>("abc1")); | 
					
						
							|  |  |  |   args.emplace_back(fmt::detail::make_arg<ctx>(1.5f)); | 
					
						
							| 
									
										
										
										
											2018-07-18 21:48:35 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   std::string result = fmt::vformat( | 
					
						
							| 
									
										
										
										
											2019-12-15 07:45:57 -08:00
										 |  |  |       "{} and {} and {}", | 
					
						
							|  |  |  |       fmt::basic_format_args<ctx>(args.data(), static_cast<int>(args.size()))); | 
					
						
							| 
									
										
										
										
											2018-07-20 18:23:29 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_EQ("42 and abc1 and 1.5", result); | 
					
						
							| 
									
										
										
										
											2018-07-18 21:48:35 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-24 10:11:47 -08:00
										 |  |  | TEST(FormatTest, Bytes) { | 
					
						
							|  |  |  |   auto s = fmt::format("{:10}", fmt::bytes("ёжик")); | 
					
						
							|  |  |  |   EXPECT_EQ("ёжик  ", s); | 
					
						
							|  |  |  |   EXPECT_EQ(10, s.size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-27 16:04:45 -08:00
										 |  |  | TEST(FormatTest, JoinArg) { | 
					
						
							|  |  |  |   using fmt::join; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   int v1[3] = {1, 2, 3}; | 
					
						
							| 
									
										
										
										
											2018-01-27 16:04:45 -08:00
										 |  |  |   std::vector<float> v2; | 
					
						
							|  |  |  |   v2.push_back(1.2f); | 
					
						
							|  |  |  |   v2.push_back(3.4f); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   void* v3[2] = {&v1[0], &v1[1]}; | 
					
						
							| 
									
										
										
										
											2018-01-27 16:04:45 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("(1, 2, 3)", format("({})", join(v1, v1 + 3, ", "))); | 
					
						
							|  |  |  |   EXPECT_EQ("(1)", format("({})", join(v1, v1 + 1, ", "))); | 
					
						
							|  |  |  |   EXPECT_EQ("()", format("({})", join(v1, v1, ", "))); | 
					
						
							|  |  |  |   EXPECT_EQ("(001, 002, 003)", format("({:03})", join(v1, v1 + 3, ", "))); | 
					
						
							|  |  |  |   EXPECT_EQ("(+01.20, +03.40)", | 
					
						
							|  |  |  |             format("({:+06.2f})", join(v2.begin(), v2.end(), ", "))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ(L"(1, 2, 3)", format(L"({})", join(v1, v1 + 3, L", "))); | 
					
						
							|  |  |  |   EXPECT_EQ("1, 2, 3", format("{0:{1}}", join(v1, v1 + 3, ", "), 1)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-30 11:09:40 -07:00
										 |  |  |   EXPECT_EQ(format("{}, {}", v3[0], v3[1]), | 
					
						
							|  |  |  |             format("{}", join(v3, v3 + 2, ", "))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-29 10:27:05 -07:00
										 |  |  | #if !FMT_GCC_VERSION || FMT_GCC_VERSION >= 405
 | 
					
						
							| 
									
										
										
										
											2018-01-27 16:04:45 -08:00
										 |  |  |   EXPECT_EQ("(1, 2, 3)", format("({})", join(v1, ", "))); | 
					
						
							|  |  |  |   EXPECT_EQ("(+01.20, +03.40)", format("({:+06.2f})", join(v2, ", "))); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <typename T> std::string str(const T& value) { | 
					
						
							| 
									
										
										
										
											2014-06-30 06:43:53 -07:00
										 |  |  |   return fmt::format("{}", value); | 
					
						
							| 
									
										
										
										
											2012-12-17 21:13:54 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(StrTest, Convert) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(42)); | 
					
						
							|  |  |  |   std::string s = str(Date(2012, 12, 9)); | 
					
						
							|  |  |  |   EXPECT_EQ("2012-12-9", s); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-06-24 10:14:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | std::string vformat_message(int id, const char* format, fmt::format_args args) { | 
					
						
							| 
									
										
										
										
											2017-02-18 09:13:12 -08:00
										 |  |  |   fmt::memory_buffer buffer; | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  |   format_to(buffer, "[{}] ", id); | 
					
						
							|  |  |  |   vformat_to(buffer, format, args); | 
					
						
							|  |  |  |   return to_string(buffer); | 
					
						
							| 
									
										
										
										
											2014-06-28 11:07:43 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  | template <typename... Args> | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | std::string format_message(int id, const char* format, const Args&... args) { | 
					
						
							| 
									
										
										
										
											2018-04-08 07:21:26 -07:00
										 |  |  |   auto va = fmt::make_format_args(args...); | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  |   return vformat_message(id, format, va); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-06-28 11:07:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 12:49:51 -07:00
										 |  |  | TEST(FormatTest, FormatMessageExample) { | 
					
						
							|  |  |  |   EXPECT_EQ("[42] something happened", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |             format_message(42, "{} happened", "something")); | 
					
						
							| 
									
										
										
										
											2014-06-28 12:49:51 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-08-15 08:40:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <typename... Args> | 
					
						
							|  |  |  | void print_error(const char* file, int line, const char* format, | 
					
						
							|  |  |  |                  const Args&... args) { | 
					
						
							| 
									
										
										
										
											2014-08-21 07:30:00 -07:00
										 |  |  |   fmt::print("{}: {}: ", file, line); | 
					
						
							|  |  |  |   fmt::print(format, args...); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-09-11 21:18:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-23 08:24:48 -08:00
										 |  |  | TEST(FormatTest, UnpackedArgs) { | 
					
						
							|  |  |  |   EXPECT_EQ("0123456789abcdefg", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |             fmt::format("{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}", 0, 1, 2, 3, 4, 5, | 
					
						
							|  |  |  |                         6, 7, 8, 9, 'a', 'b', 'c', 'd', 'e', 'f', 'g')); | 
					
						
							| 
									
										
										
										
											2014-09-11 21:18:36 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-09-27 02:26:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-16 16:06:06 -07:00
										 |  |  | struct string_like {}; | 
					
						
							|  |  |  | fmt::string_view to_string_view(string_like) { return "foo"; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-11 17:43:14 -07:00
										 |  |  | constexpr char with_null[3] = {'{', '}', '\0'}; | 
					
						
							|  |  |  | constexpr char no_null[2] = {'{', '}'}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-16 16:06:06 -07:00
										 |  |  | TEST(FormatTest, CompileTimeString) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING("{}"), 42)); | 
					
						
							|  |  |  |   EXPECT_EQ(L"42", fmt::format(FMT_STRING(L"{}"), 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("foo", fmt::format(FMT_STRING("{}"), string_like())); | 
					
						
							| 
									
										
										
										
											2020-03-11 17:43:14 -07:00
										 |  |  |   (void)with_null; | 
					
						
							|  |  |  |   (void)no_null; | 
					
						
							|  |  |  | #if __cplusplus >= 201703L
 | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING(with_null), 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING(no_null), 42)); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #if defined(FMT_USE_STRING_VIEW) && __cplusplus >= 201703L
 | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING(std::string_view("{}")), 42)); | 
					
						
							|  |  |  |   EXPECT_EQ(L"42", fmt::format(FMT_STRING(std::wstring_view(L"{}")), 42)); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-06-16 16:06:06 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-14 16:16:13 -10:00
										 |  |  | TEST(FormatTest, CustomFormatCompileTimeString) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING("{}"), Answer())); | 
					
						
							|  |  |  |   Answer answer; | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING("{}"), answer)); | 
					
						
							| 
									
										
										
										
											2020-03-01 07:57:34 -08:00
										 |  |  |   char buf[10] = {}; | 
					
						
							|  |  |  |   fmt::format_to(buf, FMT_STRING("{}"), answer); | 
					
						
							| 
									
										
										
										
											2019-11-19 15:13:38 +01:00
										 |  |  |   const Answer const_answer = Answer(); | 
					
						
							| 
									
										
										
										
											2019-07-14 16:16:13 -10:00
										 |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING("{}"), const_answer)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-27 02:26:26 +02:00
										 |  |  | #if FMT_USE_USER_DEFINED_LITERALS
 | 
					
						
							| 
									
										
										
										
											2015-10-09 11:55:36 +02:00
										 |  |  | // Passing user-defined literals directly to EXPECT_EQ causes problems
 | 
					
						
							|  |  |  | // with macro argument stringification (#) on some versions of GCC.
 | 
					
						
							|  |  |  | // Workaround: Assing the UDL result to a variable before the macro.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-27 02:26:26 +02:00
										 |  |  | using namespace fmt::literals; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(LiteralsTest, Format) { | 
					
						
							| 
									
										
										
										
											2015-10-09 11:55:36 +02:00
										 |  |  |   auto udl_format = "{}c{}"_format("ab", 1); | 
					
						
							|  |  |  |   EXPECT_EQ(format("{}c{}", "ab", 1), udl_format); | 
					
						
							|  |  |  |   auto udl_format_w = L"{}c{}"_format(L"ab", 1); | 
					
						
							|  |  |  |   EXPECT_EQ(format(L"{}c{}", L"ab", 1), udl_format_w); | 
					
						
							| 
									
										
										
										
											2015-09-27 02:26:26 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-09-27 04:09:37 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(LiteralsTest, NamedArg) { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   auto udl_a = format("{first}{second}{first}{third}", "first"_a = "abra", | 
					
						
							|  |  |  |                       "second"_a = "cad", "third"_a = 99); | 
					
						
							|  |  |  |   EXPECT_EQ(format("{first}{second}{first}{third}", fmt::arg("first", "abra"), | 
					
						
							|  |  |  |                    fmt::arg("second", "cad"), fmt::arg("third", 99)), | 
					
						
							| 
									
										
										
										
											2015-10-09 11:55:36 +02:00
										 |  |  |             udl_a); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   auto udl_a_w = format(L"{first}{second}{first}{third}", L"first"_a = L"abra", | 
					
						
							|  |  |  |                         L"second"_a = L"cad", L"third"_a = 99); | 
					
						
							|  |  |  |   EXPECT_EQ( | 
					
						
							|  |  |  |       format(L"{first}{second}{first}{third}", fmt::arg(L"first", L"abra"), | 
					
						
							|  |  |  |              fmt::arg(L"second", L"cad"), fmt::arg(L"third", 99)), | 
					
						
							|  |  |  |       udl_a_w); | 
					
						
							| 
									
										
										
										
											2015-09-27 04:09:37 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-28 05:23:25 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, UdlTemplate) { | 
					
						
							|  |  |  |   EXPECT_EQ("foo", "foo"_format()); | 
					
						
							|  |  |  |   EXPECT_EQ("        42", "{0:10}"_format(42)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-08-31 08:35:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, UdlPassUserDefinedObjectAsLvalue) { | 
					
						
							|  |  |  |   Date date(2015, 10, 21); | 
					
						
							|  |  |  |   EXPECT_EQ("2015-10-21", "{}"_format(date)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | #endif  // FMT_USE_USER_DEFINED_LITERALS
 | 
					
						
							| 
									
										
										
										
											2015-11-24 08:18:19 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | enum TestEnum { A }; | 
					
						
							| 
									
										
										
										
											2015-11-24 08:18:19 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | TEST(FormatTest, Enum) { EXPECT_EQ("0", fmt::format("{}", A)); } | 
					
						
							| 
									
										
										
										
											2015-11-25 09:49:01 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-06 19:06:07 -07:00
										 |  |  | TEST(FormatTest, FormatterNotSpecialized) { | 
					
						
							| 
									
										
										
										
											2019-11-24 06:38:01 -08:00
										 |  |  |   static_assert( | 
					
						
							|  |  |  |       !fmt::has_formatter<fmt::formatter<TestEnum>, fmt::format_context>::value, | 
					
						
							|  |  |  |       ""); | 
					
						
							| 
									
										
										
										
											2018-08-01 07:11:53 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-11 06:23:43 -08:00
										 |  |  | #if FMT_HAS_FEATURE(cxx_strong_enums)
 | 
					
						
							| 
									
										
										
										
											2019-08-31 06:34:32 -07:00
										 |  |  | enum big_enum : unsigned long long { big_enum_value = 5000000000ULL }; | 
					
						
							| 
									
										
										
										
											2018-02-10 06:17:42 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-31 06:34:32 -07:00
										 |  |  | TEST(FormatTest, StrongEnum) { | 
					
						
							|  |  |  |   EXPECT_EQ("5000000000", fmt::format("{}", big_enum_value)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-10 06:17:42 -08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-29 18:14:03 -07:00
										 |  |  | using buffer_iterator = fmt::format_context::iterator; | 
					
						
							| 
									
										
										
										
											2018-01-14 07:19:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | class mock_arg_formatter | 
					
						
							| 
									
										
										
										
											2020-05-29 18:14:03 -07:00
										 |  |  |     : public fmt::detail::arg_formatter_base<buffer_iterator, char> { | 
					
						
							| 
									
										
										
										
											2016-11-20 08:47:24 -08:00
										 |  |  |  private: | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #if FMT_USE_INT128
 | 
					
						
							|  |  |  |   MOCK_METHOD1(call, void(__int128_t value)); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   MOCK_METHOD1(call, void(long long value)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-11-20 08:47:24 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  |  public: | 
					
						
							| 
									
										
										
										
											2020-05-29 18:14:03 -07:00
										 |  |  |   using base = fmt::detail::arg_formatter_base<buffer_iterator, char>; | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-09 19:34:42 -08:00
										 |  |  |   mock_arg_formatter(fmt::format_context& ctx, fmt::format_parse_context*, | 
					
						
							| 
									
										
										
										
											2020-06-06 08:51:17 -07:00
										 |  |  |                      fmt::format_specs* s = nullptr, const char* = nullptr) | 
					
						
							| 
									
										
										
										
											2020-05-29 09:10:08 -07:00
										 |  |  |       : base(ctx.out(), s, ctx.locale()) { | 
					
						
							| 
									
										
										
										
											2016-11-20 08:47:24 -08:00
										 |  |  |     EXPECT_CALL(*this, call(42)); | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-04 13:17:03 -07:00
										 |  |  |   template <typename T> | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   typename std::enable_if<fmt::detail::is_integral<T>::value, iterator>::type | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   operator()(T value) { | 
					
						
							| 
									
										
										
										
											2018-03-30 08:20:12 -10:00
										 |  |  |     call(value); | 
					
						
							|  |  |  |     return base::operator()(value); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-11-20 08:47:24 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-04 13:17:03 -07:00
										 |  |  |   template <typename T> | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   typename std::enable_if<!fmt::detail::is_integral<T>::value, iterator>::type | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   operator()(T value) { | 
					
						
							| 
									
										
										
										
											2018-07-04 13:17:03 -07:00
										 |  |  |     return base::operator()(value); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-08 07:03:44 -07:00
										 |  |  |   iterator operator()(fmt::basic_format_arg<fmt::format_context>::handle) { | 
					
						
							| 
									
										
										
										
											2018-03-30 08:20:12 -10:00
										 |  |  |     return base::operator()(fmt::monostate()); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-06 16:57:59 +03:00
										 |  |  | static void custom_vformat(fmt::string_view format_str, fmt::format_args args) { | 
					
						
							| 
									
										
										
										
											2017-02-18 09:13:12 -08:00
										 |  |  |   fmt::memory_buffer buffer; | 
					
						
							| 
									
										
										
										
											2020-05-29 16:51:45 -07:00
										 |  |  |   fmt::internal::buffer<char>& base = buffer; | 
					
						
							|  |  |  |   fmt::vformat_to<mock_arg_formatter>(std::back_inserter(base), format_str, | 
					
						
							|  |  |  |                                       args); | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | template <typename... Args> | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | void custom_format(const char* format_str, const Args&... args) { | 
					
						
							| 
									
										
										
										
											2018-04-08 07:21:26 -07:00
										 |  |  |   auto va = fmt::make_format_args(args...); | 
					
						
							| 
									
										
										
										
											2016-10-07 08:37:06 -07:00
										 |  |  |   return custom_vformat(format_str, va); | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | TEST(FormatTest, CustomArgFormatter) { custom_format("{}", 42); } | 
					
						
							| 
									
										
										
										
											2017-07-18 19:40:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, NonNullTerminatedFormatString) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", format(string_view("{}foo", 2), 42)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-09-03 08:28:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct variant { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   enum { INT, STRING } type; | 
					
						
							| 
									
										
										
										
											2017-09-03 08:28:30 -07:00
										 |  |  |   explicit variant(int) : type(INT) {} | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   explicit variant(const char*) : type(STRING) {} | 
					
						
							| 
									
										
										
										
											2017-09-03 08:28:30 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-12 08:33:51 -07:00
										 |  |  | FMT_BEGIN_NAMESPACE | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <> struct formatter<variant> : dynamic_formatter<> { | 
					
						
							| 
									
										
										
										
											2018-04-22 09:16:32 -07:00
										 |  |  |   auto format(variant value, format_context& ctx) -> decltype(ctx.out()) { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |     if (value.type == variant::INT) return dynamic_formatter<>::format(42, ctx); | 
					
						
							| 
									
										
										
										
											2018-03-03 14:04:59 -08:00
										 |  |  |     return dynamic_formatter<>::format("foo", ctx); | 
					
						
							| 
									
										
										
										
											2017-09-03 08:28:30 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2018-05-12 08:33:51 -07:00
										 |  |  | FMT_END_NAMESPACE | 
					
						
							| 
									
										
										
										
											2017-09-03 08:28:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, DynamicFormatter) { | 
					
						
							|  |  |  |   auto num = variant(42); | 
					
						
							|  |  |  |   auto str = variant("foo"); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{:d}", num)); | 
					
						
							|  |  |  |   EXPECT_EQ("foo", format("{:s}", str)); | 
					
						
							| 
									
										
										
										
											2017-09-27 19:04:15 -07:00
										 |  |  |   EXPECT_EQ(" 42 foo ", format("{:{}} {:{}}", num, 3, str, 4)); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{}}", num), format_error, | 
					
						
							|  |  |  |                    "cannot switch from manual to automatic argument indexing"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{:{0}}", num), format_error, | 
					
						
							|  |  |  |                    "cannot switch from automatic to manual argument indexing"); | 
					
						
							| 
									
										
										
										
											2019-09-06 07:12:35 -07:00
										 |  |  | #if FMT_NUMERIC_ALIGN
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{:=}", str), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2019-09-06 07:12:35 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{:+}", str), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{:-}", str), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{: }", str), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{:#}", str), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{:0}", str), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{:.2}", num), format_error, | 
					
						
							|  |  |  |                    "precision not allowed for this argument type"); | 
					
						
							| 
									
										
										
										
											2017-09-03 08:28:30 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-15 16:54:47 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-04 08:52:43 -08:00
										 |  |  | TEST(FormatTest, ToString) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::to_string(42)); | 
					
						
							| 
									
										
										
										
											2018-02-17 09:38:46 +00:00
										 |  |  |   EXPECT_EQ("0x1234", fmt::to_string(reinterpret_cast<void*>(0x1234))); | 
					
						
							| 
									
										
										
										
											2018-02-04 08:52:43 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | TEST(FormatTest, ToWString) { EXPECT_EQ(L"42", fmt::to_wstring(42)); } | 
					
						
							| 
									
										
										
										
											2018-02-07 07:08:14 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-04 08:52:43 -08:00
										 |  |  | TEST(FormatTest, OutputIterators) { | 
					
						
							|  |  |  |   std::list<char> out; | 
					
						
							|  |  |  |   fmt::format_to(std::back_inserter(out), "{}", 42); | 
					
						
							|  |  |  |   EXPECT_EQ("42", std::string(out.begin(), out.end())); | 
					
						
							|  |  |  |   std::stringstream s; | 
					
						
							|  |  |  |   fmt::format_to(std::ostream_iterator<char>(s), "{}", 42); | 
					
						
							|  |  |  |   EXPECT_EQ("42", s.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-04 07:38:21 -07:00
										 |  |  | TEST(FormatTest, FormattedSize) { | 
					
						
							|  |  |  |   EXPECT_EQ(2u, fmt::formatted_size("{}", 42)); | 
					
						
							| 
									
										
										
										
											2018-02-04 08:52:43 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-29 15:13:10 -10:00
										 |  |  | TEST(FormatTest, FormatToN) { | 
					
						
							|  |  |  |   char buffer[4]; | 
					
						
							|  |  |  |   buffer[3] = 'x'; | 
					
						
							|  |  |  |   auto result = fmt::format_to_n(buffer, 3, "{}", 12345); | 
					
						
							|  |  |  |   EXPECT_EQ(5u, result.size); | 
					
						
							| 
									
										
										
										
											2018-03-30 08:20:12 -10:00
										 |  |  |   EXPECT_EQ(buffer + 3, result.out); | 
					
						
							| 
									
										
										
										
											2018-03-29 15:13:10 -10:00
										 |  |  |   EXPECT_EQ("123x", fmt::string_view(buffer, 4)); | 
					
						
							| 
									
										
										
										
											2018-03-30 08:20:12 -10:00
										 |  |  |   result = fmt::format_to_n(buffer, 3, "{:s}", "foobar"); | 
					
						
							|  |  |  |   EXPECT_EQ(6u, result.size); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer + 3, result.out); | 
					
						
							|  |  |  |   EXPECT_EQ("foox", fmt::string_view(buffer, 4)); | 
					
						
							| 
									
										
										
										
											2019-02-26 20:38:03 +01:00
										 |  |  |   buffer[0] = 'x'; | 
					
						
							|  |  |  |   buffer[1] = 'x'; | 
					
						
							|  |  |  |   buffer[2] = 'x'; | 
					
						
							|  |  |  |   result = fmt::format_to_n(buffer, 3, "{}", 'A'); | 
					
						
							|  |  |  |   EXPECT_EQ(1u, result.size); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer + 1, result.out); | 
					
						
							|  |  |  |   EXPECT_EQ("Axxx", fmt::string_view(buffer, 4)); | 
					
						
							|  |  |  |   result = fmt::format_to_n(buffer, 3, "{}{} ", 'B', 'C'); | 
					
						
							|  |  |  |   EXPECT_EQ(3u, result.size); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer + 3, result.out); | 
					
						
							|  |  |  |   EXPECT_EQ("BC x", fmt::string_view(buffer, 4)); | 
					
						
							| 
									
										
										
										
											2018-03-29 15:13:10 -10:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-06-13 08:24:32 +02:00
										 |  |  | TEST(FormatTest, WideFormatToN) { | 
					
						
							|  |  |  |   wchar_t buffer[4]; | 
					
						
							|  |  |  |   buffer[3] = L'x'; | 
					
						
							|  |  |  |   auto result = fmt::format_to_n(buffer, 3, L"{}", 12345); | 
					
						
							|  |  |  |   EXPECT_EQ(5u, result.size); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer + 3, result.out); | 
					
						
							|  |  |  |   EXPECT_EQ(L"123x", fmt::wstring_view(buffer, 4)); | 
					
						
							| 
									
										
										
										
											2019-02-26 20:38:03 +01:00
										 |  |  |   buffer[0] = L'x'; | 
					
						
							|  |  |  |   buffer[1] = L'x'; | 
					
						
							|  |  |  |   buffer[2] = L'x'; | 
					
						
							|  |  |  |   result = fmt::format_to_n(buffer, 3, L"{}", L'A'); | 
					
						
							|  |  |  |   EXPECT_EQ(1u, result.size); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer + 1, result.out); | 
					
						
							|  |  |  |   EXPECT_EQ(L"Axxx", fmt::wstring_view(buffer, 4)); | 
					
						
							|  |  |  |   result = fmt::format_to_n(buffer, 3, L"{}{} ", L'B', L'C'); | 
					
						
							|  |  |  |   EXPECT_EQ(3u, result.size); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer + 3, result.out); | 
					
						
							|  |  |  |   EXPECT_EQ(L"BC x", fmt::wstring_view(buffer, 4)); | 
					
						
							| 
									
										
										
										
											2018-06-13 08:24:32 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-05 09:28:21 -10:00
										 |  |  | struct test_output_iterator { | 
					
						
							|  |  |  |   char* data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   using iterator_category = std::output_iterator_tag; | 
					
						
							|  |  |  |   using value_type = void; | 
					
						
							|  |  |  |   using difference_type = void; | 
					
						
							|  |  |  |   using pointer = void; | 
					
						
							|  |  |  |   using reference = void; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   test_output_iterator& operator++() { | 
					
						
							|  |  |  |     ++data; | 
					
						
							|  |  |  |     return *this; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   test_output_iterator operator++(int) { | 
					
						
							|  |  |  |     auto tmp = *this; | 
					
						
							|  |  |  |     ++data; | 
					
						
							|  |  |  |     return tmp; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   char& operator*() { return *data; } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, FormatToNOutputIterator) { | 
					
						
							|  |  |  |   char buf[10] = {}; | 
					
						
							|  |  |  |   fmt::format_to_n(test_output_iterator{buf}, 10, "{}", 42); | 
					
						
							|  |  |  |   EXPECT_STREQ(buf, "42"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-04 08:52:43 -08:00
										 |  |  | #if FMT_USE_CONSTEXPR
 | 
					
						
							| 
									
										
										
										
											2017-10-22 06:43:41 -07:00
										 |  |  | struct test_arg_id_handler { | 
					
						
							|  |  |  |   enum result { NONE, EMPTY, INDEX, NAME, ERROR }; | 
					
						
							|  |  |  |   result res = NONE; | 
					
						
							| 
									
										
										
										
											2019-12-01 17:41:52 -05:00
										 |  |  |   int index = 0; | 
					
						
							| 
									
										
										
										
											2017-10-15 16:54:47 -07:00
										 |  |  |   string_view name; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-03 06:14:10 -08:00
										 |  |  |   FMT_CONSTEXPR void operator()() { res = EMPTY; } | 
					
						
							| 
									
										
										
										
											2017-10-15 16:54:47 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-01 17:41:52 -05:00
										 |  |  |   FMT_CONSTEXPR void operator()(int i) { | 
					
						
							| 
									
										
										
										
											2017-10-22 06:43:41 -07:00
										 |  |  |     res = INDEX; | 
					
						
							| 
									
										
										
										
											2018-04-04 20:57:02 -07:00
										 |  |  |     index = i; | 
					
						
							| 
									
										
										
										
											2017-10-15 16:54:47 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-04 20:57:02 -07:00
										 |  |  |   FMT_CONSTEXPR void operator()(string_view n) { | 
					
						
							| 
									
										
										
										
											2017-10-22 06:43:41 -07:00
										 |  |  |     res = NAME; | 
					
						
							| 
									
										
										
										
											2018-04-04 20:57:02 -07:00
										 |  |  |     name = n; | 
					
						
							| 
									
										
										
										
											2017-10-15 16:54:47 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   FMT_CONSTEXPR void on_error(const char*) { res = ERROR; } | 
					
						
							| 
									
										
										
										
											2017-10-15 16:54:47 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  | template <size_t N> | 
					
						
							|  |  |  | FMT_CONSTEXPR test_arg_id_handler parse_arg_id(const char (&s)[N]) { | 
					
						
							| 
									
										
										
										
											2017-10-22 06:43:41 -07:00
										 |  |  |   test_arg_id_handler h; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::parse_arg_id(s, s + N, h); | 
					
						
							| 
									
										
										
										
											2017-10-15 16:54:47 -07:00
										 |  |  |   return h; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-19 07:28:17 -07:00
										 |  |  | TEST(FormatTest, ConstexprParseArgID) { | 
					
						
							| 
									
										
										
										
											2017-10-22 06:43:41 -07:00
										 |  |  |   static_assert(parse_arg_id(":").res == test_arg_id_handler::EMPTY, ""); | 
					
						
							|  |  |  |   static_assert(parse_arg_id("}").res == test_arg_id_handler::EMPTY, ""); | 
					
						
							|  |  |  |   static_assert(parse_arg_id("42:").res == test_arg_id_handler::INDEX, ""); | 
					
						
							| 
									
										
										
										
											2017-10-15 16:54:47 -07:00
										 |  |  |   static_assert(parse_arg_id("42:").index == 42, ""); | 
					
						
							| 
									
										
										
										
											2017-10-22 06:43:41 -07:00
										 |  |  |   static_assert(parse_arg_id("foo:").res == test_arg_id_handler::NAME, ""); | 
					
						
							| 
									
										
										
										
											2017-10-15 16:54:47 -07:00
										 |  |  |   static_assert(parse_arg_id("foo:").name.size() == 3, ""); | 
					
						
							| 
									
										
										
										
											2017-10-22 06:43:41 -07:00
										 |  |  |   static_assert(parse_arg_id("!").res == test_arg_id_handler::ERROR, ""); | 
					
						
							| 
									
										
										
										
											2017-10-19 07:28:17 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 08:18:26 -07:00
										 |  |  | struct test_format_specs_handler { | 
					
						
							| 
									
										
										
										
											2017-10-19 07:28:17 -07:00
										 |  |  |   enum Result { NONE, PLUS, MINUS, SPACE, HASH, ZERO, ERROR }; | 
					
						
							| 
									
										
										
										
											2017-10-22 06:43:41 -07:00
										 |  |  |   Result res = NONE; | 
					
						
							| 
									
										
										
										
											2017-10-19 07:28:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-06 17:57:57 -07:00
										 |  |  |   fmt::align_t align = fmt::align::none; | 
					
						
							| 
									
										
										
										
											2017-10-19 07:28:17 -07:00
										 |  |  |   char fill = 0; | 
					
						
							| 
									
										
										
										
											2019-12-01 17:41:52 -05:00
										 |  |  |   int width = 0; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::arg_ref<char> width_ref; | 
					
						
							| 
									
										
										
										
											2019-12-01 17:41:52 -05:00
										 |  |  |   int precision = 0; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::arg_ref<char> precision_ref; | 
					
						
							| 
									
										
										
										
											2017-10-19 07:28:17 -07:00
										 |  |  |   char type = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-25 06:42:48 -07:00
										 |  |  |   // Workaround for MSVC2017 bug that results in "expression did not evaluate
 | 
					
						
							|  |  |  |   // to a constant" with compiler-generated copy ctor.
 | 
					
						
							| 
									
										
										
										
											2018-02-03 06:14:10 -08:00
										 |  |  |   FMT_CONSTEXPR test_format_specs_handler() {} | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   FMT_CONSTEXPR test_format_specs_handler( | 
					
						
							|  |  |  |       const test_format_specs_handler& other) | 
					
						
							|  |  |  |       : res(other.res), | 
					
						
							| 
									
										
										
										
											2019-07-06 17:57:57 -07:00
										 |  |  |         align(other.align), | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |         fill(other.fill), | 
					
						
							|  |  |  |         width(other.width), | 
					
						
							|  |  |  |         width_ref(other.width_ref), | 
					
						
							|  |  |  |         precision(other.precision), | 
					
						
							|  |  |  |         precision_ref(other.precision_ref), | 
					
						
							|  |  |  |         type(other.type) {} | 
					
						
							| 
									
										
										
										
											2017-10-25 06:42:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-07-06 17:57:57 -07:00
										 |  |  |   FMT_CONSTEXPR void on_align(fmt::align_t a) { align = a; } | 
					
						
							| 
									
										
										
										
											2020-01-19 13:22:49 -08:00
										 |  |  |   FMT_CONSTEXPR void on_fill(fmt::string_view f) { fill = f[0]; } | 
					
						
							| 
									
										
										
										
											2018-02-03 06:14:10 -08:00
										 |  |  |   FMT_CONSTEXPR void on_plus() { res = PLUS; } | 
					
						
							|  |  |  |   FMT_CONSTEXPR void on_minus() { res = MINUS; } | 
					
						
							|  |  |  |   FMT_CONSTEXPR void on_space() { res = SPACE; } | 
					
						
							|  |  |  |   FMT_CONSTEXPR void on_hash() { res = HASH; } | 
					
						
							|  |  |  |   FMT_CONSTEXPR void on_zero() { res = ZERO; } | 
					
						
							| 
									
										
										
										
											2017-10-19 07:28:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-01 17:41:52 -05:00
										 |  |  |   FMT_CONSTEXPR void on_width(int w) { width = w; } | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   FMT_CONSTEXPR void on_dynamic_width(fmt::detail::auto_id) {} | 
					
						
							| 
									
										
										
										
											2019-12-01 17:41:52 -05:00
										 |  |  |   FMT_CONSTEXPR void on_dynamic_width(int index) { width_ref = index; } | 
					
						
							| 
									
										
										
										
											2018-02-03 06:14:10 -08:00
										 |  |  |   FMT_CONSTEXPR void on_dynamic_width(string_view) {} | 
					
						
							| 
									
										
										
										
											2017-10-19 07:28:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-01 17:41:52 -05:00
										 |  |  |   FMT_CONSTEXPR void on_precision(int p) { precision = p; } | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   FMT_CONSTEXPR void on_dynamic_precision(fmt::detail::auto_id) {} | 
					
						
							| 
									
										
										
										
											2019-12-15 07:45:57 -08:00
										 |  |  |   FMT_CONSTEXPR void on_dynamic_precision(int index) { precision_ref = index; } | 
					
						
							| 
									
										
										
										
											2018-02-03 06:14:10 -08:00
										 |  |  |   FMT_CONSTEXPR void on_dynamic_precision(string_view) {} | 
					
						
							| 
									
										
										
										
											2017-10-19 07:28:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-03 06:14:10 -08:00
										 |  |  |   FMT_CONSTEXPR void end_precision() {} | 
					
						
							| 
									
										
										
										
											2018-04-04 21:11:31 -07:00
										 |  |  |   FMT_CONSTEXPR void on_type(char t) { type = t; } | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   FMT_CONSTEXPR void on_error(const char*) { res = ERROR; } | 
					
						
							| 
									
										
										
										
											2017-10-19 07:28:17 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  | template <size_t N> | 
					
						
							|  |  |  | FMT_CONSTEXPR test_format_specs_handler parse_test_specs(const char (&s)[N]) { | 
					
						
							| 
									
										
										
										
											2017-10-22 08:18:26 -07:00
										 |  |  |   test_format_specs_handler h; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::parse_format_specs(s, s + N, h); | 
					
						
							| 
									
										
										
										
											2017-10-19 07:28:17 -07:00
										 |  |  |   return h; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, ConstexprParseFormatSpecs) { | 
					
						
							| 
									
										
										
										
											2018-02-11 09:23:47 -08:00
										 |  |  |   typedef test_format_specs_handler handler; | 
					
						
							| 
									
										
										
										
											2019-07-06 17:57:57 -07:00
										 |  |  |   static_assert(parse_test_specs("<").align == fmt::align::left, ""); | 
					
						
							| 
									
										
										
										
											2017-10-22 08:18:26 -07:00
										 |  |  |   static_assert(parse_test_specs("*^").fill == '*', ""); | 
					
						
							|  |  |  |   static_assert(parse_test_specs("+").res == handler::PLUS, ""); | 
					
						
							|  |  |  |   static_assert(parse_test_specs("-").res == handler::MINUS, ""); | 
					
						
							|  |  |  |   static_assert(parse_test_specs(" ").res == handler::SPACE, ""); | 
					
						
							|  |  |  |   static_assert(parse_test_specs("#").res == handler::HASH, ""); | 
					
						
							|  |  |  |   static_assert(parse_test_specs("0").res == handler::ZERO, ""); | 
					
						
							|  |  |  |   static_assert(parse_test_specs("42").width == 42, ""); | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  |   static_assert(parse_test_specs("{42}").width_ref.val.index == 42, ""); | 
					
						
							| 
									
										
										
										
											2017-10-22 08:18:26 -07:00
										 |  |  |   static_assert(parse_test_specs(".42").precision == 42, ""); | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  |   static_assert(parse_test_specs(".{42}").precision_ref.val.index == 42, ""); | 
					
						
							| 
									
										
										
										
											2017-10-22 08:18:26 -07:00
										 |  |  |   static_assert(parse_test_specs("d").type == 'd', ""); | 
					
						
							|  |  |  |   static_assert(parse_test_specs("{<").res == handler::ERROR, ""); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-09 16:15:20 -08:00
										 |  |  | struct test_parse_context { | 
					
						
							|  |  |  |   typedef char char_type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-12-01 17:41:52 -05:00
										 |  |  |   FMT_CONSTEXPR int next_arg_id() { return 11; } | 
					
						
							| 
									
										
										
										
											2019-02-09 16:15:20 -08:00
										 |  |  |   template <typename Id> FMT_CONSTEXPR void check_arg_id(Id) {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   FMT_CONSTEXPR const char* begin() { return nullptr; } | 
					
						
							|  |  |  |   FMT_CONSTEXPR const char* end() { return nullptr; } | 
					
						
							| 
									
										
										
										
											2019-02-09 16:15:20 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   void on_error(const char*) {} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 08:18:26 -07:00
										 |  |  | struct test_context { | 
					
						
							| 
									
										
										
										
											2020-04-12 07:38:54 -07:00
										 |  |  |   using char_type = char; | 
					
						
							|  |  |  |   using format_arg = fmt::basic_format_arg<test_context>; | 
					
						
							|  |  |  |   using parse_context_type = fmt::format_parse_context; | 
					
						
							| 
									
										
										
										
											2017-10-22 08:18:26 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-21 07:11:49 -08:00
										 |  |  |   template <typename T> struct formatter_type { | 
					
						
							|  |  |  |     typedef fmt::formatter<T, char_type> type; | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 08:18:26 -07:00
										 |  |  |   template <typename Id> | 
					
						
							| 
									
										
										
										
											2019-02-09 19:34:42 -08:00
										 |  |  |   FMT_CONSTEXPR fmt::basic_format_arg<test_context> arg(Id id) { | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |     return fmt::detail::make_arg<test_context>(id); | 
					
						
							| 
									
										
										
										
											2017-10-22 08:18:26 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   void on_error(const char*) {} | 
					
						
							| 
									
										
										
										
											2017-11-18 07:42:54 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-03 06:14:10 -08:00
										 |  |  |   FMT_CONSTEXPR test_context error_handler() { return *this; } | 
					
						
							| 
									
										
										
										
											2017-10-22 08:18:26 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  | template <size_t N> | 
					
						
							|  |  |  | FMT_CONSTEXPR fmt::format_specs parse_specs(const char (&s)[N]) { | 
					
						
							| 
									
										
										
										
											2019-10-20 17:12:19 -07:00
										 |  |  |   auto specs = fmt::format_specs(); | 
					
						
							|  |  |  |   auto parse_ctx = test_parse_context(); | 
					
						
							|  |  |  |   auto ctx = test_context(); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::specs_handler<test_parse_context, test_context> h( | 
					
						
							| 
									
										
										
										
											2019-02-09 16:15:20 -08:00
										 |  |  |       specs, parse_ctx, ctx); | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  |   parse_format_specs(s, s + N, h); | 
					
						
							| 
									
										
										
										
											2017-10-22 08:18:26 -07:00
										 |  |  |   return specs; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, ConstexprSpecsHandler) { | 
					
						
							| 
									
										
										
										
											2019-07-06 17:57:57 -07:00
										 |  |  |   static_assert(parse_specs("<").align == fmt::align::left, ""); | 
					
						
							|  |  |  |   static_assert(parse_specs("*^").fill[0] == '*', ""); | 
					
						
							|  |  |  |   static_assert(parse_specs("+").sign == fmt::sign::plus, ""); | 
					
						
							|  |  |  |   static_assert(parse_specs("-").sign == fmt::sign::minus, ""); | 
					
						
							|  |  |  |   static_assert(parse_specs(" ").sign == fmt::sign::space, ""); | 
					
						
							|  |  |  |   static_assert(parse_specs("#").alt, ""); | 
					
						
							|  |  |  |   static_assert(parse_specs("0").align == fmt::align::numeric, ""); | 
					
						
							|  |  |  |   static_assert(parse_specs("42").width == 42, ""); | 
					
						
							|  |  |  |   static_assert(parse_specs("{}").width == 11, ""); | 
					
						
							|  |  |  |   static_assert(parse_specs("{22}").width == 22, ""); | 
					
						
							| 
									
										
										
										
											2018-10-17 09:15:29 -07:00
										 |  |  |   static_assert(parse_specs(".42").precision == 42, ""); | 
					
						
							|  |  |  |   static_assert(parse_specs(".{}").precision == 11, ""); | 
					
						
							| 
									
										
										
										
											2019-02-09 19:34:42 -08:00
										 |  |  |   static_assert(parse_specs(".{22}").precision == 22, ""); | 
					
						
							| 
									
										
										
										
											2018-10-17 11:06:36 -07:00
										 |  |  |   static_assert(parse_specs("d").type == 'd', ""); | 
					
						
							| 
									
										
										
										
											2017-10-15 16:54:47 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-22 10:19:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  | template <size_t N> | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  | FMT_CONSTEXPR fmt::detail::dynamic_format_specs<char> parse_dynamic_specs( | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |     const char (&s)[N]) { | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::dynamic_format_specs<char> specs; | 
					
						
							| 
									
										
										
										
											2019-02-09 16:15:20 -08:00
										 |  |  |   test_parse_context ctx{}; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::dynamic_specs_handler<test_parse_context> h(specs, ctx); | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  |   parse_format_specs(s, s + N, h); | 
					
						
							| 
									
										
										
										
											2017-10-22 10:19:09 -07:00
										 |  |  |   return specs; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, ConstexprDynamicSpecsHandler) { | 
					
						
							| 
									
										
										
										
											2019-07-06 17:57:57 -07:00
										 |  |  |   static_assert(parse_dynamic_specs("<").align == fmt::align::left, ""); | 
					
						
							|  |  |  |   static_assert(parse_dynamic_specs("*^").fill[0] == '*', ""); | 
					
						
							|  |  |  |   static_assert(parse_dynamic_specs("+").sign == fmt::sign::plus, ""); | 
					
						
							|  |  |  |   static_assert(parse_dynamic_specs("-").sign == fmt::sign::minus, ""); | 
					
						
							|  |  |  |   static_assert(parse_dynamic_specs(" ").sign == fmt::sign::space, ""); | 
					
						
							|  |  |  |   static_assert(parse_dynamic_specs("#").alt, ""); | 
					
						
							|  |  |  |   static_assert(parse_dynamic_specs("0").align == fmt::align::numeric, ""); | 
					
						
							|  |  |  |   static_assert(parse_dynamic_specs("42").width == 42, ""); | 
					
						
							| 
									
										
										
										
											2019-02-09 19:34:42 -08:00
										 |  |  |   static_assert(parse_dynamic_specs("{}").width_ref.val.index == 11, ""); | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  |   static_assert(parse_dynamic_specs("{42}").width_ref.val.index == 42, ""); | 
					
						
							| 
									
										
										
										
											2018-10-17 09:15:29 -07:00
										 |  |  |   static_assert(parse_dynamic_specs(".42").precision == 42, ""); | 
					
						
							| 
									
										
										
										
											2019-02-09 19:34:42 -08:00
										 |  |  |   static_assert(parse_dynamic_specs(".{}").precision_ref.val.index == 11, ""); | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  |   static_assert(parse_dynamic_specs(".{42}").precision_ref.val.index == 42, ""); | 
					
						
							| 
									
										
										
										
											2018-10-17 11:06:36 -07:00
										 |  |  |   static_assert(parse_dynamic_specs("d").type == 'd', ""); | 
					
						
							| 
									
										
										
										
											2017-10-22 10:19:09 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-23 21:02:54 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  | template <size_t N> | 
					
						
							|  |  |  | FMT_CONSTEXPR test_format_specs_handler check_specs(const char (&s)[N]) { | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::specs_checker<test_format_specs_handler> checker( | 
					
						
							|  |  |  |       test_format_specs_handler(), fmt::detail::type::double_type); | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  |   parse_format_specs(s, s + N, checker); | 
					
						
							| 
									
										
										
										
											2017-10-23 21:02:54 -07:00
										 |  |  |   return checker; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, ConstexprSpecsChecker) { | 
					
						
							| 
									
										
										
										
											2018-02-11 09:23:47 -08:00
										 |  |  |   typedef test_format_specs_handler handler; | 
					
						
							| 
									
										
										
										
											2019-07-06 17:57:57 -07:00
										 |  |  |   static_assert(check_specs("<").align == fmt::align::left, ""); | 
					
						
							| 
									
										
										
										
											2017-10-23 21:02:54 -07:00
										 |  |  |   static_assert(check_specs("*^").fill == '*', ""); | 
					
						
							|  |  |  |   static_assert(check_specs("+").res == handler::PLUS, ""); | 
					
						
							|  |  |  |   static_assert(check_specs("-").res == handler::MINUS, ""); | 
					
						
							|  |  |  |   static_assert(check_specs(" ").res == handler::SPACE, ""); | 
					
						
							|  |  |  |   static_assert(check_specs("#").res == handler::HASH, ""); | 
					
						
							|  |  |  |   static_assert(check_specs("0").res == handler::ZERO, ""); | 
					
						
							|  |  |  |   static_assert(check_specs("42").width == 42, ""); | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  |   static_assert(check_specs("{42}").width_ref.val.index == 42, ""); | 
					
						
							| 
									
										
										
										
											2017-10-23 21:02:54 -07:00
										 |  |  |   static_assert(check_specs(".42").precision == 42, ""); | 
					
						
							| 
									
										
										
										
											2018-11-27 11:52:00 +01:00
										 |  |  |   static_assert(check_specs(".{42}").precision_ref.val.index == 42, ""); | 
					
						
							| 
									
										
										
										
											2017-10-23 21:02:54 -07:00
										 |  |  |   static_assert(check_specs("d").type == 'd', ""); | 
					
						
							|  |  |  |   static_assert(check_specs("{<").res == handler::ERROR, ""); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-10-29 07:32:14 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct test_format_string_handler { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   FMT_CONSTEXPR void on_text(const char*, const char*) {} | 
					
						
							| 
									
										
										
										
											2017-10-29 07:32:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-06 07:13:38 -07:00
										 |  |  |   FMT_CONSTEXPR int on_arg_id() { return 0; } | 
					
						
							| 
									
										
										
										
											2017-10-29 07:32:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-06 07:13:38 -07:00
										 |  |  |   template <typename T> FMT_CONSTEXPR int on_arg_id(T) { return 0; } | 
					
						
							| 
									
										
										
										
											2017-10-29 07:32:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-06 07:13:38 -07:00
										 |  |  |   FMT_CONSTEXPR void on_replacement_field(int, const char*) {} | 
					
						
							| 
									
										
										
										
											2017-10-29 07:32:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-06 07:13:38 -07:00
										 |  |  |   FMT_CONSTEXPR const char* on_format_specs(int, const char* begin, | 
					
						
							|  |  |  |                                             const char*) { | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  |     return begin; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2017-10-29 07:32:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   FMT_CONSTEXPR void on_error(const char*) { error = true; } | 
					
						
							| 
									
										
										
										
											2017-10-29 07:32:14 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   bool error = false; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <size_t N> FMT_CONSTEXPR bool parse_string(const char (&s)[N]) { | 
					
						
							| 
									
										
										
										
											2017-10-29 07:32:14 -07:00
										 |  |  |   test_format_string_handler h; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::parse_format_string<true>(fmt::string_view(s, N - 1), h); | 
					
						
							| 
									
										
										
										
											2017-10-29 07:32:14 -07:00
										 |  |  |   return !h.error; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, ConstexprParseFormatString) { | 
					
						
							|  |  |  |   static_assert(parse_string("foo"), ""); | 
					
						
							|  |  |  |   static_assert(!parse_string("}"), ""); | 
					
						
							|  |  |  |   static_assert(parse_string("{}"), ""); | 
					
						
							|  |  |  |   static_assert(parse_string("{42}"), ""); | 
					
						
							|  |  |  |   static_assert(parse_string("{foo}"), ""); | 
					
						
							|  |  |  |   static_assert(parse_string("{:}"), ""); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-11-04 08:23:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-11 10:28:05 -08:00
										 |  |  | struct test_error_handler { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   const char*& error; | 
					
						
							| 
									
										
										
										
											2017-11-11 10:28:05 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   FMT_CONSTEXPR test_error_handler(const char*& err) : error(err) {} | 
					
						
							| 
									
										
										
										
											2017-11-12 06:58:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   FMT_CONSTEXPR test_error_handler(const test_error_handler& other) | 
					
						
							|  |  |  |       : error(other.error) {} | 
					
						
							| 
									
										
										
										
											2017-11-12 06:58:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   FMT_CONSTEXPR void on_error(const char* message) { | 
					
						
							|  |  |  |     if (!error) error = message; | 
					
						
							| 
									
										
										
										
											2017-11-12 06:58:11 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2017-11-11 10:28:05 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | FMT_CONSTEXPR size_t len(const char* s) { | 
					
						
							| 
									
										
										
										
											2017-11-11 10:28:05 -08:00
										 |  |  |   size_t len = 0; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   while (*s++) ++len; | 
					
						
							| 
									
										
										
										
											2017-11-11 10:28:05 -08:00
										 |  |  |   return len; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | FMT_CONSTEXPR bool equal(const char* s1, const char* s2) { | 
					
						
							|  |  |  |   if (!s1 || !s2) return s1 == s2; | 
					
						
							| 
									
										
										
										
											2017-11-11 10:28:05 -08:00
										 |  |  |   while (*s1 && *s1 == *s2) { | 
					
						
							|  |  |  |     ++s1; | 
					
						
							|  |  |  |     ++s2; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   return *s1 == *s2; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <typename... Args> | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | FMT_CONSTEXPR bool test_error(const char* fmt, const char* expected_error) { | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   const char* actual_error = nullptr; | 
					
						
							| 
									
										
										
										
											2020-04-22 12:02:39 -07:00
										 |  |  |   string_view s(fmt, len(fmt)); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::detail::format_string_checker<char, test_error_handler, Args...> checker( | 
					
						
							|  |  |  |       s, test_error_handler(actual_error)); | 
					
						
							|  |  |  |   fmt::detail::parse_format_string<true>(s, checker); | 
					
						
							| 
									
										
										
										
											2017-11-12 06:58:11 -08:00
										 |  |  |   return equal(actual_error, expected_error); | 
					
						
							| 
									
										
										
										
											2017-11-11 10:28:05 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | #  define EXPECT_ERROR_NOARGS(fmt, error) \
 | 
					
						
							|  |  |  |     static_assert(test_error(fmt, error), "") | 
					
						
							|  |  |  | #  define EXPECT_ERROR(fmt, error, ...) \
 | 
					
						
							|  |  |  |     static_assert(test_error<__VA_ARGS__>(fmt, error), "") | 
					
						
							| 
									
										
										
										
											2017-11-11 10:28:05 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, FormatStringErrors) { | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   EXPECT_ERROR_NOARGS("foo", nullptr); | 
					
						
							| 
									
										
										
										
											2018-06-06 16:57:59 +03:00
										 |  |  |   EXPECT_ERROR_NOARGS("}", "unmatched '}' in format string"); | 
					
						
							| 
									
										
										
										
											2018-02-24 09:29:15 +00:00
										 |  |  |   EXPECT_ERROR("{0:s", "unknown format specifier", Date); | 
					
						
							| 
									
										
										
										
											2020-04-22 10:50:07 -07:00
										 |  |  | #  if !FMT_MSC_VER || FMT_MSC_VER >= 1916
 | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   // This causes an detail compiler error in MSVC2017.
 | 
					
						
							| 
									
										
										
										
											2017-11-12 19:14:35 -08:00
										 |  |  |   EXPECT_ERROR("{:{<}", "invalid fill character '{'", int); | 
					
						
							| 
									
										
										
										
											2017-11-16 08:09:12 -08:00
										 |  |  |   EXPECT_ERROR("{:10000000000}", "number is too big", int); | 
					
						
							|  |  |  |   EXPECT_ERROR("{:.10000000000}", "number is too big", int); | 
					
						
							| 
									
										
										
										
											2020-04-14 06:48:55 -07:00
										 |  |  |   EXPECT_ERROR_NOARGS("{:x}", "argument not found"); | 
					
						
							| 
									
										
										
										
											2019-11-24 06:38:01 -08:00
										 |  |  | #    if FMT_NUMERIC_ALIGN
 | 
					
						
							| 
									
										
										
										
											2019-09-06 07:12:35 -07:00
										 |  |  |   EXPECT_ERROR("{0:=5", "unknown format specifier", int); | 
					
						
							| 
									
										
										
										
											2017-11-18 07:42:54 -08:00
										 |  |  |   EXPECT_ERROR("{:=}", "format specifier requires numeric argument", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                const char*); | 
					
						
							| 
									
										
										
										
											2019-11-24 06:38:01 -08:00
										 |  |  | #    endif
 | 
					
						
							| 
									
										
										
										
											2017-11-18 07:42:54 -08:00
										 |  |  |   EXPECT_ERROR("{:+}", "format specifier requires numeric argument", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                const char*); | 
					
						
							| 
									
										
										
										
											2017-11-18 07:42:54 -08:00
										 |  |  |   EXPECT_ERROR("{:-}", "format specifier requires numeric argument", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                const char*); | 
					
						
							| 
									
										
										
										
											2017-11-18 07:42:54 -08:00
										 |  |  |   EXPECT_ERROR("{:#}", "format specifier requires numeric argument", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                const char*); | 
					
						
							| 
									
										
										
										
											2017-11-18 07:42:54 -08:00
										 |  |  |   EXPECT_ERROR("{: }", "format specifier requires numeric argument", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                const char*); | 
					
						
							| 
									
										
										
										
											2017-11-18 07:42:54 -08:00
										 |  |  |   EXPECT_ERROR("{:0}", "format specifier requires numeric argument", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                const char*); | 
					
						
							| 
									
										
										
										
											2017-11-18 07:42:54 -08:00
										 |  |  |   EXPECT_ERROR("{:+}", "format specifier requires signed argument", unsigned); | 
					
						
							|  |  |  |   EXPECT_ERROR("{:-}", "format specifier requires signed argument", unsigned); | 
					
						
							|  |  |  |   EXPECT_ERROR("{: }", "format specifier requires signed argument", unsigned); | 
					
						
							| 
									
										
										
										
											2020-04-22 14:18:45 -07:00
										 |  |  |   EXPECT_ERROR("{:{}}", "argument not found", int); | 
					
						
							|  |  |  |   EXPECT_ERROR("{:.{}}", "argument not found", double); | 
					
						
							| 
									
										
										
										
											2017-11-18 07:42:54 -08:00
										 |  |  |   EXPECT_ERROR("{:.2}", "precision not allowed for this argument type", int); | 
					
						
							| 
									
										
										
										
											2017-11-19 09:06:49 -08:00
										 |  |  |   EXPECT_ERROR("{:s}", "invalid type specifier", int); | 
					
						
							| 
									
										
										
										
											2017-11-23 09:14:37 -08:00
										 |  |  |   EXPECT_ERROR("{:s}", "invalid type specifier", bool); | 
					
						
							| 
									
										
										
										
											2017-11-24 07:54:22 -08:00
										 |  |  |   EXPECT_ERROR("{:s}", "invalid type specifier", char); | 
					
						
							|  |  |  |   EXPECT_ERROR("{:+}", "invalid format specifier for char", char); | 
					
						
							| 
									
										
										
										
											2017-11-23 09:14:37 -08:00
										 |  |  |   EXPECT_ERROR("{:s}", "invalid type specifier", double); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_ERROR("{:d}", "invalid type specifier", const char*); | 
					
						
							| 
									
										
										
										
											2017-11-24 09:54:28 -08:00
										 |  |  |   EXPECT_ERROR("{:d}", "invalid type specifier", std::string); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_ERROR("{:s}", "invalid type specifier", void*); | 
					
						
							| 
									
										
										
										
											2019-04-26 17:07:37 -07:00
										 |  |  | #  else
 | 
					
						
							| 
									
										
										
										
											2019-04-27 07:13:35 -07:00
										 |  |  |   fmt::print("warning: constexpr is broken in this version of MSVC\n"); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | #  endif
 | 
					
						
							| 
									
										
										
										
											2019-02-03 07:44:42 -08:00
										 |  |  |   EXPECT_ERROR("{foo", "compile-time checks don't support named arguments", | 
					
						
							|  |  |  |                int); | 
					
						
							| 
									
										
										
										
											2018-06-06 16:57:59 +03:00
										 |  |  |   EXPECT_ERROR_NOARGS("{10000000000}", "number is too big"); | 
					
						
							|  |  |  |   EXPECT_ERROR_NOARGS("{0x}", "invalid format string"); | 
					
						
							|  |  |  |   EXPECT_ERROR_NOARGS("{-}", "invalid format string"); | 
					
						
							| 
									
										
										
										
											2017-11-18 08:38:58 -08:00
										 |  |  |   EXPECT_ERROR("{:{0x}}", "invalid format string", int); | 
					
						
							|  |  |  |   EXPECT_ERROR("{:{-}}", "invalid format string", int); | 
					
						
							|  |  |  |   EXPECT_ERROR("{:.{0x}}", "invalid format string", int); | 
					
						
							|  |  |  |   EXPECT_ERROR("{:.{-}}", "invalid format string", int); | 
					
						
							|  |  |  |   EXPECT_ERROR("{:.x}", "missing precision specifier", int); | 
					
						
							| 
									
										
										
										
											2020-04-14 06:48:55 -07:00
										 |  |  |   EXPECT_ERROR_NOARGS("{}", "argument not found"); | 
					
						
							|  |  |  |   EXPECT_ERROR("{1}", "argument not found", int); | 
					
						
							| 
									
										
										
										
											2017-11-19 06:35:23 -08:00
										 |  |  |   EXPECT_ERROR("{1}{}", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                "cannot switch from manual to automatic argument indexing", int, | 
					
						
							|  |  |  |                int); | 
					
						
							| 
									
										
										
										
											2017-11-19 07:36:01 -08:00
										 |  |  |   EXPECT_ERROR("{}{1}", | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                "cannot switch from automatic to manual argument indexing", int, | 
					
						
							|  |  |  |                int); | 
					
						
							| 
									
										
										
										
											2017-11-11 10:28:05 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-09-30 08:58:59 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, VFormatTo) { | 
					
						
							|  |  |  |   typedef fmt::format_context context; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::basic_format_arg<context> arg = fmt::detail::make_arg<context>(42); | 
					
						
							| 
									
										
										
										
											2018-09-30 08:58:59 +02:00
										 |  |  |   fmt::basic_format_args<context> args(&arg, 1); | 
					
						
							|  |  |  |   std::string s; | 
					
						
							|  |  |  |   fmt::vformat_to(std::back_inserter(s), "{}", args); | 
					
						
							|  |  |  |   EXPECT_EQ("42", s); | 
					
						
							|  |  |  |   s.clear(); | 
					
						
							|  |  |  |   fmt::vformat_to(std::back_inserter(s), FMT_STRING("{}"), args); | 
					
						
							|  |  |  |   EXPECT_EQ("42", s); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   typedef fmt::wformat_context wcontext; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::basic_format_arg<wcontext> warg = fmt::detail::make_arg<wcontext>(42); | 
					
						
							| 
									
										
										
										
											2018-09-30 08:58:59 +02:00
										 |  |  |   fmt::basic_format_args<wcontext> wargs(&warg, 1); | 
					
						
							|  |  |  |   std::wstring w; | 
					
						
							|  |  |  |   fmt::vformat_to(std::back_inserter(w), L"{}", wargs); | 
					
						
							|  |  |  |   EXPECT_EQ(L"42", w); | 
					
						
							| 
									
										
										
										
											2018-10-26 15:55:03 -07:00
										 |  |  |   w.clear(); | 
					
						
							| 
									
										
										
										
											2018-10-26 20:32:24 -07:00
										 |  |  |   fmt::vformat_to(std::back_inserter(w), FMT_STRING(L"{}"), wargs); | 
					
						
							|  |  |  |   EXPECT_EQ(L"42", w); | 
					
						
							| 
									
										
										
										
											2018-09-30 08:58:59 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-20 20:37:00 -07:00
										 |  |  | template <typename T> static std::string FmtToString(const T& t) { | 
					
						
							|  |  |  |   return fmt::format(FMT_STRING("{}"), t); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, FmtStringInTemplate) { | 
					
						
							|  |  |  |   EXPECT_EQ(FmtToString(1), "1"); | 
					
						
							|  |  |  |   EXPECT_EQ(FmtToString(0), "0"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-04 08:52:43 -08:00
										 |  |  | #endif  // FMT_USE_CONSTEXPR
 | 
					
						
							| 
									
										
										
										
											2018-03-21 07:50:59 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-06 09:23:34 -08:00
										 |  |  | TEST(FormatTest, EmphasisNonHeaderOnly) { | 
					
						
							| 
									
										
										
										
											2019-12-15 08:54:16 -08:00
										 |  |  |   // Ensure this compiles even if FMT_HEADER_ONLY is not defined.
 | 
					
						
							| 
									
										
										
										
											2019-03-06 09:23:34 -08:00
										 |  |  |   EXPECT_EQ(fmt::format(fmt::emphasis::bold, "bold error"), | 
					
						
							|  |  |  |             "\x1b[1mbold error\x1b[0m"); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-04-16 17:08:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, CharTraitsIsNotAmbiguous) { | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   // Test that we don't inject detail names into the std namespace.
 | 
					
						
							| 
									
										
										
										
											2019-04-16 17:08:24 -07:00
										 |  |  |   using namespace std; | 
					
						
							|  |  |  |   char_traits<char>::char_type c; | 
					
						
							| 
									
										
										
										
											2019-05-12 01:48:27 +07:00
										 |  |  |   (void)c; | 
					
						
							| 
									
										
										
										
											2019-04-17 12:37:49 -07:00
										 |  |  | #if __cplusplus >= 201103L
 | 
					
						
							|  |  |  |   std::string s; | 
					
						
							| 
									
										
										
										
											2019-05-12 01:48:27 +07:00
										 |  |  |   auto lval = begin(s); | 
					
						
							|  |  |  |   (void)lval; | 
					
						
							| 
									
										
										
										
											2019-04-17 12:37:49 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-04-16 17:08:24 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-06-03 16:37:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct mychar { | 
					
						
							|  |  |  |   int value; | 
					
						
							|  |  |  |   mychar() = default; | 
					
						
							| 
									
										
										
										
											2019-06-12 18:14:56 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   template <typename T> mychar(T val) : value(static_cast<int>(val)) {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-03 16:37:15 -07:00
										 |  |  |   operator int() const { return value; } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FMT_BEGIN_NAMESPACE | 
					
						
							|  |  |  | template <> struct is_char<mychar> : std::true_type {}; | 
					
						
							|  |  |  | FMT_END_NAMESPACE | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, FormatCustomChar) { | 
					
						
							|  |  |  |   const mychar format[] = {'{', '}', 0}; | 
					
						
							|  |  |  |   auto result = fmt::format(format, mychar('x')); | 
					
						
							|  |  |  |   EXPECT_EQ(result.size(), 1); | 
					
						
							|  |  |  |   EXPECT_EQ(result[0], mychar('x')); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-11-02 10:02:28 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-14 10:32:34 -07:00
										 |  |  | // Convert a char8_t string to std::string. Otherwise GTest will insist on
 | 
					
						
							|  |  |  | // inserting `char8_t` NTBS into a `char` stream which is disabled by P1423.
 | 
					
						
							|  |  |  | template <typename S> std::string from_u8str(const S& str) { | 
					
						
							|  |  |  |   return std::string(str.begin(), str.end()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-11-02 10:02:28 +01:00
										 |  |  | TEST(FormatTest, FormatUTF8Precision) { | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   using str_type = std::basic_string<fmt::detail::char8_type>; | 
					
						
							|  |  |  |   str_type format(reinterpret_cast<const fmt::detail::char8_type*>(u8"{:.4}")); | 
					
						
							|  |  |  |   str_type str(reinterpret_cast<const fmt::detail::char8_type*>( | 
					
						
							| 
									
										
										
										
											2020-03-14 10:32:34 -07:00
										 |  |  |       u8"caf\u00e9s"));  // cafés
 | 
					
						
							| 
									
										
										
										
											2019-11-02 10:02:28 +01:00
										 |  |  |   auto result = fmt::format(format, str); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   EXPECT_EQ(fmt::detail::count_code_points(result), 4); | 
					
						
							| 
									
										
										
										
											2019-11-02 10:02:28 +01:00
										 |  |  |   EXPECT_EQ(result.size(), 5); | 
					
						
							| 
									
										
										
										
											2020-01-03 18:49:28 +01:00
										 |  |  |   EXPECT_EQ(from_u8str(result), from_u8str(str.substr(0, 5))); | 
					
						
							| 
									
										
										
										
											2019-11-02 10:02:28 +01:00
										 |  |  | } |