| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  | // Check if fmt/format.h compiles with windows.h included before it.
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | #  include <windows.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | // clang-format off
 | 
					
						
							|  |  |  | #include "fmt/format.h"
 | 
					
						
							|  |  |  | // clang-format on
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-29 08:26:04 -07:00
										 |  |  | #include <stdint.h>  // uint32_t
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | #include <climits>      // INT_MAX
 | 
					
						
							|  |  |  | #include <cmath>        // std::signbit
 | 
					
						
							|  |  |  | #include <cstring>      // std::strlen
 | 
					
						
							|  |  |  | #include <iterator>     // std::back_inserter
 | 
					
						
							|  |  |  | #include <list>         // std::list
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  | #include <memory>       // std::unique_ptr
 | 
					
						
							|  |  |  | #include <type_traits>  // std::is_default_constructible
 | 
					
						
							| 
									
										
										
										
											2019-11-01 08:37:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | using fmt::basic_memory_buffer; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  | using fmt::format_error; | 
					
						
							| 
									
										
										
										
											2017-02-18 09:13:12 -08:00
										 |  |  | using fmt::memory_buffer; | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  | using fmt::runtime; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | using fmt::string_view; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  | using fmt::detail::max_value; | 
					
						
							| 
									
										
										
										
											2022-03-27 08:07:45 -07:00
										 |  |  | using fmt::detail::uint128_fallback; | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | using testing::Return; | 
					
						
							|  |  |  | using testing::StrictMock; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07:00
										 |  |  | enum { buffer_size = 256 }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-17 19:05:25 -08:00
										 |  |  | TEST(uint128_test, ctor) { | 
					
						
							| 
									
										
										
										
											2022-02-17 20:24:42 -08:00
										 |  |  |   auto n = uint128_fallback(); | 
					
						
							| 
									
										
										
										
											2022-02-17 19:05:25 -08:00
										 |  |  |   EXPECT_EQ(n, 0); | 
					
						
							| 
									
										
										
										
											2022-02-17 20:24:42 -08:00
										 |  |  |   n = uint128_fallback(42); | 
					
						
							| 
									
										
										
										
											2022-02-17 19:05:25 -08:00
										 |  |  |   EXPECT_EQ(n, 42); | 
					
						
							|  |  |  |   EXPECT_EQ(static_cast<uint64_t>(n), 42); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(uint128_test, shift) { | 
					
						
							| 
									
										
										
										
											2022-03-27 08:07:45 -07:00
										 |  |  |   auto n = uint128_fallback(42); | 
					
						
							| 
									
										
										
										
											2022-02-17 19:05:25 -08:00
										 |  |  |   n = n << 64; | 
					
						
							|  |  |  |   EXPECT_EQ(static_cast<uint64_t>(n), 0); | 
					
						
							|  |  |  |   n = n >> 64; | 
					
						
							|  |  |  |   EXPECT_EQ(static_cast<uint64_t>(n), 42); | 
					
						
							|  |  |  |   n = n << 62; | 
					
						
							|  |  |  |   EXPECT_EQ(static_cast<uint64_t>(n >> 64), 0xa); | 
					
						
							|  |  |  |   EXPECT_EQ(static_cast<uint64_t>(n), 0x8000000000000000); | 
					
						
							|  |  |  |   n = n >> 62; | 
					
						
							|  |  |  |   EXPECT_EQ(static_cast<uint64_t>(n), 42); | 
					
						
							| 
									
										
										
										
											2022-07-10 08:14:18 -07:00
										 |  |  |   EXPECT_EQ(uint128_fallback(1) << 112, uint128_fallback(0x1000000000000, 0)); | 
					
						
							|  |  |  |   EXPECT_EQ(uint128_fallback(0x1000000000000, 0) >> 112, uint128_fallback(1)); | 
					
						
							| 
									
										
										
										
											2022-02-17 19:05:25 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(uint128_test, minus) { | 
					
						
							| 
									
										
										
										
											2022-03-27 08:07:45 -07:00
										 |  |  |   auto n = uint128_fallback(42); | 
					
						
							| 
									
										
										
										
											2022-02-17 19:05:25 -08:00
										 |  |  |   EXPECT_EQ(n - 2, 40); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-27 08:07:45 -07:00
										 |  |  | TEST(uint128_test, plus_assign) { | 
					
						
							|  |  |  |   auto n = uint128_fallback(32); | 
					
						
							|  |  |  |   n += uint128_fallback(10); | 
					
						
							|  |  |  |   EXPECT_EQ(n, 42); | 
					
						
							|  |  |  |   n = uint128_fallback(max_value<uint64_t>()); | 
					
						
							|  |  |  |   n += uint128_fallback(1); | 
					
						
							|  |  |  |   EXPECT_EQ(n, uint128_fallback(1) << 64); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-03 08:44:51 -07:00
										 |  |  | TEST(uint128_test, multiply) { | 
					
						
							|  |  |  |   auto n = uint128_fallback(2251799813685247); | 
					
						
							|  |  |  |   n = n * 3611864890; | 
					
						
							|  |  |  |   EXPECT_EQ(static_cast<uint64_t>(n >> 64), 440901); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 17:00:21 -07:00
										 |  |  | template <typename Float> void check_isfinite() { | 
					
						
							|  |  |  |   using fmt::detail::isfinite; | 
					
						
							|  |  |  |   EXPECT_TRUE(isfinite(Float(0.0))); | 
					
						
							|  |  |  |   EXPECT_TRUE(isfinite(Float(42.0))); | 
					
						
							|  |  |  |   EXPECT_TRUE(isfinite(Float(-42.0))); | 
					
						
							|  |  |  |   EXPECT_TRUE(isfinite(Float(fmt::detail::max_value<double>()))); | 
					
						
							|  |  |  |   // Use double because std::numeric_limits is broken for __float128.
 | 
					
						
							|  |  |  |   using limits = std::numeric_limits<double>; | 
					
						
							| 
									
										
										
										
											2022-05-11 07:21:09 -07:00
										 |  |  |   FMT_CONSTEXPR20 auto result = isfinite(Float(limits::infinity())); | 
					
						
							|  |  |  |   EXPECT_FALSE(result); | 
					
						
							| 
									
										
										
										
											2022-03-14 17:00:21 -07:00
										 |  |  |   EXPECT_FALSE(isfinite(Float(limits::infinity()))); | 
					
						
							|  |  |  |   EXPECT_FALSE(isfinite(Float(-limits::infinity()))); | 
					
						
							|  |  |  |   EXPECT_FALSE(isfinite(Float(limits::quiet_NaN()))); | 
					
						
							|  |  |  |   EXPECT_FALSE(isfinite(Float(-limits::quiet_NaN()))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(float_test, isfinite) { | 
					
						
							|  |  |  |   check_isfinite<double>(); | 
					
						
							| 
									
										
										
										
											2022-07-10 08:47:16 -07:00
										 |  |  | #if FMT_USE_FLOAT128
 | 
					
						
							| 
									
										
										
										
											2022-03-14 17:00:21 -07:00
										 |  |  |   check_isfinite<fmt::detail::float128>(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 20:37:46 -07:00
										 |  |  | template <typename Float> void check_isnan() { | 
					
						
							|  |  |  |   using fmt::detail::isnan; | 
					
						
							|  |  |  |   EXPECT_FALSE(isnan(Float(0.0))); | 
					
						
							|  |  |  |   EXPECT_FALSE(isnan(Float(42.0))); | 
					
						
							|  |  |  |   EXPECT_FALSE(isnan(Float(-42.0))); | 
					
						
							|  |  |  |   EXPECT_FALSE(isnan(Float(fmt::detail::max_value<double>()))); | 
					
						
							|  |  |  |   // Use double because std::numeric_limits is broken for __float128.
 | 
					
						
							|  |  |  |   using limits = std::numeric_limits<double>; | 
					
						
							|  |  |  |   EXPECT_FALSE(isnan(Float(limits::infinity()))); | 
					
						
							|  |  |  |   EXPECT_FALSE(isnan(Float(-limits::infinity()))); | 
					
						
							|  |  |  |   EXPECT_TRUE(isnan(Float(limits::quiet_NaN()))); | 
					
						
							|  |  |  |   EXPECT_TRUE(isnan(Float(-limits::quiet_NaN()))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(float_test, isnan) { | 
					
						
							|  |  |  |   check_isnan<double>(); | 
					
						
							| 
									
										
										
										
											2022-07-10 08:47:16 -07:00
										 |  |  | #if FMT_USE_FLOAT128
 | 
					
						
							| 
									
										
										
										
											2022-03-14 20:37:46 -07:00
										 |  |  |   check_isnan<fmt::detail::float128>(); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | struct uint32_pair { | 
					
						
							|  |  |  |   uint32_t u[2]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  | TEST(util_test, bit_cast) { | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2020-11-11 08:56:59 -07:00
										 |  |  |   s = fmt::detail::bit_cast<uint32_pair>(~uint64_t{0}); | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   EXPECT_EQ(fmt::detail::bit_cast<uint64_t>(s), ~0ull); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  | // Increment a number in a string.
 | 
					
						
							|  |  |  | void increment(char* s) { | 
					
						
							|  |  |  |   for (int i = static_cast<int>(std::strlen(s)) - 1; i >= 0; --i) { | 
					
						
							|  |  |  |     if (s[i] != '9') { | 
					
						
							|  |  |  |       ++s[i]; | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     s[i] = '0'; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(util_test, increment) { | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   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); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  | TEST(util_test, parse_nonnegative_int) { | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   auto s = fmt::string_view("10000000000"); | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  |   auto begin = s.begin(), end = s.end(); | 
					
						
							| 
									
										
										
										
											2021-06-14 15:33:35 -07:00
										 |  |  |   EXPECT_EQ(fmt::detail::parse_nonnegative_int(begin, end, -1), -1); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   s = "2147483649"; | 
					
						
							| 
									
										
										
										
											2018-12-13 07:50:50 -08:00
										 |  |  |   begin = s.begin(); | 
					
						
							|  |  |  |   end = s.end(); | 
					
						
							| 
									
										
										
										
											2021-06-14 15:33:35 -07:00
										 |  |  |   EXPECT_EQ(fmt::detail::parse_nonnegative_int(begin, end, -1), -1); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(util_test, utf8_to_utf16) { | 
					
						
							|  |  |  |   auto u = fmt::detail::utf8_to_utf16("лошадка"); | 
					
						
							|  |  |  |   EXPECT_EQ(L"\x043B\x043E\x0448\x0430\x0434\x043A\x0430", u.str()); | 
					
						
							|  |  |  |   EXPECT_EQ(7, u.size()); | 
					
						
							|  |  |  |   // U+10437 { DESERET SMALL LETTER YEE }
 | 
					
						
							|  |  |  |   EXPECT_EQ(L"\xD801\xDC37", fmt::detail::utf8_to_utf16("𐐷").str()); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(fmt::detail::utf8_to_utf16("\xc3\x28"), std::runtime_error, | 
					
						
							|  |  |  |                    "invalid utf8"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(fmt::detail::utf8_to_utf16(fmt::string_view("л", 1)), | 
					
						
							|  |  |  |                    std::runtime_error, "invalid utf8"); | 
					
						
							|  |  |  |   EXPECT_EQ(L"123456", fmt::detail::utf8_to_utf16("123456").str()); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(util_test, utf8_to_utf16_empty_string) { | 
					
						
							|  |  |  |   auto s = std::string(); | 
					
						
							|  |  |  |   auto u = fmt::detail::utf8_to_utf16(s.c_str()); | 
					
						
							|  |  |  |   EXPECT_EQ(L"", u.str()); | 
					
						
							|  |  |  |   EXPECT_EQ(s.size(), u.size()); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(util_test, allocator_ref) { | 
					
						
							|  |  |  |   using test_allocator_ref = allocator_ref<mock_allocator<int>>; | 
					
						
							|  |  |  |   auto check_forwarding = [](mock_allocator<int>& alloc, | 
					
						
							|  |  |  |                              test_allocator_ref& ref) { | 
					
						
							|  |  |  |     int mem; | 
					
						
							|  |  |  |     // Check if value_type is properly defined.
 | 
					
						
							|  |  |  |     allocator_ref<mock_allocator<int>>::value_type* ptr = &mem; | 
					
						
							|  |  |  |     // Check forwarding.
 | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, allocate(42)).WillOnce(Return(ptr)); | 
					
						
							|  |  |  |     ref.allocate(42); | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, deallocate(ptr, 42)); | 
					
						
							|  |  |  |     ref.deallocate(ptr, 42); | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   StrictMock<mock_allocator<int>> alloc; | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   auto ref = test_allocator_ref(&alloc); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   // 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); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(util_test, format_system_error) { | 
					
						
							|  |  |  |   fmt::memory_buffer message; | 
					
						
							|  |  |  |   fmt::format_system_error(message, EDOM, "test"); | 
					
						
							| 
									
										
										
										
											2021-05-07 06:50:37 -07:00
										 |  |  |   auto ec = std::error_code(EDOM, std::generic_category()); | 
					
						
							|  |  |  |   EXPECT_EQ(to_string(message), std::system_error(ec, "test").what()); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   message = fmt::memory_buffer(); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   // Check if std::allocator throws on allocating max size_t / 2 chars.
 | 
					
						
							|  |  |  |   size_t max_size = max_value<size_t>() / 2; | 
					
						
							|  |  |  |   bool throws_on_alloc = false; | 
					
						
							|  |  |  |   try { | 
					
						
							|  |  |  |     auto alloc = std::allocator<char>(); | 
					
						
							|  |  |  |     alloc.deallocate(alloc.allocate(max_size), max_size); | 
					
						
							|  |  |  |   } catch (const std::bad_alloc&) { | 
					
						
							|  |  |  |     throws_on_alloc = true; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   if (!throws_on_alloc) { | 
					
						
							| 
									
										
										
										
											2022-07-10 08:14:18 -07:00
										 |  |  |     fmt::print("warning: std::allocator allocates {} chars\n", max_size); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(util_test, system_error) { | 
					
						
							|  |  |  |   auto test_error = fmt::system_error(EDOM, "test"); | 
					
						
							| 
									
										
										
										
											2021-05-07 06:50:37 -07:00
										 |  |  |   auto ec = std::error_code(EDOM, std::generic_category()); | 
					
						
							|  |  |  |   EXPECT_STREQ(test_error.what(), std::system_error(ec, "test").what()); | 
					
						
							|  |  |  |   EXPECT_EQ(test_error.code(), ec); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-07 06:50:37 -07:00
										 |  |  |   auto error = std::system_error(std::error_code()); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   try { | 
					
						
							|  |  |  |     throw fmt::system_error(EDOM, "test {}", "error"); | 
					
						
							| 
									
										
										
										
											2021-05-07 06:50:37 -07:00
										 |  |  |   } catch (const std::system_error& e) { | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |     error = e; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   fmt::memory_buffer message; | 
					
						
							|  |  |  |   fmt::format_system_error(message, EDOM, "test error"); | 
					
						
							| 
									
										
										
										
											2021-05-07 06:50:37 -07:00
										 |  |  |   EXPECT_EQ(error.what(), to_string(message)); | 
					
						
							|  |  |  |   EXPECT_EQ(error.code(), std::error_code(EDOM, std::generic_category())); | 
					
						
							| 
									
										
										
										
											2021-03-31 14:06:48 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(util_test, report_system_error) { | 
					
						
							|  |  |  |   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)); | 
					
						
							| 
									
										
										
										
											2021-03-31 14:06:48 -04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(memory_buffer_test, ctor) { | 
					
						
							|  |  |  |   basic_memory_buffer<char, 123> buffer; | 
					
						
							|  |  |  |   EXPECT_EQ(static_cast<size_t>(0), buffer.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(123u, buffer.capacity()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using std_allocator = allocator_ref<std::allocator<char>>; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(memory_buffer_test, move_ctor_inline_buffer) { | 
					
						
							|  |  |  |   auto check_move_buffer = | 
					
						
							|  |  |  |       [](const char* str, basic_memory_buffer<char, 5, std_allocator>& buffer) { | 
					
						
							|  |  |  |         std::allocator<char>* alloc = buffer.get_allocator().get(); | 
					
						
							|  |  |  |         basic_memory_buffer<char, 5, std_allocator> 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.
 | 
					
						
							|  |  |  |         EXPECT_EQ(nullptr, buffer.get_allocator().get()); | 
					
						
							|  |  |  |         EXPECT_EQ(alloc, buffer2.get_allocator().get()); | 
					
						
							|  |  |  |       }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   auto alloc = std::allocator<char>(); | 
					
						
							| 
									
										
										
										
											2020-10-27 21:55:44 -06:00
										 |  |  |   basic_memory_buffer<char, 5, std_allocator> buffer((std_allocator(&alloc))); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   const char test[] = "test"; | 
					
						
							| 
									
										
										
										
											2020-08-07 10:15:52 -05:00
										 |  |  |   buffer.append(string_view(test, 4)); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(memory_buffer_test, move_ctor_dynamic_buffer) { | 
					
						
							|  |  |  |   auto alloc = std::allocator<char>(); | 
					
						
							| 
									
										
										
										
											2020-10-27 21:55:44 -06:00
										 |  |  |   basic_memory_buffer<char, 4, std_allocator> buffer((std_allocator(&alloc))); | 
					
						
							| 
									
										
										
										
											2019-10-08 22:42:51 +00:00
										 |  |  |   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'); | 
					
						
							| 
									
										
										
										
											2020-10-27 21:55:44 -06:00
										 |  |  |   basic_memory_buffer<char, 4, std_allocator> buffer2(std::move(buffer)); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   // Move should rip the guts of the first buffer.
 | 
					
						
							| 
									
										
										
										
											2022-02-20 08:12:19 -08:00
										 |  |  |   EXPECT_EQ(&buffer[0], inline_buffer_ptr); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer.size(), 0); | 
					
						
							|  |  |  |   EXPECT_EQ(std::string(&buffer2[0], buffer2.size()), "testa"); | 
					
						
							| 
									
										
										
										
											2019-10-08 22:42:51 +00:00
										 |  |  |   EXPECT_GT(buffer2.capacity(), 4u); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | 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()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(memory_buffer_test, move_assignment) { | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   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); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(memory_buffer_test, grow) { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   typedef allocator_ref<mock_allocator<int>> Allocator; | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   mock_allocator<int> alloc; | 
					
						
							| 
									
										
										
										
											2020-10-16 02:41:56 +02:00
										 |  |  |   basic_memory_buffer<int, 10, Allocator> buffer((Allocator(&alloc))); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   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)); | 
					
						
							| 
									
										
										
										
											2020-10-16 02:41:56 +02:00
										 |  |  |   buffer.try_reserve(20); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   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)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(memory_buffer_test, allocator) { | 
					
						
							|  |  |  |   using test_allocator = allocator_ref<mock_allocator<char>>; | 
					
						
							|  |  |  |   basic_memory_buffer<char, 10, test_allocator> 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; | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |     basic_memory_buffer<char, 10, test_allocator> buffer2( | 
					
						
							|  |  |  |         (test_allocator(&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)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(memory_buffer_test, exception_in_deallocate) { | 
					
						
							|  |  |  |   using test_allocator = allocator_ref<mock_allocator<char>>; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   StrictMock<mock_allocator<char>> alloc; | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   basic_memory_buffer<char, 10, test_allocator> buffer( | 
					
						
							|  |  |  |       (test_allocator(&alloc))); | 
					
						
							| 
									
										
										
										
											2020-05-07 15:59:46 -07:00
										 |  |  |   size_t size = 2 * fmt::inline_buffer_size; | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   auto mem = std::vector<char>(size); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   { | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, allocate(size)).WillOnce(Return(&mem[0])); | 
					
						
							|  |  |  |     buffer.resize(size); | 
					
						
							|  |  |  |     std::fill(&buffer[0], &buffer[0] + size, 'x'); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   auto mem2 = std::vector<char>(2 * size); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |   { | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, allocate(2 * size)).WillOnce(Return(&mem2[0])); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |     auto e = std::exception(); | 
					
						
							| 
									
										
										
										
											2018-09-19 08:55:45 -07:00
										 |  |  |     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)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-29 18:17:00 +05:00
										 |  |  | template <typename Allocator, size_t MaxSize> | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | class max_size_allocator : public Allocator { | 
					
						
							| 
									
										
										
										
											2020-10-29 18:17:00 +05:00
										 |  |  |  public: | 
					
						
							|  |  |  |   using typename Allocator::value_type; | 
					
						
							| 
									
										
										
										
											2022-01-20 16:55:47 -08:00
										 |  |  |   size_t max_size() const noexcept { return MaxSize; } | 
					
						
							| 
									
										
										
										
											2020-10-29 18:17:00 +05:00
										 |  |  |   value_type* allocate(size_t n) { | 
					
						
							|  |  |  |     if (n > max_size()) { | 
					
						
							|  |  |  |       throw std::length_error("size > max_size"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return std::allocator_traits<Allocator>::allocate( | 
					
						
							| 
									
										
										
										
											2020-11-14 09:02:14 -08:00
										 |  |  |         *static_cast<Allocator*>(this), n); | 
					
						
							| 
									
										
										
										
											2020-10-29 18:17:00 +05:00
										 |  |  |   } | 
					
						
							|  |  |  |   void deallocate(value_type* p, size_t n) { | 
					
						
							| 
									
										
										
										
											2020-11-14 09:02:14 -08:00
										 |  |  |     std::allocator_traits<Allocator>::deallocate(*static_cast<Allocator*>(this), | 
					
						
							|  |  |  |                                                  p, n); | 
					
						
							| 
									
										
										
										
											2020-10-29 18:17:00 +05:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(memory_buffer_test, max_size_allocator) { | 
					
						
							| 
									
										
										
										
											2020-10-29 18:17:00 +05:00
										 |  |  |   // 160 = 128 + 32
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   using test_allocator = max_size_allocator<std::allocator<char>, 160>; | 
					
						
							|  |  |  |   basic_memory_buffer<char, 10, test_allocator> buffer; | 
					
						
							| 
									
										
										
										
											2020-10-29 18:17:00 +05:00
										 |  |  |   buffer.resize(128); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   // new_capacity = 128 + 128/2 = 192 > 160
 | 
					
						
							|  |  |  |   buffer.resize(160);  // Shouldn't throw.
 | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(memory_buffer_test, max_size_allocator_overflow) { | 
					
						
							|  |  |  |   using test_allocator = max_size_allocator<std::allocator<char>, 160>; | 
					
						
							|  |  |  |   basic_memory_buffer<char, 10, test_allocator> buffer; | 
					
						
							|  |  |  |   EXPECT_THROW(buffer.resize(161), std::exception); | 
					
						
							| 
									
										
										
										
											2018-06-23 08:29:26 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, escape) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("{", fmt::format("{{")); | 
					
						
							|  |  |  |   EXPECT_EQ("before {", fmt::format("before {{")); | 
					
						
							|  |  |  |   EXPECT_EQ("{ after", fmt::format("{{ after")); | 
					
						
							|  |  |  |   EXPECT_EQ("before { after", fmt::format("before {{ after")); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("}", fmt::format("}}")); | 
					
						
							|  |  |  |   EXPECT_EQ("before }", fmt::format("before }}")); | 
					
						
							|  |  |  |   EXPECT_EQ("} after", fmt::format("}} after")); | 
					
						
							|  |  |  |   EXPECT_EQ("before } after", fmt::format("before }} after")); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("{}", fmt::format("{{}}")); | 
					
						
							|  |  |  |   EXPECT_EQ("{42}", fmt::format("{{{0}}}", 42)); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, unmatched_braces) { | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{")), format_error, | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("}")), format_error, | 
					
						
							| 
									
										
										
										
											2020-11-15 09:03:20 -08:00
										 |  |  |                    "unmatched '}' in format string"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0{}")), format_error, | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, no_args) { EXPECT_EQ("test", fmt::format("test")); } | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, args_in_different_positions) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{0}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("before 42", fmt::format("before {0}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42 after", fmt::format("{0} after", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("before 42 after", fmt::format("before {0} after", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("answer = 42", fmt::format("{0} = {1}", "answer", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42 is the answer", fmt::format("{1} is the {0}", "answer", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("abracadabra", fmt::format("{0}{1}{0}", "abra", "cad")); | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, arg_errors) { | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{")), format_error, | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{?}")), format_error, | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0")), format_error, | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0}")), format_error, | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{00}"), 42), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07:00
										 |  |  |   char format_str[buffer_size]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u", INT_MAX); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str)), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u}", INT_MAX); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str)), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "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); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str)), format_error, | 
					
						
							| 
									
										
										
										
											2021-06-14 15:33:35 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str)), format_error, | 
					
						
							| 
									
										
										
										
											2021-06-14 15:33:35 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | template <int N> struct test_format { | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |   template <typename... T> | 
					
						
							|  |  |  |   static std::string format(fmt::string_view fmt, const T&... args) { | 
					
						
							|  |  |  |     return test_format<N - 1>::format(fmt, N - 1, args...); | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | template <> struct test_format<0> { | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |   template <typename... T> | 
					
						
							|  |  |  |   static std::string format(fmt::string_view fmt, const T&... args) { | 
					
						
							|  |  |  |     return fmt::format(runtime(fmt), args...); | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, many_args) { | 
					
						
							|  |  |  |   EXPECT_EQ("19", test_format<20>::format("{19}")); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(test_format<20>::format("{20}"), format_error, | 
					
						
							| 
									
										
										
										
											2020-04-14 06:48:55 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   EXPECT_THROW_MSG(test_format<21>::format("{21}"), format_error, | 
					
						
							| 
									
										
										
										
											2020-04-14 06:48:55 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   using fmt::detail::max_packed_args; | 
					
						
							| 
									
										
										
										
											2018-03-07 07:36:13 -08:00
										 |  |  |   std::string format_str = fmt::format("{{{}}}", max_packed_args + 1); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   EXPECT_THROW_MSG(test_format<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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, named_arg) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("1/a/A", fmt::format("{_1}/{a_}/{A_}", fmt::arg("a_", 'a'), | 
					
						
							|  |  |  |                                  fmt::arg("A_", "A"), fmt::arg("_1", 1))); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42", fmt::format("{0:{width}}", -42, fmt::arg("width", 4))); | 
					
						
							|  |  |  |   EXPECT_EQ("st", | 
					
						
							|  |  |  |             fmt::format("{0:.{precision}}", "str", fmt::arg("precision", 2))); | 
					
						
							|  |  |  |   EXPECT_EQ("1 2", fmt::format("{} {two}", 1, fmt::arg("two", 2))); | 
					
						
							|  |  |  |   EXPECT_EQ("42", | 
					
						
							|  |  |  |             fmt::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))); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{a}")), format_error, | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{a}"), 42), format_error, | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, auto_arg_index) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("abc", fmt::format("{}{}{}", 'a', 'b', 'c')); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0}{}"), 'a', 'b'), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "cannot switch from manual to automatic argument indexing"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{}{0}"), 'a', 'b'), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "cannot switch from automatic to manual argument indexing"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("1.2", fmt::format("{:.{}}", 1.2345, 2)); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0}:.{}"), 1.2345, 2), | 
					
						
							|  |  |  |                    format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "cannot switch from manual to automatic argument indexing"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{:.{0}}"), 1.2345, 2), | 
					
						
							|  |  |  |                    format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "cannot switch from automatic to manual argument indexing"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{}")), format_error, | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, empty_specs) { EXPECT_EQ("42", fmt::format("{0:}", 42)); } | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, left_align) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42  ", fmt::format("{0:<4}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42  ", fmt::format("{0:<4o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42  ", fmt::format("{0:<4x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", fmt::format("{0:<5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", fmt::format("{0:<5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", fmt::format("{0:<5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", fmt::format("{0:<5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", fmt::format("{0:<5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", fmt::format("{0:<5}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", fmt::format("{0:<5}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", fmt::format("{0:<5}", -42.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("c    ", fmt::format("{0:<5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abc  ", fmt::format("{0:<5}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ("0xface  ", fmt::format("{0:<8}", reinterpret_cast<void*>(0xface))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, right_align) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("  42", fmt::format("{0:>4}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", fmt::format("{0:>4o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", fmt::format("{0:>4x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", fmt::format("{0:>5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", fmt::format("{0:>5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", fmt::format("{0:>5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", fmt::format("{0:>5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", fmt::format("{0:>5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", fmt::format("{0:>5}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", fmt::format("{0:>5}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", fmt::format("{0:>5}", -42.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("    c", fmt::format("{0:>5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("  abc", fmt::format("{0:>5}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ("  0xface", fmt::format("{0:>8}", reinterpret_cast<void*>(0xface))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, center_align) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(" 42  ", fmt::format("{0:^5}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", fmt::format("{0:^5o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", fmt::format("{0:^5x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", fmt::format("{0:^5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", fmt::format("{0:^5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", fmt::format("{0:^5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", fmt::format("{0:^5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", fmt::format("{0:^5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", fmt::format("{0:^5}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", fmt::format("{0:^5}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", fmt::format("{0:^5}", -42.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("  c  ", fmt::format("{0:^5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ(" abc  ", fmt::format("{0:^6}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ(" 0xface ", fmt::format("{0:^8}", reinterpret_cast<void*>(0xface))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, fill) { | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{<5}"), 'c'), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "invalid fill character '{'"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{<5}}"), 'c'), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "invalid fill character '{'"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("**42", fmt::format("{0:*>4}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", fmt::format("{0:*>5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", fmt::format("{0:*>5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", fmt::format("{0:*>5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", fmt::format("{0:*>5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", fmt::format("{0:*>5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", fmt::format("{0:*>5}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", fmt::format("{0:*>5}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", fmt::format("{0:*>5}", -42.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("c****", fmt::format("{0:*<5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abc**", fmt::format("{0:*<5}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ("**0xface", | 
					
						
							|  |  |  |             fmt::format("{0:*>8}", reinterpret_cast<void*>(0xface))); | 
					
						
							|  |  |  |   EXPECT_EQ("foo=", fmt::format("{:}=", "foo")); | 
					
						
							|  |  |  |   EXPECT_EQ(std::string("\0\0\0*", 4), | 
					
						
							|  |  |  |             fmt::format(string_view("{:\0>4}", 6), '*')); | 
					
						
							|  |  |  |   EXPECT_EQ("жж42", fmt::format("{0:ж>4}", 42)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{:\x80\x80\x80\x80\x80>}"), 0), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2012-12-20 20:10:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, plus_sign) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("+42", fmt::format("{0:+}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format("{0:+}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("+42", fmt::format("{0:+}", 42)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:+}"), 42u), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("+42", fmt::format("{0:+}", 42l)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:+}"), 42ul), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("+42", fmt::format("{0:+}", 42ll)); | 
					
						
							| 
									
										
										
										
											2022-02-16 15:28:16 -08:00
										 |  |  | #if FMT_USE_INT128
 | 
					
						
							|  |  |  |   EXPECT_EQ("+42", fmt::format("{0:+}", __int128_t(42))); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:+}"), 42ull), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("+42", fmt::format("{0:+}", 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("+42", fmt::format("{0:+}", 42.0l)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:+}"), 'c'), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:+}"), "abc"), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							|  |  |  |       (void)fmt::format(runtime("{0:+}"), reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |       format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, minus_sign) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{0:-}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format("{0:-}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{0:-}", 42)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:-}"), 42u), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{0:-}", 42l)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:-}"), 42ul), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{0:-}", 42ll)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:-}"), 42ull), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{0:-}", 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{0:-}", 42.0l)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:-}"), 'c'), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:-}"), "abc"), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							|  |  |  |       (void)fmt::format(runtime("{0:-}"), reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |       format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, space_sign) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(" 42", fmt::format("{0: }", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format("{0: }", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42", fmt::format("{0: }", 42)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0: }"), 42u), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(" 42", fmt::format("{0: }", 42l)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0: }"), 42ul), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(" 42", fmt::format("{0: }", 42ll)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0: }"), 42ull), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(" 42", fmt::format("{0: }", 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42", fmt::format("{0: }", 42.0l)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0: }"), 'c'), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0: }"), "abc"), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							|  |  |  |       (void)fmt::format(runtime("{0: }"), reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |       format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, hash_flag) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{0:#}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format("{0:#}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0b101010", fmt::format("{0:#b}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0B101010", fmt::format("{0:#B}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0b101010", fmt::format("{0:#b}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", fmt::format("{0:#x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0X42", fmt::format("{0:#X}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0x42", fmt::format("{0:#x}", -0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0", fmt::format("{0:#o}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", fmt::format("{0:#o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", fmt::format("{0:#o}", -042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{0:#}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", fmt::format("{0:#x}", 0x42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", fmt::format("{0:#o}", 042u)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format("{0:#}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", fmt::format("{0:#x}", 0x42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0x42", fmt::format("{0:#x}", -0x42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", fmt::format("{0:#o}", 042l)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", fmt::format("{0:#o}", -042l)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{0:#}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", fmt::format("{0:#x}", 0x42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", fmt::format("{0:#o}", 042ul)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format("{0:#}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", fmt::format("{0:#x}", 0x42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0x42", fmt::format("{0:#x}", -0x42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", fmt::format("{0:#o}", 042ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", fmt::format("{0:#o}", -042ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{0:#}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", fmt::format("{0:#x}", 0x42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", fmt::format("{0:#o}", 042ull)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-26 10:15:16 -08:00
										 |  |  |   EXPECT_EQ("-42.", fmt::format("{0:#}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42.", fmt::format("{0:#}", -42.0l)); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("4.e+01", fmt::format("{:#.0e}", 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.", fmt::format("{:#.0f}", 0.01)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.50", fmt::format("{:#.2g}", 0.5)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.", fmt::format("{:#.0f}", 0.5)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:#"), 'c'), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "missing '}' in format string"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:#}"), 'c'), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:#}"), "abc"), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							|  |  |  |       (void)fmt::format(runtime("{0:#}"), reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |       format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, zero_flag) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{0:0}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", fmt::format("{0:05}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", fmt::format("{0:05}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", fmt::format("{0:05}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", fmt::format("{0:05}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", fmt::format("{0:05}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", fmt::format("{0:05}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("-000042", fmt::format("{0:07}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-000042", fmt::format("{0:07}", -42.0l)); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:0"), 'c'), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "missing '}' in format string"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:05}"), 'c'), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:05}"), "abc"), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "format specifier requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |       (void)fmt::format(runtime("{0:05}"), reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |       format_error, "format specifier requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-23 19:16:24 -06:00
										 |  |  | TEST(format_test, zero_flag_and_align) { | 
					
						
							| 
									
										
										
										
											2022-12-24 07:28:13 -08:00
										 |  |  |   // If the 0 character and an align option both appear, the 0 character is
 | 
					
						
							|  |  |  |   // ignored.
 | 
					
						
							| 
									
										
										
										
											2022-12-23 19:16:24 -06:00
										 |  |  |   EXPECT_EQ("42   ", fmt::format("{0:<05}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", fmt::format("{0:<05}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", fmt::format("{0:^05}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", fmt::format("{0:^05}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", fmt::format("{0:>05}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", fmt::format("{0:>05}", -42)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, width) { | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -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); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "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; | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "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); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "number is too big"); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42", fmt::format("{0:4}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", fmt::format("{0:5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", fmt::format("{0:6}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", fmt::format("{0:7}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", fmt::format("{0:6}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", fmt::format("{0:7}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -1.23", fmt::format("{0:8}", -1.23)); | 
					
						
							|  |  |  |   EXPECT_EQ("    -1.23", fmt::format("{0:9}", -1.23l)); | 
					
						
							|  |  |  |   EXPECT_EQ("    0xcafe", | 
					
						
							|  |  |  |             fmt::format("{0:10}", reinterpret_cast<void*>(0xcafe))); | 
					
						
							|  |  |  |   EXPECT_EQ("x          ", fmt::format("{0:11}", 'x')); | 
					
						
							|  |  |  |   EXPECT_EQ("str         ", fmt::format("{0:12}", "str")); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:*^6}", "🤡"), "**🤡**"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:*^8}", "你好"), "**你好**"); | 
					
						
							| 
									
										
										
										
											2023-02-26 10:15:16 -08:00
										 |  |  |   EXPECT_EQ(fmt::format("{:#6}", 42.0), "   42."); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("{:6c}", static_cast<int>('x')), "x     "); | 
					
						
							| 
									
										
										
										
											2022-12-23 19:16:24 -06:00
										 |  |  |   EXPECT_EQ(fmt::format("{:>06.0f}", 0.00884311), "     0"); | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-04 16:43:49 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, runtime_width) { | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07:00
										 |  |  |   char format_str[buffer_size]; | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:{%u", UINT_MAX); | 
					
						
							|  |  |  |   increment(format_str + 4); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0), format_error, | 
					
						
							| 
									
										
										
										
											2021-06-14 15:33:35 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0), format_error, | 
					
						
							| 
									
										
										
										
											2021-06-14 15:33:35 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   format_str[size + 1] = '}'; | 
					
						
							|  |  |  |   format_str[size + 2] = 0; | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0), format_error, | 
					
						
							| 
									
										
										
										
											2021-06-14 15:33:35 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2015-06-04 13:59:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{"), 0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{}"), 0), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "cannot switch from manual to automatic argument indexing"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{?}}"), 0), format_error, | 
					
						
							| 
									
										
										
										
											2020-11-15 09:03:20 -08:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{1}}"), 0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{0:}}"), 0), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "invalid format string"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{1}}"), 0, -1), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "negative width"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{1}}"), 0, (INT_MAX + 1u)), | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{1}}"), 0, -1l), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "negative width"); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   if (fmt::detail::const_check(sizeof(long) > sizeof(int))) { | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |     long value = INT_MAX; | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |     EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{1}}"), 0, (value + 1)), | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                      format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{1}}"), 0, (INT_MAX + 1ul)), | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{1}}"), 0, '0'), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "width is not integer"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:{1}}"), 0, 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "width is not integer"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(" -42", fmt::format("{0:{1}}", -42, 4)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", fmt::format("{0:{1}}", 42u, 5)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", fmt::format("{0:{1}}", -42l, 6)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", fmt::format("{0:{1}}", 42ul, 7)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", fmt::format("{0:{1}}", -42ll, 6)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", fmt::format("{0:{1}}", 42ull, 7)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -1.23", fmt::format("{0:{1}}", -1.23, 8)); | 
					
						
							|  |  |  |   EXPECT_EQ("    -1.23", fmt::format("{0:{1}}", -1.23l, 9)); | 
					
						
							| 
									
										
										
										
											2015-06-11 06:14:42 -07:00
										 |  |  |   EXPECT_EQ("    0xcafe", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0:{1}}", reinterpret_cast<void*>(0xcafe), 10)); | 
					
						
							|  |  |  |   EXPECT_EQ("x          ", fmt::format("{0:{1}}", 'x', 11)); | 
					
						
							|  |  |  |   EXPECT_EQ("str         ", fmt::format("{0:{1}}", "str", 12)); | 
					
						
							| 
									
										
										
										
											2022-08-09 15:51:10 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("{:{}}", 42, short(4)), "  42"); | 
					
						
							| 
									
										
										
										
											2015-06-04 13:59:37 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, precision) { | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -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); | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "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; | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "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); | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:.%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:."), 0.0), format_error, | 
					
						
							|  |  |  |                    "invalid precision"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.}"), 0.0), format_error, | 
					
						
							|  |  |  |                    "invalid precision"); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2"), 0), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2}"), 42), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2f}"), 42), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2}"), 42u), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2f}"), 42u), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2}"), 42l), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2f}"), 42l), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2}"), 42ul), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2f}"), 42ul), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2}"), 42ll), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2f}"), 42ll), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2}"), 42ull), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.2f}"), 42ull), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:3.0}"), 'x'), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("1.2", fmt::format("{0:.2}", 1.2345)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.2", fmt::format("{0:.2}", 1.2345l)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.2e+56", fmt::format("{:.2}", 1.234e56)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.1", fmt::format("{0:.3}", 1.1)); | 
					
						
							|  |  |  |   EXPECT_EQ("1e+00", fmt::format("{:.0e}", 1.0L)); | 
					
						
							|  |  |  |   EXPECT_EQ("  0.0e+00", fmt::format("{:9.1e}", 0.0)); | 
					
						
							| 
									
										
										
										
											2019-11-24 06:38:01 -08:00
										 |  |  |   EXPECT_EQ( | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |       fmt::format("{:.494}", 4.9406564584124654E-324), | 
					
						
							| 
									
										
										
										
											2019-11-24 06:38:01 -08:00
										 |  |  |       "4.9406564584124654417656879286822137236505980261432476442558568250067550" | 
					
						
							|  |  |  |       "727020875186529983636163599237979656469544571773092665671035593979639877" | 
					
						
							|  |  |  |       "479601078187812630071319031140452784581716784898210368871863605699873072" | 
					
						
							|  |  |  |       "305000638740915356498438731247339727316961514003171538539807412623856559" | 
					
						
							|  |  |  |       "117102665855668676818703956031062493194527159149245532930545654440112748" | 
					
						
							|  |  |  |       "012970999954193198940908041656332452475714786901472678015935523861155013" | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |       "480352649347201937902681071074917033322268447533357208324319361e-324"); | 
					
						
							| 
									
										
										
										
											2021-11-27 08:23:05 -08:00
										 |  |  |   EXPECT_EQ( | 
					
						
							|  |  |  |       fmt::format("{:.1074f}", 1.1125369292536e-308), | 
					
						
							|  |  |  |       "0.0000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000111253692925360019747947051741965785554081512200979" | 
					
						
							|  |  |  |       "355021686109411883779182127659725163430929750364498219730822952552570601" | 
					
						
							|  |  |  |       "152163505899912777129583674906301179059298598412303893909188340988729019" | 
					
						
							|  |  |  |       "014361467448914817838555156840459458527907308695109202499990850735085304" | 
					
						
							|  |  |  |       "478476991912072201449236975063640913461919914396877093174125167509869762" | 
					
						
							|  |  |  |       "482369631100360266123742648159508919592746619553246586039571522788247697" | 
					
						
							|  |  |  |       "156360766271842991667238355464496455107749716934387136380536472531224398" | 
					
						
							|  |  |  |       "559833794807213172371254492216255558078524900147957309382830827524104234" | 
					
						
							|  |  |  |       "530961756787819847850302379672357738807808384667004752163416921762619527" | 
					
						
							|  |  |  |       "462847642037420991432005657440259928195996762610375541867198059294212446" | 
					
						
							|  |  |  |       "81962777939941034720757232455434770912461317493580281734466552734375"); | 
					
						
							| 
									
										
										
										
											2021-04-07 11:20:08 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   std::string outputs[] = { | 
					
						
							| 
									
										
										
										
											2019-11-25 14:57:11 -08:00
										 |  |  |       "-0X1.41FE3FFE71C9E000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000P+127", | 
					
						
							| 
									
										
										
										
											2021-04-07 11:20:08 -07:00
										 |  |  |       "-0XA.0FF1FFF38E4F0000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000000000000000000000000" | 
					
						
							|  |  |  |       "000000000000000000000000000000000000000000000000000P+124"}; | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_THAT(outputs, | 
					
						
							|  |  |  |               testing::Contains(fmt::format("{:.838A}", -2.14001164E+38))); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-19 23:52:33 +05:00
										 |  |  |   if (std::numeric_limits<long double>::digits == 64) { | 
					
						
							|  |  |  |     auto ld = (std::numeric_limits<long double>::min)(); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format("{:.0}", ld), "3e-4932"); | 
					
						
							| 
									
										
										
										
											2022-04-19 23:10:18 +05:00
										 |  |  |     EXPECT_EQ( | 
					
						
							|  |  |  |         fmt::format("{:0g}", std::numeric_limits<long double>::denorm_min()), | 
					
						
							|  |  |  |         "3.6452e-4951"); | 
					
						
							| 
									
										
										
										
											2022-02-19 23:52:33 +05:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2022-02-18 12:12:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("123.", fmt::format("{:#.0f}", 123.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.23", fmt::format("{:.02f}", 1.234)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.001", fmt::format("{:.1g}", 0.001)); | 
					
						
							|  |  |  |   EXPECT_EQ("1019666400", fmt::format("{}", 1019666432.0f)); | 
					
						
							|  |  |  |   EXPECT_EQ("1e+01", fmt::format("{:.0e}", 9.5)); | 
					
						
							| 
									
										
										
										
											2020-10-07 07:42:23 -07:00
										 |  |  |   EXPECT_EQ("1.0e-34", fmt::format("{:.1e}", 1e-34)); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |       (void)fmt::format(runtime("{0:.2}"), reinterpret_cast<void*>(0xcafe)), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |       format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |       (void)fmt::format(runtime("{0:.2f}"), reinterpret_cast<void*>(0xcafe)), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |       format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{:.{}e}"), 42.0, | 
					
						
							|  |  |  |                                      fmt::detail::max_value<int>()), | 
					
						
							|  |  |  |                    format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2021-12-05 07:12:10 -08:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							|  |  |  |       (void)fmt::format("{:.2147483646f}", -2.2121295195081227E+304), | 
					
						
							|  |  |  |       format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("st", fmt::format("{0:.2}", "str")); | 
					
						
							| 
									
										
										
										
											2022-05-11 06:34:51 -07:00
										 |  |  |   EXPECT_EQ("вожык", fmt::format("{0:.5}", "вожыкі")); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, runtime_precision) { | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -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); | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2021-06-14 15:33:35 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2021-06-14 15:33:35 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   format_str[size + 1] = '}'; | 
					
						
							|  |  |  |   format_str[size + 2] = 0; | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2021-06-14 15:33:35 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{"), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{}"), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "cannot switch from manual to automatic argument indexing"); | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{?}}"), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "invalid format string"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}"), 0, 0), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |                    "argument not found"); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{0:}}"), 0.0), format_error, | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |                    "invalid format string"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 0.0, -1), | 
					
						
							|  |  |  |                    format_error, "negative precision"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 0.0, (INT_MAX + 1u)), | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 0.0, -1l), | 
					
						
							|  |  |  |                    format_error, "negative precision"); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   if (fmt::detail::const_check(sizeof(long) > sizeof(int))) { | 
					
						
							| 
									
										
										
										
											2012-12-21 15:02:25 -08:00
										 |  |  |     long value = INT_MAX; | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |     EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 0.0, (value + 1)), | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                      format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 0.0, (INT_MAX + 1ul)), | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-24 19:22:39 -08:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 0.0, '0'), | 
					
						
							|  |  |  |                    format_error, "precision is not integer"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 0.0, 0.0), | 
					
						
							|  |  |  |                    format_error, "precision is not integer"); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 42, 2), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}f}"), 42, 2), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 42u, 2), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}f}"), 42u, 2), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 42l, 2), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}f}"), 42l, 2), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 42ul, 2), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}f}"), 42ul, 2), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 42ll, 2), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}f}"), 42ll, 2), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), 42ull, 2), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}f}"), 42ull, 2), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:3.{1}}"), 'x', 0), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("1.2", fmt::format("{0:.{1}}", 1.2345, 2)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.2", fmt::format("{1:.{0}}", 2, 1.2345l)); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}}"), | 
					
						
							|  |  |  |                                      reinterpret_cast<void*>(0xcafe), 2), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:.{1}f}"), | 
					
						
							|  |  |  |                                      reinterpret_cast<void*>(0xcafe), 2), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:58:22 -08:00
										 |  |  |                    format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2015-01-08 07:56:08 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("st", fmt::format("{0:.{1}}", "str", 2)); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_bool) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("true", fmt::format("{}", true)); | 
					
						
							|  |  |  |   EXPECT_EQ("false", fmt::format("{}", false)); | 
					
						
							|  |  |  |   EXPECT_EQ("1", fmt::format("{:d}", true)); | 
					
						
							|  |  |  |   EXPECT_EQ("true ", fmt::format("{:5}", true)); | 
					
						
							|  |  |  |   EXPECT_EQ("true", fmt::format("{:s}", true)); | 
					
						
							|  |  |  |   EXPECT_EQ("false", fmt::format("{:s}", false)); | 
					
						
							|  |  |  |   EXPECT_EQ("false ", fmt::format("{:6s}", false)); | 
					
						
							| 
									
										
										
										
											2014-01-28 12:49:36 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_short) { | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  |   short s = 42; | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{0:d}", s)); | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  |   unsigned short us = 42; | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{0:d}", us)); | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | template <typename T> | 
					
						
							|  |  |  | void check_unknown_types(const T& value, const char* types, const char*) { | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07:00
										 |  |  |   char format_str[buffer_size]; | 
					
						
							| 
									
										
										
										
											2022-01-30 10:55:28 -06:00
										 |  |  |   const char* special = ".0123456789L?}"; | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   for (int i = CHAR_MIN; i <= CHAR_MAX; ++i) { | 
					
						
							|  |  |  |     char c = static_cast<char>(i); | 
					
						
							|  |  |  |     if (std::strchr(types, c) || std::strchr(special, c) || !c) continue; | 
					
						
							|  |  |  |     safe_sprintf(format_str, "{0:10%c}", c); | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |     const char* message = "invalid format specifier"; | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |     EXPECT_THROW_MSG((void)fmt::format(runtime(format_str), value), | 
					
						
							|  |  |  |                      format_error, message) | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |         << format_str << " " << message; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(format_test, format_int) { | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{0:v"), 42), format_error, | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |                    "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2020-05-17 08:44:55 -07:00
										 |  |  |   check_unknown_types(42, "bBdoxXnLc", "integer"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("x", fmt::format("{:c}", static_cast<int>('x'))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_bin) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("0", fmt::format("{0:b}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("101010", fmt::format("{0:b}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("101010", fmt::format("{0:b}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-101010", fmt::format("{0:b}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("11000000111001", fmt::format("{0:b}", 12345)); | 
					
						
							|  |  |  |   EXPECT_EQ("10010001101000101011001111000", fmt::format("{0:b}", 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("10010000101010111100110111101111", | 
					
						
							|  |  |  |             fmt::format("{0:b}", 0x90ABCDEF)); | 
					
						
							| 
									
										
										
										
											2013-11-14 08:45:50 -08:00
										 |  |  |   EXPECT_EQ("11111111111111111111111111111111", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::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
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_dec) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("0", fmt::format("{0}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{0}", 42)); | 
					
						
							| 
									
										
										
										
											2022-09-07 17:33:31 -07:00
										 |  |  |   EXPECT_EQ("42>", fmt::format("{:}>", 42)); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{0:d}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{0}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format("{0}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345", fmt::format("{0}", 12345)); | 
					
						
							|  |  |  |   EXPECT_EQ("67890", fmt::format("{0}", 67890)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #if FMT_USE_INT128
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("0", fmt::format("{0}", static_cast<__int128_t>(0))); | 
					
						
							|  |  |  |   EXPECT_EQ("0", fmt::format("{0}", static_cast<__uint128_t>(0))); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("9223372036854775808", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0}", static_cast<__int128_t>(INT64_MAX) + 1)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("-9223372036854775809", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0}", static_cast<__int128_t>(INT64_MIN) - 1)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("18446744073709551616", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0}", static_cast<__int128_t>(UINT64_MAX) + 1)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("170141183460469231731687303715884105727", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0}", int128_max)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("-170141183460469231731687303715884105728", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0}", int128_min)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("340282366920938463463374607431768211455", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0}", uint128_max)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07:00
										 |  |  |   char buffer[buffer_size]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%d", INT_MIN); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0}", INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%d", INT_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0}", INT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%u", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0}", UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%ld", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0}", LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%ld", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0}", LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lu", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0}", ULONG_MAX)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_hex) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("0", fmt::format("{0:x}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{0:x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{0:x}", 0x42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format("{0:x}", -0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345678", fmt::format("{0:x}", 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("90abcdef", fmt::format("{0:x}", 0x90abcdef)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345678", fmt::format("{0:X}", 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("90ABCDEF", fmt::format("{0:X}", 0x90ABCDEF)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #if FMT_USE_INT128
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("0", fmt::format("{0:x}", static_cast<__int128_t>(0))); | 
					
						
							|  |  |  |   EXPECT_EQ("0", fmt::format("{0:x}", static_cast<__uint128_t>(0))); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("8000000000000000", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0:x}", static_cast<__int128_t>(INT64_MAX) + 1)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("-8000000000000001", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0:x}", static_cast<__int128_t>(INT64_MIN) - 1)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("10000000000000000", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0:x}", static_cast<__int128_t>(UINT64_MAX) + 1)); | 
					
						
							|  |  |  |   EXPECT_EQ("7fffffffffffffffffffffffffffffff", | 
					
						
							|  |  |  |             fmt::format("{0:x}", int128_max)); | 
					
						
							|  |  |  |   EXPECT_EQ("-80000000000000000000000000000000", | 
					
						
							|  |  |  |             fmt::format("{0:x}", int128_min)); | 
					
						
							|  |  |  |   EXPECT_EQ("ffffffffffffffffffffffffffffffff", | 
					
						
							|  |  |  |             fmt::format("{0:x}", uint128_max)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2013-10-23 20:04:32 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07:00
										 |  |  |   char buffer[buffer_size]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%x", 0 - static_cast<unsigned>(INT_MIN)); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:x}", INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%x", INT_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:x}", INT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%x", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:x}", UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%lx", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:x}", LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lx", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:x}", LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lx", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:x}", ULONG_MAX)); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_oct) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("0", fmt::format("{0:o}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{0:o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{0:o}", 042u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::format("{0:o}", -042)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345670", fmt::format("{0:o}", 012345670)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #if FMT_USE_INT128
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("0", fmt::format("{0:o}", static_cast<__int128_t>(0))); | 
					
						
							|  |  |  |   EXPECT_EQ("0", fmt::format("{0:o}", static_cast<__uint128_t>(0))); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("1000000000000000000000", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0:o}", static_cast<__int128_t>(INT64_MAX) + 1)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("-1000000000000000000001", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0:o}", static_cast<__int128_t>(INT64_MIN) - 1)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("2000000000000000000000", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0:o}", static_cast<__int128_t>(UINT64_MAX) + 1)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("1777777777777777777777777777777777777777777", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0:o}", int128_max)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("-2000000000000000000000000000000000000000000", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0:o}", int128_min)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  |   EXPECT_EQ("3777777777777777777777777777777777777777777", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0:o}", uint128_max)); | 
					
						
							| 
									
										
										
										
											2019-08-29 19:36:27 +09:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07:00
										 |  |  |   char buffer[buffer_size]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%o", 0 - static_cast<unsigned>(INT_MIN)); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:o}", INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%o", INT_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:o}", INT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%o", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:o}", UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%lo", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:o}", LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lo", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:o}", LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lo", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:o}", ULONG_MAX)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_int_locale) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("1234", fmt::format("{:L}", 1234)); | 
					
						
							| 
									
										
										
										
											2016-04-17 19:06:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_float) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("0", fmt::format("{}", 0.0f)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.500000", fmt::format("{0:f}", 392.5f)); | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_double) { | 
					
						
							| 
									
										
										
										
											2022-03-14 15:48:38 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("{}", 0.0), "0"); | 
					
						
							| 
									
										
										
										
											2020-04-10 07:16:20 -07:00
										 |  |  |   check_unknown_types(1.2, "eEfFgGaAnL%", "double"); | 
					
						
							| 
									
										
										
										
											2022-03-14 15:48:38 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("{:}", 0.0), "0"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:f}", 0.0), "0.000000"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:g}", 0.0), "0"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:}", 392.65), "392.65"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:g}", 392.65), "392.65"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:G}", 392.65), "392.65"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:g}", 4.9014e6), "4.9014e+06"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:f}", 392.65), "392.650000"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:F}", 392.65), "392.650000"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:L}", 42.0), "42"); | 
					
						
							| 
									
										
										
										
											2022-11-12 22:18:30 +05:00
										 |  |  |   EXPECT_EQ(fmt::format("{:24a}", 4.2f), "           0x1.0cccccp+2"); | 
					
						
							| 
									
										
										
										
											2022-03-14 15:48:38 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("{:24a}", 4.2), "    0x1.0cccccccccccdp+2"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:<24a}", 4.2), "0x1.0cccccccccccdp+2    "); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{0:e}", 392.65), "3.926500e+02"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{0:E}", 392.65), "3.926500E+02"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{0:+010.4g}", 392.65), "+0000392.6"); | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07:00
										 |  |  |   char buffer[buffer_size]; | 
					
						
							| 
									
										
										
										
											2022-11-12 22:18:30 +05:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if FMT_CPLUSPLUS >= 201703L
 | 
					
						
							|  |  |  |   double xd = 0x1.ffffffffffp+2; | 
					
						
							|  |  |  |   safe_sprintf(buffer, "%.*a", 10, xd); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:.10a}", xd), buffer); | 
					
						
							|  |  |  |   safe_sprintf(buffer, "%.*a", 9, xd); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:.9a}", xd), buffer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (std::numeric_limits<long double>::digits == 64) { | 
					
						
							|  |  |  |     auto ld = 0xf.ffffffffffp-3l; | 
					
						
							|  |  |  |     safe_sprintf(buffer, "%La", ld); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format("{:a}", ld), buffer); | 
					
						
							|  |  |  |     safe_sprintf(buffer, "%.*La", 10, ld); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format("{:.10a}", ld), buffer); | 
					
						
							|  |  |  |     safe_sprintf(buffer, "%.*La", 9, ld); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format("{:.9a}", ld), buffer); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (fmt::detail::const_check(std::numeric_limits<double>::is_iec559)) { | 
					
						
							|  |  |  |     double d = (std::numeric_limits<double>::min)(); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format("{:a}", d), "0x1p-1022"); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format("{:#a}", d), "0x1.p-1022"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     d = (std::numeric_limits<double>::max)(); | 
					
						
							|  |  |  |     safe_sprintf(buffer, "%a", d); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format("{:a}", d), buffer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     d = std::numeric_limits<double>::denorm_min(); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format("{:a}", d), "0x0.0000000000001p-1022"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if (std::numeric_limits<long double>::digits == 64) { | 
					
						
							|  |  |  |     auto ld = (std::numeric_limits<long double>::min)(); | 
					
						
							|  |  |  |     safe_sprintf(buffer, "%La", ld); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format("{:a}", ld), buffer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ld = (std::numeric_limits<long double>::max)(); | 
					
						
							|  |  |  |     safe_sprintf(buffer, "%La", ld); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format("{:a}", ld), buffer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ld = std::numeric_limits<long double>::denorm_min(); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format("{:a}", ld), "0x0.000000000000001p-16382"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   safe_sprintf(buffer, "%.*a", 10, 4.2); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:.10a}", 4.2), buffer); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:a}", -42.0), "-0x1.5p+5"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:A}", -42.0), "-0X1.5P+5"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-14 15:48:38 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("{:f}", 9223372036854775807.0), | 
					
						
							|  |  |  |             "9223372036854775808.000000"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, precision_rounding) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("0", fmt::format("{:.0f}", 0.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("0", fmt::format("{:.0f}", 0.01)); | 
					
						
							|  |  |  |   EXPECT_EQ("0", fmt::format("{:.0f}", 0.1)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.000", fmt::format("{:.3f}", 0.00049)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.001", fmt::format("{:.3f}", 0.0005)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.001", fmt::format("{:.3f}", 0.00149)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.002", fmt::format("{:.3f}", 0.0015)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.000", fmt::format("{:.3f}", 0.9999)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.00123", fmt::format("{:.3}", 0.00123)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.1", fmt::format("{:.16g}", 0.1)); | 
					
						
							| 
									
										
										
										
											2020-09-26 08:23:16 -07:00
										 |  |  |   EXPECT_EQ("1", fmt::format("{:.0}", 1.0)); | 
					
						
							| 
									
										
										
										
											2020-09-07 09:34:05 -07:00
										 |  |  |   EXPECT_EQ("225.51575035152063720", | 
					
						
							|  |  |  |             fmt::format("{:.17f}", 225.51575035152064)); | 
					
						
							|  |  |  |   EXPECT_EQ("-761519619559038.2", fmt::format("{:.1f}", -761519619559038.2)); | 
					
						
							| 
									
										
										
										
											2020-09-26 08:23:16 -07:00
										 |  |  |   EXPECT_EQ("1.9156918820264798e-56", | 
					
						
							|  |  |  |             fmt::format("{}", 1.9156918820264798e-56)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.0000", fmt::format("{:.4f}", 7.2809479766055470e-15)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Trigger a rounding error in Grisu by a specially chosen number.
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("3788512123356.985352", fmt::format("{:f}", 3788512123356.985352)); | 
					
						
							| 
									
										
										
										
											2020-09-26 08:23:16 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, prettify_float) { | 
					
						
							| 
									
										
										
										
											2020-09-26 08:23:16 -07:00
										 |  |  |   EXPECT_EQ("0.0001", fmt::format("{}", 1e-4)); | 
					
						
							|  |  |  |   EXPECT_EQ("1e-05", fmt::format("{}", 1e-5)); | 
					
						
							| 
									
										
										
										
											2020-10-07 13:27:46 -07:00
										 |  |  |   EXPECT_EQ("1000000000000000", fmt::format("{}", 1e15)); | 
					
						
							|  |  |  |   EXPECT_EQ("1e+16", fmt::format("{}", 1e16)); | 
					
						
							| 
									
										
										
										
											2020-09-26 08:23:16 -07:00
										 |  |  |   EXPECT_EQ("9.999e-05", fmt::format("{}", 9.999e-5)); | 
					
						
							|  |  |  |   EXPECT_EQ("10000000000", fmt::format("{}", 1e10)); | 
					
						
							|  |  |  |   EXPECT_EQ("100000000000", fmt::format("{}", 1e11)); | 
					
						
							|  |  |  |   EXPECT_EQ("12340000000", fmt::format("{}", 1234e7)); | 
					
						
							|  |  |  |   EXPECT_EQ("12.34", fmt::format("{}", 1234e-2)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.001234", fmt::format("{}", 1234e-6)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.1", fmt::format("{}", 0.1f)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.10000000149011612", fmt::format("{}", double(0.1f))); | 
					
						
							|  |  |  |   EXPECT_EQ("1.3563156e-19", fmt::format("{}", 1.35631564e-19f)); | 
					
						
							| 
									
										
										
										
											2019-03-09 13:53:23 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_nan) { | 
					
						
							| 
									
										
										
										
											2012-12-28 08:27:54 -08:00
										 |  |  |   double nan = std::numeric_limits<double>::quiet_NaN(); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("nan", fmt::format("{}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("+nan", fmt::format("{:+}", nan)); | 
					
						
							| 
									
										
										
										
											2021-05-27 23:13:05 +02:00
										 |  |  |   EXPECT_EQ("  +nan", fmt::format("{:+06}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("+nan  ", fmt::format("{:<+06}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ(" +nan ", fmt::format("{:^+06}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("  +nan", fmt::format("{:>+06}", nan)); | 
					
						
							|  |  |  |   if (std::signbit(-nan)) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |     EXPECT_EQ("-nan", fmt::format("{}", -nan)); | 
					
						
							| 
									
										
										
										
											2021-05-27 23:13:05 +02:00
										 |  |  |     EXPECT_EQ("  -nan", fmt::format("{:+06}", -nan)); | 
					
						
							|  |  |  |   } else { | 
					
						
							| 
									
										
										
										
											2020-09-27 12:50:18 -07:00
										 |  |  |     fmt::print("Warning: compiler doesn't handle negative NaN correctly"); | 
					
						
							| 
									
										
										
										
											2021-05-27 23:13:05 +02:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(" nan", fmt::format("{: }", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("NAN", fmt::format("{:F}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("nan    ", fmt::format("{:<7}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("  nan  ", fmt::format("{:^7}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("    nan", fmt::format("{:>7}", nan)); | 
					
						
							| 
									
										
										
										
											2012-12-28 08:27:54 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_infinity) { | 
					
						
							| 
									
										
										
										
											2012-12-29 06:44:14 -08:00
										 |  |  |   double inf = std::numeric_limits<double>::infinity(); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("inf", fmt::format("{}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("+inf", fmt::format("{:+}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("-inf", fmt::format("{}", -inf)); | 
					
						
							| 
									
										
										
										
											2021-05-27 23:13:05 +02:00
										 |  |  |   EXPECT_EQ("  +inf", fmt::format("{:+06}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -inf", fmt::format("{:+06}", -inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("+inf  ", fmt::format("{:<+06}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ(" +inf ", fmt::format("{:^+06}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("  +inf", fmt::format("{:>+06}", inf)); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(" inf", fmt::format("{: }", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("INF", fmt::format("{:F}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("inf    ", fmt::format("{:<7}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("  inf  ", fmt::format("{:^7}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("    inf", fmt::format("{:>7}", inf)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_long_double) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("0", fmt::format("{0:}", 0.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.000000", fmt::format("{0:f}", 0.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", fmt::format("{0:}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", fmt::format("{0:g}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", fmt::format("{0:G}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", fmt::format("{0:f}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", fmt::format("{0:F}", 392.65l)); | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07:00
										 |  |  |   char buffer[buffer_size]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%Le", 392.65l); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{0:e}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("+0000392.6", fmt::format("{0:+010.4g}", 392.64l)); | 
					
						
							| 
									
										
										
										
											2023-04-01 19:19:23 +05:00
										 |  |  | 
 | 
					
						
							|  |  |  |   auto ld = 3.31l; | 
					
						
							|  |  |  |   if (fmt::detail::is_double_double<decltype(ld)>::value) { | 
					
						
							|  |  |  |     safe_sprintf(buffer, "%a", static_cast<double>(ld)); | 
					
						
							|  |  |  |     EXPECT_EQ(buffer, fmt::format("{:a}", ld)); | 
					
						
							|  |  |  |   } else { | 
					
						
							|  |  |  |     safe_sprintf(buffer, "%La", ld); | 
					
						
							|  |  |  |     EXPECT_EQ(buffer, fmt::format("{:a}", ld)); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_char) { | 
					
						
							| 
									
										
										
										
											2021-01-18 07:57:38 -08:00
										 |  |  |   const char types[] = "cbBdoxX"; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_unknown_types('a', types, "char"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("a", fmt::format("{0}", 'a')); | 
					
						
							|  |  |  |   EXPECT_EQ("z", fmt::format("{0:c}", 'z')); | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |     EXPECT_EQ(fmt::format(runtime(format_str), n), | 
					
						
							|  |  |  |               fmt::format(runtime(format_str), 'x')) | 
					
						
							| 
									
										
										
										
											2021-01-18 07:57:38 -08:00
										 |  |  |         << format_str; | 
					
						
							| 
									
										
										
										
											2014-07-25 07:10:33 -07:00
										 |  |  |   } | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:02X}", n), fmt::format("{:02X}", 'x')); | 
					
						
							| 
									
										
										
										
											2022-01-30 10:55:28 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("\n", fmt::format("{}", '\n')); | 
					
						
							|  |  |  |   EXPECT_EQ("'\\n'", fmt::format("{:?}", '\n')); | 
					
						
							| 
									
										
										
										
											2022-12-30 08:59:12 -08:00
										 |  |  |   EXPECT_EQ("ff", fmt::format("{:x}", '\xff')); | 
					
						
							| 
									
										
										
										
											2013-12-07 08:12:03 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_volatile_char) { | 
					
						
							| 
									
										
										
										
											2019-04-14 12:34:56 -07:00
										 |  |  |   volatile char c = 'x'; | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("x", fmt::format("{}", c)); | 
					
						
							| 
									
										
										
										
											2019-04-14 12:34:56 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_unsigned_char) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{}", static_cast<unsigned char>(42))); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{}", static_cast<uint8_t>(42))); | 
					
						
							| 
									
										
										
										
											2015-11-05 20:46:22 -05:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_cstring) { | 
					
						
							| 
									
										
										
										
											2015-11-09 07:17:36 -08:00
										 |  |  |   check_unknown_types("test", "sp", "string"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("test", fmt::format("{0}", "test")); | 
					
						
							|  |  |  |   EXPECT_EQ("test", fmt::format("{0:s}", "test")); | 
					
						
							| 
									
										
										
										
											2012-12-17 16:39:49 -08:00
										 |  |  |   char nonconst[] = "nonconst"; | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("nonconst", fmt::format("{0}", nonconst)); | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |       (void)fmt::format(runtime("{0}"), static_cast<const char*>(nullptr)), | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |       format_error, "string pointer is null"); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-13 07:52:39 -08:00
										 |  |  | void function_pointer_test(int, double, std::string) {} | 
					
						
							| 
									
										
											  
											
												fmt::ptr: Support function pointers (#2131)
Passing a function pointer to fmt::ptr results in:
 In file included from /home/mac/git/fmt/test/gmock/gmock.h:238,
                  from /home/mac/git/fmt/test/format-test.cc:31:
 .../fmt/test/format-test.cc: In member function ‘virtual void FormatterTest_FormatPointer_Test::TestBody()’:
 .../fmt/test/format-test.cc:1486:56: error: no matching function for call to ‘ptr(void (&)(int, double, std::__cxx11::string))’
              format("{}", fmt::ptr(function_pointer_test)));
with GCC and Clang. Let's add an overload to support that usage.
Unfortunately, MSVC would
consider the overload to be ambiguous for unknown reasons:
 D:\a\fmt\fmt\test\format-test.cc(1485,1): error C2668: 'fmt::v7::ptr': ambiguous call to overloaded function [D:\a\fmt\build\test\format-test.vcxproj]
 D:\a\fmt\fmt\include\fmt/format.h(3742,60): message : could be 'const void *fmt::v7::ptr<void,int,double,std::string>(T (__cdecl *)(int,double,std::string))' [D:\a\fmt\build\test\format-test.vcxproj]
           with
           [
               T=void
           ]
 D:\a\fmt\fmt\include\fmt/format.h(3735,42): message : or       'const void *fmt::v7::ptr<void(int,double,std::string)>(T (__cdecl *))' [D:\a\fmt\build\test\format-test.vcxproj]
           with
           [
               T=void (int,double,std::string)
           ]
 D:\a\fmt\fmt\test\format-test.cc(1486,1): message : while trying to match the argument list '(overloaded-function)' [D:\a\fmt\build\test\format-test.vcxproj]
but luckily this means that the overload is unnecessary in that case
anyway, so we can just make it conditional.
											
										 
											2021-02-09 15:35:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_pointer) { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_unknown_types(reinterpret_cast<void*>(0x1234), "p", "pointer"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("0x0", fmt::format("{0}", static_cast<void*>(nullptr))); | 
					
						
							|  |  |  |   EXPECT_EQ("0x1234", fmt::format("{0}", reinterpret_cast<void*>(0x1234))); | 
					
						
							|  |  |  |   EXPECT_EQ("0x1234", fmt::format("{0:p}", reinterpret_cast<void*>(0x1234))); | 
					
						
							| 
									
										
										
										
											2022-06-09 16:33:33 +01:00
										 |  |  |   // On CHERI (or other fat-pointer) systems, the size of a pointer is greater
 | 
					
						
							|  |  |  |   // than the size an integer that can hold a virtual address.  There is no
 | 
					
						
							|  |  |  |   // portable address-as-an-integer type (yet) in C++, so we use `size_t` as
 | 
					
						
							|  |  |  |   // the closest equivalent for now.
 | 
					
						
							|  |  |  |   EXPECT_EQ("0x" + std::string(sizeof(size_t) * CHAR_BIT / 4, 'f'), | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{0}", reinterpret_cast<void*>(~uintptr_t()))); | 
					
						
							|  |  |  |   EXPECT_EQ("0x1234", | 
					
						
							|  |  |  |             fmt::format("{}", fmt::ptr(reinterpret_cast<int*>(0x1234)))); | 
					
						
							| 
									
										
										
										
											2019-04-18 13:48:44 +08:00
										 |  |  |   std::unique_ptr<int> up(new int(1)); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("{}", fmt::ptr(up.get())), | 
					
						
							|  |  |  |             fmt::format("{}", fmt::ptr(up))); | 
					
						
							| 
									
										
										
										
											2022-11-14 06:54:32 +01:00
										 |  |  |   struct custom_deleter { | 
					
						
							|  |  |  |     void operator()(int* p) const { delete p; } | 
					
						
							|  |  |  |   }; | 
					
						
							|  |  |  |   std::unique_ptr<int, custom_deleter> upcd(new int(1)); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{}", fmt::ptr(upcd.get())), | 
					
						
							|  |  |  |             fmt::format("{}", fmt::ptr(upcd))); | 
					
						
							| 
									
										
										
										
											2019-04-18 13:48:44 +08:00
										 |  |  |   std::shared_ptr<int> sp(new int(1)); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("{}", fmt::ptr(sp.get())), | 
					
						
							|  |  |  |             fmt::format("{}", fmt::ptr(sp))); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{}", fmt::detail::bit_cast<const void*>( | 
					
						
							|  |  |  |                                   &function_pointer_test)), | 
					
						
							|  |  |  |             fmt::format("{}", fmt::ptr(function_pointer_test))); | 
					
						
							|  |  |  |   EXPECT_EQ("0x0", fmt::format("{}", nullptr)); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-18 17:59:02 -08:00
										 |  |  | TEST(format_test, write_uintptr_fallback) { | 
					
						
							|  |  |  |   // Test that formatting a pointer by converting it to uint128_fallback works.
 | 
					
						
							|  |  |  |   // This is needed to support systems without uintptr_t.
 | 
					
						
							|  |  |  |   auto s = std::string(); | 
					
						
							|  |  |  |   fmt::detail::write_ptr<char>( | 
					
						
							|  |  |  |       std::back_inserter(s), | 
					
						
							|  |  |  |       fmt::detail::bit_cast<fmt::detail::uint128_fallback>( | 
					
						
							|  |  |  |           reinterpret_cast<void*>(0xface)), | 
					
						
							|  |  |  |       nullptr); | 
					
						
							|  |  |  |   EXPECT_EQ(s, "0xface"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-22 08:06:22 -08:00
										 |  |  | enum class color { red, green, blue }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-19 08:03:42 -08:00
										 |  |  | namespace test_ns { | 
					
						
							|  |  |  | enum class color { red, green, blue }; | 
					
						
							|  |  |  | using fmt::enums::format_as; | 
					
						
							|  |  |  | }  // namespace test_ns
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-22 08:06:22 -08:00
										 |  |  | TEST(format_test, format_enum_class) { | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{}", fmt::underlying(color::red)), "0"); | 
					
						
							| 
									
										
										
										
											2022-02-19 08:03:42 -08:00
										 |  |  |   EXPECT_EQ(fmt::format("{}", test_ns::color::red), "0"); | 
					
						
							| 
									
										
										
										
											2022-01-22 08:06:22 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_string) { | 
					
						
							| 
									
										
										
										
											2022-01-22 08:06:22 -08:00
										 |  |  |   EXPECT_EQ(fmt::format("{0}", std::string("test")), "test"); | 
					
						
							| 
									
										
										
										
											2022-01-30 10:55:28 -06:00
										 |  |  |   EXPECT_EQ(fmt::format("{0}", std::string("test")), "test"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:?}", std::string("test")), "\"test\""); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:*^10?}", std::string("test")), "**\"test\"**"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:?}", std::string("\test")), "\"\\test\""); | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW((void)fmt::format(fmt::runtime("{:x}"), std::string("test")), | 
					
						
							| 
									
										
										
										
											2021-07-02 07:51:04 -07:00
										 |  |  |                fmt::format_error); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_string_view) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("test", fmt::format("{}", string_view("test"))); | 
					
						
							| 
									
										
										
										
											2022-01-30 10:55:28 -06:00
										 |  |  |   EXPECT_EQ("\"t\\nst\"", fmt::format("{:?}", string_view("t\nst"))); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("", fmt::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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_std_string_view) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("test", fmt::format("{}", std::string_view("test"))); | 
					
						
							|  |  |  |   EXPECT_EQ("foo", fmt::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"; } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <> | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | struct fmt::formatter<explicitly_convertible_to_std_string_view> | 
					
						
							| 
									
										
										
										
											2019-12-05 13:12:46 +09:00
										 |  |  |     : formatter<std::string_view> { | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   auto format(explicitly_convertible_to_std_string_view v, format_context& ctx) | 
					
						
							|  |  |  |       -> decltype(ctx.out()) { | 
					
						
							| 
									
										
										
										
											2019-12-05 13:12:46 +09:00
										 |  |  |     return format_to(ctx.out(), "'{}'", std::string_view(v)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_explicitly_convertible_to_std_string_view) { | 
					
						
							| 
									
										
										
										
											2019-12-05 13:12:46 +09:00
										 |  |  |   EXPECT_EQ("'foo'", | 
					
						
							|  |  |  |             fmt::format("{}", explicitly_convertible_to_std_string_view())); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-24 18:19:30 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | class Answer {}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-12 08:33:51 -07:00
										 |  |  | FMT_BEGIN_NAMESPACE | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07: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(); | 
					
						
							| 
									
										
										
										
											2020-06-15 18:13:40 -07:00
										 |  |  |     if (it != ctx.end() && *it == 'd') ++it; | 
					
						
							| 
									
										
										
										
											2017-11-05 13:18:42 -08:00
										 |  |  |     return it; | 
					
						
							| 
									
										
										
										
											2017-08-13 13:09:02 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07:00
										 |  |  |   auto format(const date& d, format_context& ctx) -> decltype(ctx.out()) { | 
					
						
							| 
									
										
										
										
											2022-12-11 09:23:39 -08:00
										 |  |  |     // Namespace-qualify to avoid ambiguity with std::format_to.
 | 
					
						
							|  |  |  |     fmt::format_to(ctx.out(), "{}-{}-{}", d.year(), d.month(), d.day()); | 
					
						
							| 
									
										
										
										
											2018-04-22 09:16:32 -07:00
										 |  |  |     return ctx.out(); | 
					
						
							| 
									
										
										
										
											2017-08-13 13:09:02 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_custom) { | 
					
						
							| 
									
										
										
										
											2021-11-24 17:09:41 -05:00
										 |  |  |   EXPECT_THROW_MSG((void)fmt::format(runtime("{:s}"), date(2012, 12, 9)), | 
					
						
							| 
									
										
										
										
											2021-05-18 19:38:52 -07:00
										 |  |  |                    format_error, "unknown format specifier"); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{0}", Answer())); | 
					
						
							|  |  |  |   EXPECT_EQ("0042", fmt::format("{:04}", Answer())); | 
					
						
							| 
									
										
										
										
											2012-12-17 14:56:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_to_custom) { | 
					
						
							| 
									
										
										
										
											2018-07-04 07:40:56 -07:00
										 |  |  |   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"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_string_from_speed_test) { | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  |   EXPECT_EQ("1.2340000000:0042:+3.13:str:0x3e8:X:%", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_examples) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   std::string message = fmt::format("The answer is {}", 42); | 
					
						
							| 
									
										
										
										
											2013-01-12 10:08:51 -08:00
										 |  |  |   EXPECT_EQ("The answer is 42", message); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format("{}", 42)); | 
					
						
							| 
									
										
										
										
											2013-01-04 09:14:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-18 09:13:12 -08:00
										 |  |  |   memory_buffer out; | 
					
						
							| 
									
										
										
										
											2021-05-30 12:59:56 -07:00
										 |  |  |   format_to(std::back_inserter(out), "The answer is {}.", 42); | 
					
						
							| 
									
										
										
										
											2017-02-18 09:13:12 -08:00
										 |  |  |   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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("First, thou shalt count to three", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("First, thou shalt count to {0}", "three")); | 
					
						
							|  |  |  |   EXPECT_EQ("Bring me a shrubbery", fmt::format("Bring me a {}", "shrubbery")); | 
					
						
							|  |  |  |   EXPECT_EQ("From 1 to 3", fmt::format("From {} to {}", 1, 3)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 17:43:06 -07:00
										 |  |  |   char buffer[buffer_size]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%03.2f", -1.2); | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(buffer, fmt::format("{:03.2f}", -1.2)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("a, b, c", fmt::format("{0}, {1}, {2}", 'a', 'b', 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("a, b, c", fmt::format("{}, {}, {}", 'a', 'b', 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("c, b, a", fmt::format("{2}, {1}, {0}", 'a', 'b', 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abracadabra", fmt::format("{0}{1}{0}", "abra", "cad")); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("left aligned                  ", | 
					
						
							|  |  |  |             fmt::format("{:<30}", "left aligned")); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("                 right aligned", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("{:>30}", "right aligned")); | 
					
						
							|  |  |  |   EXPECT_EQ("           centered           ", | 
					
						
							|  |  |  |             fmt::format("{:^30}", "centered")); | 
					
						
							|  |  |  |   EXPECT_EQ("***********centered***********", | 
					
						
							|  |  |  |             fmt::format("{:*^30}", "centered")); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("+3.140000; -3.140000", fmt::format("{:+f}; {:+f}", 3.14, -3.14)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 3.140000; -3.140000", fmt::format("{: f}; {: f}", 3.14, -3.14)); | 
					
						
							|  |  |  |   EXPECT_EQ("3.140000; -3.140000", fmt::format("{:-f}; {:-f}", 3.14, -3.14)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("int: 42;  hex: 2a;  oct: 52", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::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", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("int: {0:d};  hex: {0:#x};  oct: {0:#o}", 42)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("The answer is 42", fmt::format("The answer is {}", 42)); | 
					
						
							| 
									
										
										
										
											2021-11-25 11:52:21 -05:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							|  |  |  |       (void)fmt::format(runtime("The answer is {:d}"), "forty-two"), | 
					
						
							| 
									
										
										
										
											2022-12-30 10:20:07 -08:00
										 |  |  |       format_error, "invalid format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 14:53:16 -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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, print) { | 
					
						
							| 
									
										
										
										
											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!"); | 
					
						
							| 
									
										
										
										
											2023-01-24 14:30:00 -06:00
										 |  |  |   EXPECT_WRITE(stdout, fmt::println("Don't {}!", "panic"), "Don't panic!\n"); | 
					
						
							|  |  |  |   EXPECT_WRITE(stderr, fmt::println(stderr, "Don't {}!", "panic"), | 
					
						
							|  |  |  |                "Don't panic!\n"); | 
					
						
							| 
									
										
										
										
											2014-05-06 08:05:51 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, variadic) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("abc1", fmt::format("{}c{}", "ab", 1)); | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, dynamic) { | 
					
						
							|  |  |  |   using ctx = fmt::format_context; | 
					
						
							|  |  |  |   auto args = std::vector<fmt::basic_format_arg<ctx>>(); | 
					
						
							| 
									
										
										
										
											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 {}", | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |       fmt::format_args(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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, bytes) { | 
					
						
							| 
									
										
										
										
											2019-12-24 10:11:47 -08:00
										 |  |  |   auto s = fmt::format("{:10}", fmt::bytes("ёжик")); | 
					
						
							|  |  |  |   EXPECT_EQ("ёжик  ", s); | 
					
						
							|  |  |  |   EXPECT_EQ(10, s.size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-05 06:47:18 -07:00
										 |  |  | TEST(format_test, group_digits_view) { | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{}", fmt::group_digits(10000000)), "10,000,000"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:8}", fmt::group_digits(1000)), "   1,000"); | 
					
						
							| 
									
										
										
										
											2021-09-03 22:04:58 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 06:50:52 -07:00
										 |  |  | enum test_enum { foo, bar }; | 
					
						
							| 
									
										
										
										
											2022-07-03 08:05:47 -07:00
										 |  |  | auto format_as(test_enum e) -> int { return e; } | 
					
						
							| 
									
										
										
										
											2021-05-05 06:50:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, join) { | 
					
						
							| 
									
										
										
										
											2018-01-27 16:04:45 -08:00
										 |  |  |   using fmt::join; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   int v1[3] = {1, 2, 3}; | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   auto v2 = std::vector<float>(); | 
					
						
							| 
									
										
										
										
											2018-01-27 16:04:45 -08:00
										 |  |  |   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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("(1, 2, 3)", fmt::format("({})", join(v1, v1 + 3, ", "))); | 
					
						
							|  |  |  |   EXPECT_EQ("(1)", fmt::format("({})", join(v1, v1 + 1, ", "))); | 
					
						
							|  |  |  |   EXPECT_EQ("()", fmt::format("({})", join(v1, v1, ", "))); | 
					
						
							|  |  |  |   EXPECT_EQ("(001, 002, 003)", fmt::format("({:03})", join(v1, v1 + 3, ", "))); | 
					
						
							| 
									
										
										
										
											2018-01-27 16:04:45 -08:00
										 |  |  |   EXPECT_EQ("(+01.20, +03.40)", | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |             fmt::format("({:+06.2f})", join(v2.begin(), v2.end(), ", "))); | 
					
						
							| 
									
										
										
										
											2018-01-27 16:04:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("1, 2, 3", fmt::format("{0:{1}}", join(v1, v1 + 3, ", "), 1)); | 
					
						
							| 
									
										
										
										
											2018-01-27 16:04:45 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("{}, {}", v3[0], v3[1]), | 
					
						
							|  |  |  |             fmt::format("{}", join(v3, v3 + 2, ", "))); | 
					
						
							| 
									
										
										
										
											2018-04-30 11:09:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("(1, 2, 3)", fmt::format("({})", join(v1, ", "))); | 
					
						
							|  |  |  |   EXPECT_EQ("(+01.20, +03.40)", fmt::format("({:+06.2f})", join(v2, ", "))); | 
					
						
							| 
									
										
										
										
											2021-05-05 06:50:52 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   auto v4 = std::vector<test_enum>{foo, bar, foo}; | 
					
						
							|  |  |  |   EXPECT_EQ("0 1 0", fmt::format("{}", join(v4, " "))); | 
					
						
							| 
									
										
										
										
											2018-01-27 16:04:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-27 18:23:28 +03:00
										 |  |  | #ifdef __cpp_lib_byte
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, join_bytes) { | 
					
						
							|  |  |  |   auto v = std::vector<std::byte>{std::byte(1), std::byte(2), std::byte(3)}; | 
					
						
							| 
									
										
										
										
											2022-03-24 17:22:44 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("{}", fmt::join(v, ", ")), "1, 2, 3"); | 
					
						
							| 
									
										
										
										
											2020-12-03 08:50:28 -08:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | std::string vformat_message(int id, const char* format, fmt::format_args args) { | 
					
						
							| 
									
										
										
										
											2021-05-30 12:59:56 -07:00
										 |  |  |   auto buffer = fmt::memory_buffer(); | 
					
						
							|  |  |  |   format_to(fmt::appender(buffer), "[{}] ", id); | 
					
						
							| 
									
										
										
										
											2021-05-30 07:33:02 -07:00
										 |  |  |   vformat_to(fmt::appender(buffer), format, args); | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  |   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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_message_example) { | 
					
						
							| 
									
										
										
										
											2014-06-28 12:49:51 -07:00
										 |  |  |   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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, unpacked_args) { | 
					
						
							| 
									
										
										
										
											2016-12-23 08:24:48 -08:00
										 |  |  |   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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-11 17:43:14 -07:00
										 |  |  | constexpr char with_null[3] = {'{', '}', '\0'}; | 
					
						
							|  |  |  | constexpr char no_null[2] = {'{', '}'}; | 
					
						
							| 
									
										
										
										
											2022-05-29 16:40:46 -07:00
										 |  |  | static constexpr const char static_with_null[3] = {'{', '}', '\0'}; | 
					
						
							|  |  |  | static constexpr const char static_no_null[2] = {'{', '}'}; | 
					
						
							| 
									
										
										
										
											2020-03-11 17:43:14 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, compile_time_string) { | 
					
						
							| 
									
										
										
										
											2020-12-19 09:01:57 -08:00
										 |  |  |   EXPECT_EQ("foo", fmt::format(FMT_STRING("foo"))); | 
					
						
							| 
									
										
										
										
											2019-06-16 16:06:06 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING("{}"), 42)); | 
					
						
							| 
									
										
										
										
											2020-11-15 05:19:06 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-29 17:00:09 -07:00
										 |  |  | #if FMT_USE_NONTYPE_TEMPLATE_ARGS
 | 
					
						
							| 
									
										
										
										
											2021-05-13 03:57:07 +03:00
										 |  |  |   using namespace fmt::literals; | 
					
						
							|  |  |  |   EXPECT_EQ("foobar", fmt::format(FMT_STRING("{foo}{bar}"), "bar"_a = "bar", | 
					
						
							|  |  |  |                                   "foo"_a = "foo")); | 
					
						
							|  |  |  |   EXPECT_EQ("", fmt::format(FMT_STRING(""))); | 
					
						
							|  |  |  |   EXPECT_EQ("", fmt::format(FMT_STRING(""), "arg"_a = 42)); | 
					
						
							| 
									
										
										
										
											2022-03-17 23:53:48 -05:00
										 |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING("{answer}"), "answer"_a = Answer())); | 
					
						
							| 
									
										
										
										
											2022-11-30 14:00:32 +01:00
										 |  |  |   EXPECT_EQ("1 2", fmt::format(FMT_STRING("{} {two}"), 1, "two"_a = 2)); | 
					
						
							| 
									
										
										
										
											2021-05-13 03:57:07 +03:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-15 05:19:06 -08:00
										 |  |  |   (void)static_with_null; | 
					
						
							|  |  |  |   (void)static_no_null; | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | #ifndef _MSC_VER
 | 
					
						
							| 
									
										
										
										
											2020-11-15 05:19:06 -08:00
										 |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING(static_with_null), 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING(static_no_null), 42)); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-11 17:43:14 -07:00
										 |  |  |   (void)with_null; | 
					
						
							|  |  |  |   (void)no_null; | 
					
						
							| 
									
										
										
										
											2022-07-03 14:50:21 +05:00
										 |  |  | #if FMT_CPLUSPLUS >= 201703L
 | 
					
						
							| 
									
										
										
										
											2020-03-11 17:43:14 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING(with_null), 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING(no_null), 42)); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-07-03 14:50:21 +05:00
										 |  |  | #if defined(FMT_USE_STRING_VIEW) && FMT_CPLUSPLUS >= 201703L
 | 
					
						
							| 
									
										
										
										
											2020-03-11 17:43:14 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING(std::string_view("{}")), 42)); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-06-16 16:06:06 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, custom_format_compile_time_string) { | 
					
						
							| 
									
										
										
										
											2019-07-14 16:16:13 -10:00
										 |  |  |   EXPECT_EQ("42", fmt::format(FMT_STRING("{}"), Answer())); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   auto answer = Answer(); | 
					
						
							| 
									
										
										
										
											2019-07-14 16:16:13 -10:00
										 |  |  |   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
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, named_arg_udl) { | 
					
						
							| 
									
										
										
										
											2022-05-22 06:49:31 -07:00
										 |  |  |   using namespace fmt::literals; | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   auto udl_a = fmt::format("{first}{second}{first}{third}", "first"_a = "abra", | 
					
						
							|  |  |  |                            "second"_a = "cad", "third"_a = 99); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_EQ( | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |       fmt::format("{first}{second}{first}{third}", fmt::arg("first", "abra"), | 
					
						
							|  |  |  |                   fmt::arg("second", "cad"), fmt::arg("third", 99)), | 
					
						
							|  |  |  |       udl_a); | 
					
						
							| 
									
										
										
										
											2022-03-17 23:53:48 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{answer}", "answer"_a = Answer())); | 
					
						
							| 
									
										
										
										
											2015-09-27 04:09:37 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | #endif  // FMT_USE_USER_DEFINED_LITERALS
 | 
					
						
							| 
									
										
										
										
											2015-11-24 08:18:19 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-05 06:50:52 -07:00
										 |  |  | TEST(format_test, enum) { EXPECT_EQ("0", fmt::format("{}", foo)); } | 
					
						
							| 
									
										
										
										
											2015-11-25 09:49:01 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, formatter_not_specialized) { | 
					
						
							|  |  |  |   static_assert(!fmt::has_formatter<fmt::formatter<test_enum>, | 
					
						
							|  |  |  |                                     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 }; | 
					
						
							| 
									
										
										
										
											2022-07-03 08:05:47 -07:00
										 |  |  | auto format_as(big_enum e) -> unsigned long long { return e; } | 
					
						
							| 
									
										
										
										
											2018-02-10 06:17:42 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, strong_enum) { | 
					
						
							| 
									
										
										
										
											2019-08-31 06:34:32 -07:00
										 |  |  |   EXPECT_EQ("5000000000", fmt::format("{}", big_enum_value)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-02-10 06:17:42 -08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, non_null_terminated_format_string) { | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  |   EXPECT_EQ("42", fmt::format(string_view("{}foo", 2), 42)); | 
					
						
							| 
									
										
										
										
											2017-07-18 19:40:48 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2017-09-03 08:28:30 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-21 07:12:04 -07:00
										 |  |  | namespace adl_test { | 
					
						
							|  |  |  | namespace fmt { | 
					
						
							|  |  |  | namespace detail { | 
					
						
							|  |  |  | struct foo {}; | 
					
						
							|  |  |  | template <typename, typename OutputIt> void write(OutputIt, foo) = delete; | 
					
						
							|  |  |  | }  // namespace detail
 | 
					
						
							|  |  |  | }  // namespace fmt
 | 
					
						
							|  |  |  | }  // namespace adl_test
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FMT_BEGIN_NAMESPACE | 
					
						
							|  |  |  | template <> | 
					
						
							|  |  |  | struct formatter<adl_test::fmt::detail::foo> : formatter<std::string> { | 
					
						
							| 
									
										
										
										
											2022-09-21 17:11:43 -07:00
										 |  |  |   auto format(adl_test::fmt::detail::foo, format_context& ctx) | 
					
						
							| 
									
										
										
										
											2020-06-21 07:12:04 -07:00
										 |  |  |       -> decltype(ctx.out()) { | 
					
						
							|  |  |  |     return formatter<std::string>::format("foo", ctx); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | FMT_END_NAMESPACE | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, to_string) { | 
					
						
							| 
									
										
										
										
											2021-10-31 08:09:32 -07:00
										 |  |  |   EXPECT_EQ(fmt::to_string(42), "42"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::to_string(reinterpret_cast<void*>(0x1234)), "0x1234"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::to_string(adl_test::fmt::detail::foo()), "foo"); | 
					
						
							| 
									
										
										
										
											2022-07-03 08:05:47 -07:00
										 |  |  |   EXPECT_EQ(fmt::to_string(foo), "0"); | 
					
						
							| 
									
										
										
										
											2022-05-29 11:40:33 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if FMT_USE_FLOAT128
 | 
					
						
							| 
									
										
										
										
											2022-05-31 12:47:08 -07:00
										 |  |  |   EXPECT_EQ(fmt::to_string(__float128(0.5)), "0.5"); | 
					
						
							| 
									
										
										
										
											2022-05-29 11:40:33 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2022-12-23 17:47:54 +05:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(FMT_USE_STRING_VIEW) && FMT_CPLUSPLUS >= 201703L
 | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::to_string(std::string_view()), ""); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-02-04 08:52:43 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, output_iterators) { | 
					
						
							| 
									
										
										
										
											2018-02-04 08:52:43 -08:00
										 |  |  |   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()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, formatted_size) { | 
					
						
							| 
									
										
										
										
											2018-04-04 07:38:21 -07:00
										 |  |  |   EXPECT_EQ(2u, fmt::formatted_size("{}", 42)); | 
					
						
							| 
									
										
										
										
											2022-09-07 23:15:12 +02:00
										 |  |  |   EXPECT_EQ(2u, fmt::formatted_size(std::locale(), "{}", 42)); | 
					
						
							| 
									
										
										
										
											2018-02-04 08:52:43 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_to_no_args) { | 
					
						
							|  |  |  |   std::string s; | 
					
						
							|  |  |  |   fmt::format_to(std::back_inserter(s), "test"); | 
					
						
							|  |  |  |   EXPECT_EQ("test", s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(format_test, format_to) { | 
					
						
							|  |  |  |   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); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(format_test, format_to_memory_buffer) { | 
					
						
							| 
									
										
										
										
											2021-05-29 08:26:04 -07:00
										 |  |  |   auto buf = fmt::basic_memory_buffer<char, 100>(); | 
					
						
							| 
									
										
										
										
											2021-05-30 12:59:56 -07:00
										 |  |  |   fmt::format_to(fmt::appender(buf), "{}", "foo"); | 
					
						
							| 
									
										
										
										
											2021-05-29 08:26:04 -07:00
										 |  |  |   EXPECT_EQ("foo", to_string(buf)); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(format_test, format_to_vector) { | 
					
						
							| 
									
										
										
										
											2020-08-08 07:01:21 -07:00
										 |  |  |   std::vector<char> v; | 
					
						
							|  |  |  |   fmt::format_to(std::back_inserter(v), "{}", "foo"); | 
					
						
							|  |  |  |   EXPECT_EQ(string_view(v.data(), v.size()), "foo"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-23 17:27:24 -08:00
										 |  |  | struct nongrowing_container { | 
					
						
							|  |  |  |   using value_type = char; | 
					
						
							|  |  |  |   void push_back(char) { throw std::runtime_error("can't take it any more"); } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_to_propagates_exceptions) { | 
					
						
							| 
									
										
										
										
											2021-01-23 17:27:24 -08:00
										 |  |  |   auto c = nongrowing_container(); | 
					
						
							|  |  |  |   EXPECT_THROW(fmt::format_to(std::back_inserter(c), "{}", 42), | 
					
						
							|  |  |  |                std::runtime_error); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_to_n) { | 
					
						
							| 
									
										
										
										
											2018-03-29 15:13:10 -10:00
										 |  |  |   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)); | 
					
						
							| 
									
										
										
										
											2020-11-08 08:08:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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)); | 
					
						
							| 
									
										
										
										
											2020-11-08 08:08:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											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)); | 
					
						
							| 
									
										
										
										
											2020-11-08 08:08:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-26 20:38:03 +01:00
										 |  |  |   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)); | 
					
						
							| 
									
										
										
										
											2020-11-08 08:08:55 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   result = fmt::format_to_n(buffer, 4, "{}", "ABCDE"); | 
					
						
							|  |  |  |   EXPECT_EQ(5u, result.size); | 
					
						
							|  |  |  |   EXPECT_EQ("ABCD", fmt::string_view(buffer, 4)); | 
					
						
							| 
									
										
										
										
											2020-11-18 06:43:47 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   buffer[3] = 'x'; | 
					
						
							|  |  |  |   result = fmt::format_to_n(buffer, 3, "{}", std::string(1000, '*')); | 
					
						
							|  |  |  |   EXPECT_EQ(1000u, result.size); | 
					
						
							|  |  |  |   EXPECT_EQ("***x", fmt::string_view(buffer, 4)); | 
					
						
							| 
									
										
										
										
											2018-03-29 15:13:10 -10: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; } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, format_to_n_output_iterator) { | 
					
						
							| 
									
										
										
										
											2020-01-05 09:28:21 -10:00
										 |  |  |   char buf[10] = {}; | 
					
						
							|  |  |  |   fmt::format_to_n(test_output_iterator{buf}, 10, "{}", 42); | 
					
						
							|  |  |  |   EXPECT_STREQ(buf, "42"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, vformat_to) { | 
					
						
							|  |  |  |   using context = fmt::format_context; | 
					
						
							| 
									
										
										
										
											2020-05-10 07:25:42 -07:00
										 |  |  |   fmt::basic_format_arg<context> arg = fmt::detail::make_arg<context>(42); | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   auto args = fmt::basic_format_args<context>(&arg, 1); | 
					
						
							|  |  |  |   auto s = std::string(); | 
					
						
							| 
									
										
										
										
											2018-09-30 08:58:59 +02:00
										 |  |  |   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); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, char_traits_is_not_ambiguous) { | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   auto c = char_traits<char>::char_type(); | 
					
						
							| 
									
										
										
										
											2019-05-12 01:48:27 +07:00
										 |  |  |   (void)c; | 
					
						
							| 
									
										
										
										
											2022-07-03 14:50:21 +05:00
										 |  |  | #if FMT_CPLUSPLUS >= 201103L
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   auto s = std::string(); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-18 14:37:56 -05:00
										 |  |  | struct check_back_appender {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FMT_BEGIN_NAMESPACE | 
					
						
							|  |  |  | template <> struct formatter<check_back_appender> { | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  |   auto parse(format_parse_context& ctx) -> decltype(ctx.begin()) { | 
					
						
							| 
									
										
										
										
											2020-08-18 14:37:56 -05:00
										 |  |  |     return ctx.begin(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   template <typename Context> | 
					
						
							|  |  |  |   auto format(check_back_appender, Context& ctx) -> decltype(ctx.out()) { | 
					
						
							|  |  |  |     auto out = ctx.out(); | 
					
						
							|  |  |  |     static_assert(std::is_same<decltype(++out), decltype(out)&>::value, | 
					
						
							|  |  |  |                   "needs to satisfy weakly_incrementable"); | 
					
						
							|  |  |  |     *out = 'y'; | 
					
						
							|  |  |  |     return ++out; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | FMT_END_NAMESPACE | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | TEST(format_test, back_insert_slicing) { | 
					
						
							| 
									
										
										
										
											2020-08-18 14:37:56 -05:00
										 |  |  |   EXPECT_EQ(fmt::format("{}", check_back_appender{}), "y"); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-03-19 18:56:45 -07:00
										 |  |  | namespace test { | 
					
						
							|  |  |  | enum class scoped_enum_as_int {}; | 
					
						
							|  |  |  | auto format_as(scoped_enum_as_int) -> int { return 42; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum class scoped_enum_as_string_view {}; | 
					
						
							|  |  |  | auto format_as(scoped_enum_as_string_view) -> fmt::string_view { return "foo"; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum class scoped_enum_as_string {}; | 
					
						
							|  |  |  | auto format_as(scoped_enum_as_string) -> std::string { return "foo"; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct struct_as_int {}; | 
					
						
							|  |  |  | auto format_as(struct_as_int) -> int { return 42; } | 
					
						
							|  |  |  | }  // namespace test
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(format_test, format_as) { | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{}", test::scoped_enum_as_int()), "42"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{}", test::scoped_enum_as_string_view()), "foo"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{}", test::scoped_enum_as_string()), "foo"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{}", test::struct_as_int()), "42"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-30 14:21:49 -07:00
										 |  |  | template <typename Char, typename T> bool check_enabled_formatter() { | 
					
						
							|  |  |  |   static_assert(std::is_default_constructible<fmt::formatter<T, Char>>::value, | 
					
						
							|  |  |  |                 ""); | 
					
						
							|  |  |  |   return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <typename Char, typename... T> void check_enabled_formatters() { | 
					
						
							|  |  |  |   auto dummy = {check_enabled_formatter<Char, T>()...}; | 
					
						
							|  |  |  |   (void)dummy; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(format_test, test_formatters_enabled) { | 
					
						
							|  |  |  |   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*, | 
					
						
							|  |  |  |                            std::string, std::nullptr_t>(); | 
					
						
							|  |  |  |   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*, | 
					
						
							|  |  |  |                            const wchar_t*, std::wstring, std::nullptr_t>(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-04-30 17:02:14 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(format_int_test, data) { | 
					
						
							|  |  |  |   fmt::format_int format_int(42); | 
					
						
							|  |  |  |   EXPECT_EQ("42", std::string(format_int.data(), format_int.size())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(format_int_test, format_int) { | 
					
						
							|  |  |  |   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()); | 
					
						
							|  |  |  |   std::ostringstream os; | 
					
						
							|  |  |  |   os << max_value<int64_t>(); | 
					
						
							|  |  |  |   EXPECT_EQ(os.str(), fmt::format_int(max_value<int64_t>()).str()); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-09-02 13:45:23 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-02 17:27:19 -07:00
										 |  |  | #ifndef FMT_STATIC_THOUSANDS_SEPARATOR
 | 
					
						
							| 
									
										
										
										
											2022-09-02 13:45:23 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #  include <locale>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-02 17:27:19 -07:00
										 |  |  | class format_facet : public fmt::format_facet<std::locale> { | 
					
						
							| 
									
										
										
										
											2022-09-02 13:45:23 -07:00
										 |  |  |  protected: | 
					
						
							| 
									
										
										
										
											2022-09-02 17:27:19 -07:00
										 |  |  |   struct int_formatter { | 
					
						
							|  |  |  |     fmt::appender out; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename T, FMT_ENABLE_IF(fmt::detail::is_integer<T>::value)> | 
					
						
							| 
									
										
										
										
											2022-09-04 10:44:05 -07:00
										 |  |  |     auto operator()(T value) -> bool { | 
					
						
							| 
									
										
										
										
											2022-09-02 17:27:19 -07:00
										 |  |  |       fmt::format_to(out, "[{}]", value); | 
					
						
							| 
									
										
										
										
											2022-09-04 10:44:05 -07:00
										 |  |  |       return true; | 
					
						
							| 
									
										
										
										
											2022-09-02 17:27:19 -07:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-09-04 10:44:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-02 17:27:19 -07:00
										 |  |  |     template <typename T, FMT_ENABLE_IF(!fmt::detail::is_integer<T>::value)> | 
					
						
							| 
									
										
										
										
											2022-09-04 10:44:05 -07:00
										 |  |  |     auto operator()(T) -> bool { | 
					
						
							|  |  |  |       return false; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-09-02 17:27:19 -07:00
										 |  |  |   }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-11 09:33:31 -07:00
										 |  |  |   auto do_put(fmt::appender out, fmt::loc_value val, | 
					
						
							| 
									
										
										
										
											2022-12-24 14:34:50 -08:00
										 |  |  |               const fmt::format_specs<>&) const -> bool override; | 
					
						
							| 
									
										
										
										
											2022-09-02 13:45:23 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-11 09:33:31 -07:00
										 |  |  | auto format_facet::do_put(fmt::appender out, fmt::loc_value val, | 
					
						
							| 
									
										
										
										
											2022-12-24 14:34:50 -08:00
										 |  |  |                           const fmt::format_specs<>&) const -> bool { | 
					
						
							| 
									
										
										
										
											2022-09-11 09:33:31 -07:00
										 |  |  |   return val.visit(int_formatter{out}); | 
					
						
							| 
									
										
										
										
											2022-09-02 13:45:23 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-02 17:27:19 -07:00
										 |  |  | TEST(format_test, format_facet) { | 
					
						
							|  |  |  |   auto loc = std::locale(std::locale(), new format_facet()); | 
					
						
							| 
									
										
										
										
											2022-09-02 13:45:23 -07:00
										 |  |  |   EXPECT_EQ(fmt::format(loc, "{:L}", 42), "[42]"); | 
					
						
							| 
									
										
										
										
											2022-09-03 07:01:11 -07:00
										 |  |  |   EXPECT_EQ(fmt::format(loc, "{:L}", -42), "[-42]"); | 
					
						
							| 
									
										
										
										
											2022-09-02 13:45:23 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-03 10:35:57 -07:00
										 |  |  | TEST(format_test, format_facet_separator) { | 
					
						
							|  |  |  |   // U+2019 RIGHT SINGLE QUOTATION MARK is a digit separator in the de_CH
 | 
					
						
							|  |  |  |   // locale.
 | 
					
						
							| 
									
										
										
										
											2022-09-04 09:01:26 -07:00
										 |  |  |   auto loc = | 
					
						
							|  |  |  |       std::locale({}, new fmt::format_facet<std::locale>("\xe2\x80\x99")); | 
					
						
							| 
									
										
										
										
											2022-09-03 10:35:57 -07:00
										 |  |  |   EXPECT_EQ(fmt::format(loc, "{:L}", 1000), | 
					
						
							|  |  |  |             "1\xe2\x80\x99" | 
					
						
							|  |  |  |             "000"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-04 09:01:26 -07:00
										 |  |  | TEST(format_test, format_facet_grouping) { | 
					
						
							|  |  |  |   auto loc = | 
					
						
							|  |  |  |       std::locale({}, new fmt::format_facet<std::locale>(",", {1, 2, 3})); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format(loc, "{:L}", 1234567890), "1,234,567,89,0"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-15 09:54:16 -08:00
										 |  |  | TEST(format_test, format_named_arg_with_locale) { | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format(std::locale(), "{answer}", fmt::arg("answer", 42)), | 
					
						
							|  |  |  |             "42"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-02 13:45:23 -07:00
										 |  |  | #endif  // FMT_STATIC_THOUSANDS_SEPARATOR
 |