| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  Formatting library tests. | 
					
						
							| 
									
										
										
										
											2012-12-12 07:44:41 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-01 16:49:08 -07:00
										 |  |  |  Copyright (c) 2012-2014, Victor Zverovich | 
					
						
							| 
									
										
										
										
											2012-12-12 07:44:41 -08:00
										 |  |  |  All rights reserved. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  Redistribution and use in source and binary forms, with or without | 
					
						
							|  |  |  |  modification, are permitted provided that the following conditions are met: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  1. Redistributions of source code must retain the above copyright notice, this | 
					
						
							|  |  |  |     list of conditions and the following disclaimer. | 
					
						
							|  |  |  |  2. Redistributions in binary form must reproduce the above copyright notice, | 
					
						
							|  |  |  |     this list of conditions and the following disclaimer in the documentation | 
					
						
							|  |  |  |     and/or other materials provided with the distribution. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | 
					
						
							|  |  |  |  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
					
						
							|  |  |  |  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
					
						
							|  |  |  |  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | 
					
						
							|  |  |  |  ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
					
						
							|  |  |  |  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
					
						
							|  |  |  |  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 
					
						
							|  |  |  |  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
					
						
							|  |  |  |  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
					
						
							|  |  |  |  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-12 09:29:32 -08:00
										 |  |  | #include <cctype>
 | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | #include <cfloat>
 | 
					
						
							|  |  |  | #include <climits>
 | 
					
						
							| 
									
										
										
										
											2016-04-17 19:06:03 -07:00
										 |  |  | #include <clocale>
 | 
					
						
							| 
									
										
										
										
											2014-06-06 11:14:53 -07:00
										 |  |  | #include <cmath>
 | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | #include <cstring>
 | 
					
						
							| 
									
										
										
										
											2012-12-11 20:48:49 -08:00
										 |  |  | #include <memory>
 | 
					
						
							| 
									
										
										
										
											2014-09-18 09:07:40 -07:00
										 |  |  | #include <stdint.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:05 -07:00
										 |  |  | #if FMT_USE_TYPE_TRAITS
 | 
					
						
							|  |  |  | # include <type_traits>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-18 09:07:40 -07:00
										 |  |  | #include "gmock/gmock.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-22 07:28:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-07 07:05:17 -07:00
										 |  |  | // Test that the library compiles if None is defined to 0 as done by xlib.h.
 | 
					
						
							|  |  |  | #define None 0
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-19 15:04:25 -07:00
										 |  |  | struct LocaleMock { | 
					
						
							|  |  |  |   static LocaleMock *instance; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   MOCK_METHOD0(localeconv, lconv *()); | 
					
						
							|  |  |  | } *LocaleMock::instance; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace fmt { | 
					
						
							|  |  |  | namespace std { | 
					
						
							|  |  |  | using namespace ::std; | 
					
						
							|  |  |  | lconv *localeconv() { | 
					
						
							|  |  |  |   return LocaleMock::instance ? | 
					
						
							|  |  |  |         LocaleMock::instance->localeconv() : ::std::localeconv(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-24 09:06:12 -07:00
										 |  |  | #include "fmt/format.h"
 | 
					
						
							| 
									
										
										
										
											2016-04-25 08:07:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-15 08:40:03 -07:00
										 |  |  | #include "util.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | #include "mock-allocator.h"
 | 
					
						
							| 
									
										
										
										
											2014-08-15 08:40:03 -07:00
										 |  |  | #include "gtest-extra.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-09 15:17:38 -07:00
										 |  |  | #undef min
 | 
					
						
							|  |  |  | #undef max
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | using std::size_t; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-02 20:29:02 -08:00
										 |  |  | using fmt::BasicWriter; | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  | using fmt::format; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  | using fmt::format_error; | 
					
						
							| 
									
										
										
										
											2012-12-18 15:39:42 -08:00
										 |  |  | using fmt::StringRef; | 
					
						
							| 
									
										
										
										
											2015-06-26 07:43:54 -07:00
										 |  |  | using fmt::CStringRef; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | using fmt::MemoryWriter; | 
					
						
							|  |  |  | using fmt::WMemoryWriter; | 
					
						
							| 
									
										
										
										
											2013-01-08 09:56:05 -08:00
										 |  |  | using fmt::pad; | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-29 08:39:37 -07:00
										 |  |  | namespace { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  | // Format value using the standard library.
 | 
					
						
							|  |  |  | template <typename Char, typename T> | 
					
						
							| 
									
										
										
										
											2015-05-07 07:25:39 -07:00
										 |  |  | void std_format(const T &value, std::basic_string<Char> &result) { | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  |   std::basic_ostringstream<Char> os; | 
					
						
							|  |  |  |   os << value; | 
					
						
							| 
									
										
										
										
											2015-05-07 07:25:39 -07:00
										 |  |  |   result = os.str(); | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __MINGW32__
 | 
					
						
							|  |  |  | // Workaround a bug in formatting long double in MinGW.
 | 
					
						
							| 
									
										
										
										
											2015-05-07 07:25:39 -07:00
										 |  |  | void std_format(long double value, std::string &result) { | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  |   char buffer[100]; | 
					
						
							| 
									
										
										
										
											2015-05-07 08:17:30 -07:00
										 |  |  |   safe_sprintf(buffer, "%Lg", value); | 
					
						
							| 
									
										
										
										
											2015-05-07 07:25:39 -07:00
										 |  |  |   result = buffer; | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-05-08 07:57:43 -07:00
										 |  |  | void std_format(long double value, std::wstring &result) { | 
					
						
							|  |  |  |   wchar_t buffer[100]; | 
					
						
							|  |  |  |   swprintf(buffer, L"%Lg", value); | 
					
						
							|  |  |  |   result = buffer; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-05-07 07:18:46 -07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  | // Checks if writing value to BasicWriter<Char> produces the same result
 | 
					
						
							|  |  |  | // as writing it to std::basic_ostringstream<Char>.
 | 
					
						
							|  |  |  | template <typename Char, typename T> | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | ::testing::AssertionResult check_write(const T &value, const char *type) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   std::basic_string<Char> actual = | 
					
						
							|  |  |  |       (fmt::BasicMemoryWriter<Char>() << value).str(); | 
					
						
							| 
									
										
										
										
											2015-05-07 07:25:39 -07:00
										 |  |  |   std::basic_string<Char> expected; | 
					
						
							| 
									
										
										
										
											2015-05-07 08:17:30 -07:00
										 |  |  |   std_format(value, expected); | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  |   if (expected == actual) | 
					
						
							|  |  |  |     return ::testing::AssertionSuccess(); | 
					
						
							|  |  |  |   return ::testing::AssertionFailure() | 
					
						
							| 
									
										
										
										
											2014-06-30 06:43:53 -07:00
										 |  |  |       << "Value of: (Writer<" << type << ">() << value).str()\n" | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  |       << "  Actual: " << actual << "\n" | 
					
						
							|  |  |  |       << "Expected: " << expected << "\n"; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct AnyWriteChecker { | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  |   template <typename T> | 
					
						
							|  |  |  |   ::testing::AssertionResult operator()(const char *, const T &value) const { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |     ::testing::AssertionResult result = check_write<char>(value, "char"); | 
					
						
							|  |  |  |     return result ? check_write<wchar_t>(value, "wchar_t") : result; | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-08 09:48:45 -07:00
										 |  |  | template <typename Char> | 
					
						
							|  |  |  | struct WriteChecker { | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  |   template <typename T> | 
					
						
							|  |  |  |   ::testing::AssertionResult operator()(const char *, const T &value) const { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |     return check_write<Char>(value, "char"); | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Checks if writing value to BasicWriter produces the same result
 | 
					
						
							|  |  |  | // as writing it to std::ostringstream both for char and wchar_t.
 | 
					
						
							| 
									
										
										
										
											2013-11-08 09:48:45 -07:00
										 |  |  | #define CHECK_WRITE(value) EXPECT_PRED_FORMAT1(AnyWriteChecker(), value)
 | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-01 10:02:15 -08:00
										 |  |  | #define CHECK_WRITE_CHAR(value) \
 | 
					
						
							|  |  |  |   EXPECT_PRED_FORMAT1(WriteChecker<char>(), value) | 
					
						
							|  |  |  | #define CHECK_WRITE_WCHAR(value) \
 | 
					
						
							|  |  |  |   EXPECT_PRED_FORMAT1(WriteChecker<wchar_t>(), value) | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | }  // namespace
 | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-26 07:43:54 -07:00
										 |  |  | TEST(StringRefTest, Ctor) { | 
					
						
							|  |  |  |   EXPECT_STREQ("abc", StringRef("abc").data()); | 
					
						
							|  |  |  |   EXPECT_EQ(3u, StringRef("abc").size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_STREQ("defg", StringRef(std::string("defg")).data()); | 
					
						
							|  |  |  |   EXPECT_EQ(4u, StringRef(std::string("defg")).size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(StringRefTest, ConvertToString) { | 
					
						
							|  |  |  |   std::string s = StringRef("abc").to_string(); | 
					
						
							|  |  |  |   EXPECT_EQ("abc", s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(CStringRefTest, Ctor) { | 
					
						
							|  |  |  |   EXPECT_STREQ("abc", CStringRef("abc").c_str()); | 
					
						
							|  |  |  |   EXPECT_STREQ("defg", CStringRef(std::string("defg")).c_str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:05 -07:00
										 |  |  | #if FMT_USE_TYPE_TRAITS
 | 
					
						
							|  |  |  | TEST(WriterTest, NotCopyConstructible) { | 
					
						
							|  |  |  |   EXPECT_FALSE(std::is_copy_constructible<BasicWriter<char> >::value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, NotCopyAssignable) { | 
					
						
							|  |  |  |   EXPECT_FALSE(std::is_copy_assignable<BasicWriter<char> >::value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-08 16:27:12 -07:00
										 |  |  | TEST(WriterTest, Ctor) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryWriter w; | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |   EXPECT_EQ(0u, w.size()); | 
					
						
							|  |  |  |   EXPECT_STREQ("", w.c_str()); | 
					
						
							|  |  |  |   EXPECT_EQ("", w.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  | #if FMT_USE_RVALUE_REFERENCES
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | void check_move_writer(const std::string &str, MemoryWriter &w) { | 
					
						
							|  |  |  |   MemoryWriter w2(std::move(w)); | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   // Move shouldn't destroy the inline content of the first writer.
 | 
					
						
							|  |  |  |   EXPECT_EQ(str, w.str()); | 
					
						
							|  |  |  |   EXPECT_EQ(str, w2.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, MoveCtor) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryWriter w; | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   w << "test"; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_move_writer("test", w); | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   // This fills the inline buffer, but doesn't cause dynamic allocation.
 | 
					
						
							|  |  |  |   std::string s; | 
					
						
							|  |  |  |   for (int i = 0; i < fmt::internal::INLINE_BUFFER_SIZE; ++i) | 
					
						
							|  |  |  |     s += '*'; | 
					
						
							| 
									
										
										
										
											2014-06-28 19:59:44 -07:00
										 |  |  |   w.clear(); | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   w << s; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_move_writer(s, w); | 
					
						
							| 
									
										
										
										
											2014-04-25 08:18:07 -07:00
										 |  |  |   const char *inline_buffer_ptr = w.data(); | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   // Adding one more character causes the content to move from the inline to
 | 
					
						
							|  |  |  |   // a dynamically allocated buffer.
 | 
					
						
							|  |  |  |   w << '*'; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryWriter w2(std::move(w)); | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   // Move should rip the guts of the first writer.
 | 
					
						
							| 
									
										
										
										
											2014-04-25 08:18:07 -07:00
										 |  |  |   EXPECT_EQ(inline_buffer_ptr, w.data()); | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   EXPECT_EQ(s + '*', w2.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | void CheckMoveAssignWriter(const std::string &str, MemoryWriter &w) { | 
					
						
							|  |  |  |   MemoryWriter w2; | 
					
						
							| 
									
										
										
										
											2014-04-26 07:10:21 -07:00
										 |  |  |   w2 = std::move(w); | 
					
						
							|  |  |  |   // Move shouldn't destroy the inline content of the first writer.
 | 
					
						
							|  |  |  |   EXPECT_EQ(str, w.str()); | 
					
						
							|  |  |  |   EXPECT_EQ(str, w2.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, MoveAssignment) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryWriter w; | 
					
						
							| 
									
										
										
										
											2014-04-26 07:10:21 -07:00
										 |  |  |   w << "test"; | 
					
						
							|  |  |  |   CheckMoveAssignWriter("test", w); | 
					
						
							|  |  |  |   // This fills the inline buffer, but doesn't cause dynamic allocation.
 | 
					
						
							|  |  |  |   std::string s; | 
					
						
							|  |  |  |   for (int i = 0; i < fmt::internal::INLINE_BUFFER_SIZE; ++i) | 
					
						
							|  |  |  |     s += '*'; | 
					
						
							| 
									
										
										
										
											2014-06-28 19:59:44 -07:00
										 |  |  |   w.clear(); | 
					
						
							| 
									
										
										
										
											2014-04-26 07:10:21 -07:00
										 |  |  |   w << s; | 
					
						
							|  |  |  |   CheckMoveAssignWriter(s, w); | 
					
						
							|  |  |  |   const char *inline_buffer_ptr = w.data(); | 
					
						
							|  |  |  |   // Adding one more character causes the content to move from the inline to
 | 
					
						
							|  |  |  |   // a dynamically allocated buffer.
 | 
					
						
							|  |  |  |   w << '*'; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryWriter w2; | 
					
						
							| 
									
										
										
										
											2014-04-26 07:10:21 -07:00
										 |  |  |   w2 = std::move(w); | 
					
						
							|  |  |  |   // Move should rip the guts of the first writer.
 | 
					
						
							|  |  |  |   EXPECT_EQ(inline_buffer_ptr, w.data()); | 
					
						
							|  |  |  |   EXPECT_EQ(s + '*', w2.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  | #endif  // FMT_USE_RVALUE_REFERENCES
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-19 07:51:42 -07:00
										 |  |  | TEST(WriterTest, Allocator) { | 
					
						
							| 
									
										
										
										
											2014-09-23 07:58:23 -07:00
										 |  |  |   typedef testing::StrictMock< MockAllocator<char> > MockAllocator; | 
					
						
							|  |  |  |   typedef AllocatorRef<MockAllocator> TestAllocator; | 
					
						
							|  |  |  |   MockAllocator alloc; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   fmt::BasicMemoryWriter<char, TestAllocator> w((TestAllocator(&alloc))); | 
					
						
							| 
									
										
										
										
											2014-12-17 06:53:32 -08:00
										 |  |  |   std::size_t size = | 
					
						
							|  |  |  |       static_cast<std::size_t>(1.5 * fmt::internal::INLINE_BUFFER_SIZE); | 
					
						
							| 
									
										
										
										
											2014-09-19 07:51:42 -07:00
										 |  |  |   std::vector<char> mem(size); | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_CALL(alloc, allocate(size)).WillOnce(testing::Return(&mem[0])); | 
					
						
							| 
									
										
										
										
											2014-09-19 07:51:42 -07:00
										 |  |  |   for (int i = 0; i < fmt::internal::INLINE_BUFFER_SIZE + 1; ++i) | 
					
						
							|  |  |  |     w << '*'; | 
					
						
							| 
									
										
										
										
											2014-09-23 07:58:23 -07:00
										 |  |  |   EXPECT_CALL(alloc, deallocate(&mem[0], size)); | 
					
						
							| 
									
										
										
										
											2014-09-19 07:51:42 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-08 16:27:12 -07:00
										 |  |  | TEST(WriterTest, Data) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryWriter w; | 
					
						
							| 
									
										
										
										
											2013-09-08 14:18:08 -07:00
										 |  |  |   w << 42; | 
					
						
							|  |  |  |   EXPECT_EQ("42", std::string(w.data(), w.size())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-16 14:32:38 -08:00
										 |  |  | TEST(WriterTest, WriteWithoutArgs) { | 
					
						
							|  |  |  |   MemoryWriter w; | 
					
						
							|  |  |  |   w.write("test"); | 
					
						
							|  |  |  |   EXPECT_EQ("test", std::string(w.data(), w.size())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | TEST(WriterTest, WriteInt) { | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  |   CHECK_WRITE(42); | 
					
						
							|  |  |  |   CHECK_WRITE(-42); | 
					
						
							|  |  |  |   CHECK_WRITE(static_cast<short>(12)); | 
					
						
							|  |  |  |   CHECK_WRITE(34u); | 
					
						
							|  |  |  |   CHECK_WRITE(std::numeric_limits<int>::min()); | 
					
						
							|  |  |  |   CHECK_WRITE(std::numeric_limits<int>::max()); | 
					
						
							|  |  |  |   CHECK_WRITE(std::numeric_limits<unsigned>::max()); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-09-08 14:18:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  | TEST(WriterTest, WriteLong) { | 
					
						
							|  |  |  |   CHECK_WRITE(56l); | 
					
						
							|  |  |  |   CHECK_WRITE(78ul); | 
					
						
							|  |  |  |   CHECK_WRITE(std::numeric_limits<long>::min()); | 
					
						
							|  |  |  |   CHECK_WRITE(std::numeric_limits<long>::max()); | 
					
						
							|  |  |  |   CHECK_WRITE(std::numeric_limits<unsigned long>::max()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  | TEST(WriterTest, WriteLongLong) { | 
					
						
							|  |  |  |   CHECK_WRITE(56ll); | 
					
						
							|  |  |  |   CHECK_WRITE(78ull); | 
					
						
							|  |  |  |   CHECK_WRITE(std::numeric_limits<long long>::min()); | 
					
						
							|  |  |  |   CHECK_WRITE(std::numeric_limits<long long>::max()); | 
					
						
							|  |  |  |   CHECK_WRITE(std::numeric_limits<unsigned long long>::max()); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-09-08 16:27:12 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, WriteDouble) { | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  |   CHECK_WRITE(4.2); | 
					
						
							|  |  |  |   CHECK_WRITE(-4.2); | 
					
						
							| 
									
										
										
										
											2014-08-15 06:58:24 -07:00
										 |  |  |   CHECK_WRITE(std::numeric_limits<double>::min()); | 
					
						
							|  |  |  |   CHECK_WRITE(std::numeric_limits<double>::max()); | 
					
						
							| 
									
										
										
										
											2014-08-13 07:51:02 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, WriteLongDouble) { | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  |   CHECK_WRITE(4.2l); | 
					
						
							| 
									
										
										
										
											2015-05-08 07:57:43 -07:00
										 |  |  |   CHECK_WRITE_CHAR(-4.2l); | 
					
						
							|  |  |  |   std::wstring str; | 
					
						
							|  |  |  |   std_format(4.2l, str); | 
					
						
							|  |  |  |   if (str[0] != '-') | 
					
						
							|  |  |  |     CHECK_WRITE_WCHAR(-4.2l); | 
					
						
							|  |  |  |   else | 
					
						
							|  |  |  |     fmt::print("warning: long double formatting with std::swprintf is broken"); | 
					
						
							| 
									
										
										
										
											2014-08-15 06:58:24 -07:00
										 |  |  |   CHECK_WRITE(std::numeric_limits<long double>::min()); | 
					
						
							| 
									
										
										
										
											2014-08-13 07:51:02 -07:00
										 |  |  |   CHECK_WRITE(std::numeric_limits<long double>::max()); | 
					
						
							| 
									
										
										
										
											2013-09-08 16:27:12 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-27 07:26:55 -08:00
										 |  |  | TEST(WriterTest, WriteDoubleAtBufferBoundary) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryWriter writer; | 
					
						
							| 
									
										
										
										
											2013-12-27 07:46:02 -08:00
										 |  |  |   for (int i = 0; i < 100; ++i) | 
					
						
							|  |  |  |     writer << 1.23456789; | 
					
						
							| 
									
										
										
										
											2013-12-27 07:26:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-09 08:05:23 -07:00
										 |  |  | TEST(WriterTest, WriteDoubleWithFilledBuffer) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryWriter writer; | 
					
						
							| 
									
										
										
										
											2014-04-09 08:05:23 -07:00
										 |  |  |   // Fill the buffer.
 | 
					
						
							|  |  |  |   for (int i = 0; i < fmt::internal::INLINE_BUFFER_SIZE; ++i) | 
					
						
							|  |  |  |     writer << ' '; | 
					
						
							|  |  |  |   writer << 1.2; | 
					
						
							| 
									
										
										
										
											2014-04-09 08:27:51 -07:00
										 |  |  |   EXPECT_STREQ("1.2", writer.c_str() + fmt::internal::INLINE_BUFFER_SIZE); | 
					
						
							| 
									
										
										
										
											2014-04-09 08:05:23 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  | TEST(WriterTest, WriteChar) { | 
					
						
							|  |  |  |   CHECK_WRITE('a'); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 08:12:03 -08:00
										 |  |  | TEST(WriterTest, WriteWideChar) { | 
					
						
							| 
									
										
										
										
											2014-01-02 11:30:28 -08:00
										 |  |  |   CHECK_WRITE_WCHAR(L'a'); | 
					
						
							| 
									
										
										
										
											2013-12-07 08:12:03 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-08 16:27:12 -07:00
										 |  |  | TEST(WriterTest, WriteString) { | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  |   CHECK_WRITE_CHAR("abc"); | 
					
						
							| 
									
										
										
										
											2015-06-09 08:20:44 -07:00
										 |  |  |   CHECK_WRITE_WCHAR("abc"); | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  |   // The following line shouldn't compile:
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   //MemoryWriter() << L"abc";
 | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, WriteWideString) { | 
					
						
							|  |  |  |   CHECK_WRITE_WCHAR(L"abc"); | 
					
						
							|  |  |  |   // The following line shouldn't compile:
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   //fmt::WMemoryWriter() << "abc";
 | 
					
						
							| 
									
										
										
										
											2013-09-08 16:27:12 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-16 21:25:48 -08:00
										 |  |  | TEST(WriterTest, bin) { | 
					
						
							|  |  |  |   using fmt::bin; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_EQ("1100101011111110", (MemoryWriter() << bin(0xcafe)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("1011101010111110", (MemoryWriter() << bin(0xbabeu)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("1101111010101101", (MemoryWriter() << bin(0xdeadl)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("1011111011101111", (MemoryWriter() << bin(0xbeeful)).str()); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("11001010111111101011101010111110", | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |             (MemoryWriter() << bin(0xcafebabell)).str()); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("11011110101011011011111011101111", | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |             (MemoryWriter() << bin(0xdeadbeefull)).str()); | 
					
						
							| 
									
										
										
										
											2013-11-16 21:25:48 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | TEST(WriterTest, oct) { | 
					
						
							|  |  |  |   using fmt::oct; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_EQ("12", (MemoryWriter() << oct(static_cast<short>(012))).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("12", (MemoryWriter() << oct(012)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("34", (MemoryWriter() << oct(034u)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("56", (MemoryWriter() << oct(056l)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("70", (MemoryWriter() << oct(070ul)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("1234", (MemoryWriter() << oct(01234ll)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("5670", (MemoryWriter() << oct(05670ull)).str()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, hex) { | 
					
						
							|  |  |  |   using fmt::hex; | 
					
						
							| 
									
										
										
										
											2014-01-01 10:00:33 -08:00
										 |  |  |   fmt::IntFormatSpec<int, fmt::TypeSpec<'x'> > (*phex)(int value) = hex; | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  |   phex(42); | 
					
						
							|  |  |  |   // This shouldn't compile:
 | 
					
						
							| 
									
										
										
										
											2014-01-01 10:00:33 -08:00
										 |  |  |   //fmt::IntFormatSpec<short, fmt::TypeSpec<'x'> > (*phex2)(short value) = hex;
 | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_EQ("cafe", (MemoryWriter() << hex(0xcafe)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("babe", (MemoryWriter() << hex(0xbabeu)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("dead", (MemoryWriter() << hex(0xdeadl)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("beef", (MemoryWriter() << hex(0xbeeful)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("cafebabe", (MemoryWriter() << hex(0xcafebabell)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("deadbeef", (MemoryWriter() << hex(0xdeadbeefull)).str()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, hexu) { | 
					
						
							|  |  |  |   using fmt::hexu; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_EQ("CAFE", (MemoryWriter() << hexu(0xcafe)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("BABE", (MemoryWriter() << hexu(0xbabeu)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("DEAD", (MemoryWriter() << hexu(0xdeadl)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("BEEF", (MemoryWriter() << hexu(0xbeeful)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("CAFEBABE", (MemoryWriter() << hexu(0xcafebabell)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("DEADBEEF", (MemoryWriter() << hexu(0xdeadbeefull)).str()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | template <typename Char> | 
					
						
							|  |  |  | BasicWriter<Char> &operator<<(BasicWriter<Char> &f, const Date &d) { | 
					
						
							|  |  |  |   return f << d.year() << '-' << d.month() << '-' << d.day(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class ISO8601DateFormatter { | 
					
						
							|  |  |  |  const Date *date_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |   ISO8601DateFormatter(const Date &d) : date_(&d) {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   template <typename Char> | 
					
						
							|  |  |  |   friend BasicWriter<Char> &operator<<( | 
					
						
							|  |  |  |       BasicWriter<Char> &w, const ISO8601DateFormatter &d) { | 
					
						
							|  |  |  |     return w << pad(d.date_->year(), 4, '0') << '-' | 
					
						
							|  |  |  |         << pad(d.date_->month(), 2, '0') << '-' << pad(d.date_->day(), 2, '0'); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ISO8601DateFormatter iso8601(const Date &d) { return ISO8601DateFormatter(d); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, pad) { | 
					
						
							|  |  |  |   using fmt::hex; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_EQ("    cafe", (MemoryWriter() << pad(hex(0xcafe), 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("    babe", (MemoryWriter() << pad(hex(0xbabeu), 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("    dead", (MemoryWriter() << pad(hex(0xdeadl), 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("    beef", (MemoryWriter() << pad(hex(0xbeeful), 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("    dead", (MemoryWriter() << pad(hex(0xdeadll), 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("    beef", (MemoryWriter() << pad(hex(0xbeefull), 8)).str()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("     11", (MemoryWriter() << pad(11, 7)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("     22", (MemoryWriter() << pad(22u, 7)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("     33", (MemoryWriter() << pad(33l, 7)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("     44", (MemoryWriter() << pad(44ul, 7)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("     33", (MemoryWriter() << pad(33ll, 7)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("     44", (MemoryWriter() << pad(44ull, 7)).str()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   MemoryWriter w; | 
					
						
							| 
									
										
										
										
											2014-06-28 19:59:44 -07:00
										 |  |  |   w.clear(); | 
					
						
							|  |  |  |   w << pad(42, 5, '0'); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", w.str()); | 
					
						
							|  |  |  |   w.clear(); | 
					
						
							|  |  |  |   w << Date(2012, 12, 9); | 
					
						
							|  |  |  |   EXPECT_EQ("2012-12-9", w.str()); | 
					
						
							|  |  |  |   w.clear(); | 
					
						
							|  |  |  |   w << iso8601(Date(2012, 1, 9)); | 
					
						
							|  |  |  |   EXPECT_EQ("2012-01-09", w.str()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-31 09:43:32 -08:00
										 |  |  | TEST(WriterTest, PadString) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_EQ("test    ", (MemoryWriter() << pad("test", 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("test******", (MemoryWriter() << pad("test", 10, '*')).str()); | 
					
						
							| 
									
										
										
										
											2013-12-31 09:43:32 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-01 10:00:55 -08:00
										 |  |  | TEST(WriterTest, PadWString) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_EQ(L"test    ", (WMemoryWriter() << pad(L"test", 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ(L"test******", (WMemoryWriter() << pad(L"test", 10, '*')).str()); | 
					
						
							|  |  |  |   EXPECT_EQ(L"test******", (WMemoryWriter() << pad(L"test", 10, L'*')).str()); | 
					
						
							| 
									
										
										
										
											2014-01-01 10:00:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | TEST(WriterTest, NoConflictWithIOManip) { | 
					
						
							|  |  |  |   using namespace std; | 
					
						
							|  |  |  |   using namespace fmt; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_EQ("cafe", (MemoryWriter() << hex(0xcafe)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("12", (MemoryWriter() << oct(012)).str()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  | TEST(WriterTest, Format) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryWriter w; | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   w.write("part{0}", 1); | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |   EXPECT_EQ(strlen("part1"), w.size()); | 
					
						
							|  |  |  |   EXPECT_STREQ("part1", w.c_str()); | 
					
						
							|  |  |  |   EXPECT_STREQ("part1", w.data()); | 
					
						
							|  |  |  |   EXPECT_EQ("part1", w.str()); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   w.write("part{0}", 2); | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |   EXPECT_EQ(strlen("part1part2"), w.size()); | 
					
						
							|  |  |  |   EXPECT_STREQ("part1part2", w.c_str()); | 
					
						
							|  |  |  |   EXPECT_STREQ("part1part2", w.data()); | 
					
						
							|  |  |  |   EXPECT_EQ("part1part2", w.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | TEST(WriterTest, WWriter) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_EQ(L"cafe", (fmt::WMemoryWriter() << fmt::hex(0xcafe)).str()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-01 18:08:24 -08:00
										 |  |  | TEST(ArrayWriterTest, Ctor) { | 
					
						
							|  |  |  |   char array[10] = "garbage"; | 
					
						
							|  |  |  |   fmt::ArrayWriter w(array, sizeof(array)); | 
					
						
							|  |  |  |   EXPECT_EQ(0u, w.size()); | 
					
						
							|  |  |  |   EXPECT_STREQ("", w.c_str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArrayWriterTest, CompileTimeSizeCtor) { | 
					
						
							|  |  |  |   char array[10] = "garbage"; | 
					
						
							|  |  |  |   fmt::ArrayWriter w(array); | 
					
						
							|  |  |  |   EXPECT_EQ(0u, w.size()); | 
					
						
							|  |  |  |   EXPECT_STREQ("", w.c_str()); | 
					
						
							|  |  |  |   w.write("{:10}", 1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArrayWriterTest, Write) { | 
					
						
							|  |  |  |   char array[10]; | 
					
						
							|  |  |  |   fmt::ArrayWriter w(array, sizeof(array)); | 
					
						
							|  |  |  |   w.write("{}", 42); | 
					
						
							|  |  |  |   EXPECT_EQ("42", w.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArrayWriterTest, BufferOverflow) { | 
					
						
							|  |  |  |   char array[10]; | 
					
						
							|  |  |  |   fmt::ArrayWriter w(array, sizeof(array)); | 
					
						
							|  |  |  |   w.write("{:10}", 1); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(w.write("{}", 1), std::runtime_error, "buffer overflow"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArrayWriterTest, WChar) { | 
					
						
							|  |  |  |   wchar_t array[10]; | 
					
						
							|  |  |  |   fmt::WArrayWriter w(array); | 
					
						
							|  |  |  |   w.write(L"{}", 42); | 
					
						
							|  |  |  |   EXPECT_EQ(L"42", w.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | TEST(FormatterTest, Escape) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("{", format("{{")); | 
					
						
							|  |  |  |   EXPECT_EQ("before {", format("before {{")); | 
					
						
							|  |  |  |   EXPECT_EQ("{ after", format("{{ after")); | 
					
						
							|  |  |  |   EXPECT_EQ("before { after", format("before {{ after")); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("}", format("}}")); | 
					
						
							|  |  |  |   EXPECT_EQ("before }", format("before }}")); | 
					
						
							|  |  |  |   EXPECT_EQ("} after", format("}} after")); | 
					
						
							|  |  |  |   EXPECT_EQ("before } after", format("before }} after")); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("{}", format("{{}}")); | 
					
						
							|  |  |  |   EXPECT_EQ("{42}", format("{{{0}}}", 42)); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, UnmatchedBraces) { | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{"), format_error, "invalid format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("}"), format_error, "unmatched '}' in format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0{}"), format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, NoArgs) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("test", format("test")); | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | TEST(FormatterTest, ArgsInDifferentPositions) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("before 42", format("before {0}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42 after", format("{0} after", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("before 42 after", format("before {0} after", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("answer = 42", format("{0} = {1}", "answer", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42 is the answer", format("{1} is the {0}", "answer", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("abracadabra", format("{0}{1}{0}", "abra", "cad")); | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, ArgErrors) { | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{"), format_error, "invalid format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{?}"), format_error, "invalid format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0"), format_error, "invalid format string"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0}"), format_error, "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   char format_str[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u", INT_MAX); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u}", INT_MAX); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), format_error, | 
					
						
							| 
									
										
										
										
											2014-08-29 07:45:55 -07:00
										 |  |  |       "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  | #if FMT_USE_VARIADIC_TEMPLATES
 | 
					
						
							|  |  |  | template <int N> | 
					
						
							|  |  |  | struct TestFormat { | 
					
						
							|  |  |  |   template <typename... Args> | 
					
						
							| 
									
										
										
										
											2015-06-26 07:43:54 -07:00
										 |  |  |   static std::string format(fmt::CStringRef format_str, const Args & ... args) { | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  |     return TestFormat<N - 1>::format(format_str, N - 1, args...); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <> | 
					
						
							|  |  |  | struct TestFormat<0> { | 
					
						
							|  |  |  |   template <typename... Args> | 
					
						
							| 
									
										
										
										
											2015-06-26 07:43:54 -07:00
										 |  |  |   static std::string format(fmt::CStringRef format_str, const Args & ... args) { | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  |     return fmt::format(format_str, args...); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, ManyArgs) { | 
					
						
							|  |  |  |   EXPECT_EQ("19", TestFormat<20>::format("{19}")); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(TestFormat<20>::format("{20}"), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |                    format_error, "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  |   EXPECT_THROW_MSG(TestFormat<21>::format("{21}"), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |                    format_error, "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2015-05-01 06:55:26 -07:00
										 |  |  |   enum { MAX_PACKED_ARGS = fmt::ArgList::MAX_PACKED_ARGS }; | 
					
						
							|  |  |  |   std::string format_str = fmt::format("{{{}}}", MAX_PACKED_ARGS + 1); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(TestFormat<MAX_PACKED_ARGS>::format(format_str), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |                    format_error, "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2015-03-24 08:55:40 -07:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 09:32:59 +08:00
										 |  |  | TEST(FormatterTest, NamedArg) { | 
					
						
							| 
									
										
										
										
											2015-06-11 06:14:42 -07:00
										 |  |  |   EXPECT_EQ("1/a/A", format("{_1}/{a_}/{A_}", fmt::arg("a_", 'a'), | 
					
						
							|  |  |  |                             fmt::arg("A_", "A"), fmt::arg("_1", 1))); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{a}"), format_error, "argument not found"); | 
					
						
							| 
									
										
										
										
											2015-06-10 09:32:59 +08:00
										 |  |  |   EXPECT_EQ(" -42", format("{0:{width}}", -42, fmt::arg("width", 4))); | 
					
						
							|  |  |  |   EXPECT_EQ("st", format("{0:.{precision}}", "str", fmt::arg("precision", 2))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  | TEST(FormatterTest, AutoArgIndex) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("abc", format("{}{}{}", 'a', 'b', 'c')); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0}{}", 'a', 'b'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "cannot switch from manual to automatic argument indexing"); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{}{0}", 'a', 'b'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "cannot switch from automatic to manual argument indexing"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("1.2", format("{:.{}}", 1.2345, 2)); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0}:.{}", 1.2345, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "cannot switch from manual to automatic argument indexing"); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{:.{0}}", 1.2345, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "cannot switch from automatic to manual argument indexing"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{}"), format_error, "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, EmptySpecs) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:}", 42)); | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-22 14:05:56 -08:00
										 |  |  | TEST(FormatterTest, LeftAlign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42  ", format("{0:<4}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42  ", format("{0:<4o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42  ", format("{0:<4x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", format("{0:<5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", format("{0:<5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", format("{0:<5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", format("{0:<5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", format("{0:<5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", format("{0:<5}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", format("{0:<5}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", format("{0:<5}", -42.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("c    ", format("{0:<5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abc  ", format("{0:<5}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ("0xface  ", format("{0:<8}", reinterpret_cast<void*>(0xface))); | 
					
						
							| 
									
										
										
										
											2012-12-21 09:12:04 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-22 17:53:13 -08:00
										 |  |  | TEST(FormatterTest, RightAlign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("  42", format("{0:>4}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", format("{0:>4o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", format("{0:>4x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", format("{0:>5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:>5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", format("{0:>5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:>5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", format("{0:>5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:>5}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", format("{0:>5}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", format("{0:>5}", -42.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("    c", format("{0:>5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("  abc", format("{0:>5}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ("  0xface", format("{0:>8}", reinterpret_cast<void*>(0xface))); | 
					
						
							| 
									
										
										
										
											2012-12-22 17:53:13 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-24 08:34:44 -08:00
										 |  |  | TEST(FormatterTest, NumericAlign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("  42", format("{0:=4}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("+ 42", format("{0:=+4}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", format("{0:=4o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("+ 42", format("{0:=+4o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", format("{0:=4x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("+ 42", format("{0:=+4x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-  42", format("{0:=5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:=5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-  42", format("{0:=5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:=5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("-  42", format("{0:=5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:=5}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("-  42", format("{0:=5}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-  42", format("{0:=5}", -42.0l)); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:=5", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "missing '}' in format string"); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:=5}", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:=5}", "abc"), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '=' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:=8}", reinterpret_cast<void*>(0xface)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '=' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-24 08:34:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-24 19:37:50 -08:00
										 |  |  | TEST(FormatterTest, CenterAlign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(" 42  ", format("{0:^5}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", format("{0:^5o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", format("{0:^5x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", format("{0:^5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", format("{0:^5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", format("{0:^5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", format("{0:^5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", format("{0:^5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", format("{0:^5}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42  ", format("{0:^6}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", format("{0:^5}", -42.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("  c  ", format("{0:^5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ(" abc  ", format("{0:^6}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ(" 0xface ", format("{0:^8}", reinterpret_cast<void*>(0xface))); | 
					
						
							| 
									
										
										
										
											2012-12-24 19:37:50 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-20 20:10:55 -08:00
										 |  |  | TEST(FormatterTest, Fill) { | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{<5}", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid fill character '{'"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{<5}}", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid fill character '{'"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("**42", format("{0:*>4}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", format("{0:*>5}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", format("{0:*>5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", format("{0:*>5}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", format("{0:*>5}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", format("{0:*>5}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", format("{0:*>5}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", format("{0:*>5}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", format("{0:*>5}", -42.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("c****", format("{0:*<5}", 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abc**", format("{0:*<5}", "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ("**0xface", format("{0:*>8}", reinterpret_cast<void*>(0xface))); | 
					
						
							| 
									
										
										
										
											2012-12-20 20:10:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  | TEST(FormatterTest, PlusSign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("+42", format("{0:+}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:+}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("+42", format("{0:+}", 42)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", 42u), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '+' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("+42", format("{0:+}", 42l)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", 42ul), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '+' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("+42", format("{0:+}", 42ll)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", 42ull), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '+' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("+42", format("{0:+}", 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("+42", format("{0:+}", 42.0l)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "missing '}' in format string"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", "abc"), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '+' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '+' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  | TEST(FormatterTest, MinusSign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:-}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:-}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:-}", 42)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", 42u), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '-' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:-}", 42l)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", 42ul), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '-' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:-}", 42ll)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", 42ull), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '-' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:-}", 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:-}", 42.0l)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "missing '}' in format string"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", "abc"), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '-' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '-' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  | TEST(FormatterTest, SpaceSign) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(" 42", format("{0: }", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0: }", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42", format("{0: }", 42)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", 42u), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier ' ' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(" 42", format("{0: }", 42l)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", 42ul), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier ' ' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(" 42", format("{0: }", 42ll)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", 42ull), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier ' ' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(" 42", format("{0: }", 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42", format("{0: }", 42.0l)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: ", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "missing '}' in format string"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", "abc"), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier ' ' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier ' ' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  | TEST(FormatterTest, HashFlag) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:#}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:#}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0b101010", format("{0:#b}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0B101010", format("{0:#B}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0b101010", format("{0:#b}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0X42", format("{0:#X}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0x42", format("{0:#x}", -0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", format("{0:#o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", format("{0:#o}", -042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:#}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", format("{0:#o}", 042u)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:#}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0x42", format("{0:#x}", -0x42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", format("{0:#o}", 042l)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", format("{0:#o}", -042l)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:#}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", format("{0:#o}", 042ul)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:#}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0x42", format("{0:#x}", -0x42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", format("{0:#o}", 042ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", format("{0:#o}", -042ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:#}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", format("{0:#x}", 0x42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", format("{0:#o}", 042ull)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("-42.0000", format("{0:#}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42.0000", format("{0:#}", -42.0l)); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:#", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "missing '}' in format string"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:#}", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:#}", "abc"), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '#' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:#}", reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '#' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, ZeroFlag) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:0}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", format("{0:05}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", format("{0:05}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", format("{0:05}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", format("{0:05}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", format("{0:05}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", format("{0:05}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", format("{0:05}", -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", format("{0:05}", -42.0l)); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:0", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "missing '}' in format string"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:05}", 'c'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:05}", "abc"), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '0' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:05}", reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "format specifier '0' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, Width) { | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   char format_str[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:%u", UINT_MAX); | 
					
						
							|  |  |  |   increment(format_str + 3); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   std::size_t size = std::strlen(format_str); | 
					
						
							|  |  |  |   format_str[size] = '}'; | 
					
						
							|  |  |  |   format_str[size + 1] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:%u", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(" -42", format("{0:4}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:5}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", format("{0:6}", -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", format("{0:7}", 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", format("{0:6}", -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", format("{0:7}", 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -1.23", format("{0:8}", -1.23)); | 
					
						
							|  |  |  |   EXPECT_EQ("    -1.23", format("{0:9}", -1.23l)); | 
					
						
							|  |  |  |   EXPECT_EQ("    0xcafe", format("{0:10}", reinterpret_cast<void*>(0xcafe))); | 
					
						
							|  |  |  |   EXPECT_EQ("x          ", format("{0:11}", 'x')); | 
					
						
							|  |  |  |   EXPECT_EQ("str         ", format("{0:12}", "str")); | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-04 13:59:37 +08:00
										 |  |  | TEST(FormatterTest, RuntimeWidth) { | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   char format_str[BUFFER_SIZE]; | 
					
						
							|  |  |  |   safe_sprintf(format_str, "{0:{%u", UINT_MAX); | 
					
						
							|  |  |  |   increment(format_str + 4); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   std::size_t size = std::strlen(format_str); | 
					
						
							|  |  |  |   format_str[size] = '}'; | 
					
						
							|  |  |  |   format_str[size + 1] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   format_str[size + 1] = '}'; | 
					
						
							|  |  |  |   format_str[size + 2] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-04 13:59:37 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{}", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "cannot switch from manual to automatic argument indexing"); | 
					
						
							| 
									
										
										
										
											2015-06-10 09:32:59 +08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{?}}", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{0:}}", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, -1), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "negative width"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, (INT_MAX + 1u)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, -1l), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "negative width"); | 
					
						
							| 
									
										
										
										
											2016-07-12 06:40:23 -07:00
										 |  |  |   if (fmt::internal::const_check(sizeof(long) > sizeof(int))) { | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |     long value = INT_MAX; | 
					
						
							|  |  |  |     EXPECT_THROW_MSG(format("{0:{1}}", 0, (value + 1)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |         format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   } | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, (INT_MAX + 1ul)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, '0'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "width is not integer"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{1}}", 0, 0.0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "width is not integer"); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ(" -42", format("{0:{1}}", -42, 4)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", format("{0:{1}}", 42u, 5)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", format("{0:{1}}", -42l, 6)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", format("{0:{1}}", 42ul, 7)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", format("{0:{1}}", -42ll, 6)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", format("{0:{1}}", 42ull, 7)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -1.23", format("{0:{1}}", -1.23, 8)); | 
					
						
							|  |  |  |   EXPECT_EQ("    -1.23", format("{0:{1}}", -1.23l, 9)); | 
					
						
							| 
									
										
										
										
											2015-06-11 06:14:42 -07:00
										 |  |  |   EXPECT_EQ("    0xcafe", | 
					
						
							|  |  |  |             format("{0:{1}}", reinterpret_cast<void*>(0xcafe), 10)); | 
					
						
							| 
									
										
										
										
											2015-06-08 06:53:18 -07:00
										 |  |  |   EXPECT_EQ("x          ", format("{0:{1}}", 'x', 11)); | 
					
						
							|  |  |  |   EXPECT_EQ("str         ", format("{0:{1}}", "str", 12)); | 
					
						
							| 
									
										
										
										
											2015-06-04 13:59:37 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | TEST(FormatterTest, Precision) { | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   char format_str[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:.%u", UINT_MAX); | 
					
						
							|  |  |  |   increment(format_str + 4); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   std::size_t size = std::strlen(format_str); | 
					
						
							|  |  |  |   format_str[size] = '}'; | 
					
						
							|  |  |  |   format_str[size + 1] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:.%u", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:.%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "missing precision specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.}", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "missing precision specifier"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-27 08:24:31 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42u), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42u), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42l), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42l), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42ul), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42ul), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42ll), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42ll), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42ull), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42ull), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2015-06-11 08:58:31 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:3.0}", 'x'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("1.2", format("{0:.2}", 1.2345)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.2", format("{0:.2}", 1.2345l)); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", reinterpret_cast<void*>(0xcafe)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in pointer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", reinterpret_cast<void*>(0xcafe)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in pointer format specifier"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-08 07:56:08 -08:00
										 |  |  |   EXPECT_EQ("st", format("{0:.2}", "str")); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | TEST(FormatterTest, RuntimePrecision) { | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   char format_str[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:.{%u", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2014-08-27 08:24:31 -07:00
										 |  |  |   increment(format_str + 5); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   std::size_t size = std::strlen(format_str); | 
					
						
							|  |  |  |   format_str[size] = '}'; | 
					
						
							|  |  |  |   format_str[size + 1] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   format_str[size + 1] = '}'; | 
					
						
							|  |  |  |   format_str[size + 2] = 0; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{}", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "cannot switch from manual to automatic argument indexing"); | 
					
						
							| 
									
										
										
										
											2015-06-10 09:32:59 +08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{?}}", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}", 0, 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "argument index out of range"); | 
					
						
							| 
									
										
										
										
											2014-08-29 07:45:55 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:.{0:}}", 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "invalid format string"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, -1), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "negative precision"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, (INT_MAX + 1u)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, -1l), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "negative precision"); | 
					
						
							| 
									
										
										
										
											2016-07-12 06:40:23 -07:00
										 |  |  |   if (fmt::internal::const_check(sizeof(long) > sizeof(int))) { | 
					
						
							| 
									
										
										
										
											2012-12-21 15:02:25 -08:00
										 |  |  |     long value = INT_MAX; | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |     EXPECT_THROW_MSG(format("{0:.{1}}", 0, (value + 1)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |         format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, (INT_MAX + 1ul)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "number is too big"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, '0'), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision is not integer"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, 0.0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision is not integer"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42u, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42u, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42l, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42l, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42ul, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42ul, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42ll, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42ll, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42ull, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42ull, 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2015-06-11 08:58:31 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:3.{1}}", 'x', 0), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in integer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("1.2", format("{0:.{1}}", 1.2345, 2)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.2", format("{1:.{0}}", 2, 1.2345l)); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", reinterpret_cast<void*>(0xcafe), 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in pointer format specifier"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", reinterpret_cast<void*>(0xcafe), 2), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "precision not allowed in pointer format specifier"); | 
					
						
							| 
									
										
										
										
											2015-01-08 07:56:08 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("st", format("{0:.{1}}", "str", 2)); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  | template <typename T> | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | void check_unknown_types( | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |     const T &value, const char *types, const char *type_name) { | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   char format_str[BUFFER_SIZE], message[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   const char *special = ".0123456789}"; | 
					
						
							| 
									
										
										
										
											2012-12-16 15:46:06 -08:00
										 |  |  |   for (int i = CHAR_MIN; i <= CHAR_MAX; ++i) { | 
					
						
							| 
									
										
										
										
											2015-05-12 08:57:21 -07:00
										 |  |  |     char c = static_cast<char>(i); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |     if (std::strchr(types, c) || std::strchr(special, c) || !c) continue; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |     safe_sprintf(format_str, "{0:10%c}", c); | 
					
						
							| 
									
										
										
										
											2015-06-11 06:14:42 -07:00
										 |  |  |     if (std::isprint(static_cast<unsigned char>(c))) { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |       safe_sprintf(message, "unknown format code '%c' for %s", c, type_name); | 
					
						
							| 
									
										
										
										
											2015-06-11 06:14:42 -07:00
										 |  |  |     } else { | 
					
						
							|  |  |  |       safe_sprintf(message, "unknown format code '\\x%02x' for %s", c, | 
					
						
							|  |  |  |                    type_name); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |     EXPECT_THROW_MSG(format(format_str, value), format_error, message) | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |       << format_str << " " << message; | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-11 09:00:06 -07:00
										 |  |  | TEST(BoolTest, FormatBool) { | 
					
						
							|  |  |  |   EXPECT_EQ("true", format("{}", true)); | 
					
						
							|  |  |  |   EXPECT_EQ("false", format("{}", false)); | 
					
						
							|  |  |  |   EXPECT_EQ("1", format("{:d}", true)); | 
					
						
							|  |  |  |   EXPECT_EQ("true ", format("{:5}", true)); | 
					
						
							|  |  |  |   EXPECT_EQ(L"true", format(L"{}", true)); | 
					
						
							| 
									
										
										
										
											2014-01-28 12:49:36 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | TEST(FormatterTest, FormatShort) { | 
					
						
							|  |  |  |   short s = 42; | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:d}", s)); | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  |   unsigned short us = 42; | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0:d}", us)); | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | TEST(FormatterTest, FormatInt) { | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:v", 42), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "missing '}' in format string"); | 
					
						
							| 
									
										
										
										
											2016-04-17 19:06:03 -07:00
										 |  |  |   check_unknown_types(42, "bBdoxXn", "integer"); | 
					
						
							| 
									
										
										
										
											2013-11-14 08:45:50 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatBin) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0", format("{0:b}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("101010", format("{0:b}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("101010", format("{0:b}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-101010", format("{0:b}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("11000000111001", format("{0:b}", 12345)); | 
					
						
							|  |  |  |   EXPECT_EQ("10010001101000101011001111000", format("{0:b}", 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("10010000101010111100110111101111", format("{0:b}", 0x90ABCDEF)); | 
					
						
							| 
									
										
										
										
											2013-11-14 08:45:50 -08:00
										 |  |  |   EXPECT_EQ("11111111111111111111111111111111", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |             format("{0:b}", std::numeric_limits<uint32_t>::max())); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | TEST(FormatterTest, FormatDec) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0", format("{0}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:d}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0}", 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0}", -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345", format("{0}", 12345)); | 
					
						
							|  |  |  |   EXPECT_EQ("67890", format("{0}", 67890)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%d", INT_MIN); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%d", INT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", INT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%u", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%ld", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%ld", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lu", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0}", ULONG_MAX)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatHex) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0", format("{0:x}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:x}", 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:x}", 0x42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:x}", -0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345678", format("{0:x}", 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("90abcdef", format("{0:x}", 0x90abcdef)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345678", format("{0:X}", 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("90ABCDEF", format("{0:X}", 0x90ABCDEF)); | 
					
						
							| 
									
										
										
										
											2013-10-23 20:04:32 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%x", 0 - static_cast<unsigned>(INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%x", INT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", INT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%x", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%lx", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lx", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lx", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:x}", ULONG_MAX)); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  | TEST(FormatterTest, FormatOct) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0", format("{0:o}", 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:o}", 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{0:o}", 042u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format("{0:o}", -042)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345670", format("{0:o}", 012345670)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%o", 0 - static_cast<unsigned>(INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", INT_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%o", INT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", INT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%o", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "-%lo", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lo", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%lo", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:o}", ULONG_MAX)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-17 19:06:03 -07:00
										 |  |  | TEST(FormatterTest, FormatIntLocale) { | 
					
						
							| 
									
										
										
										
											2016-05-19 15:04:25 -07:00
										 |  |  |   ScopedMock<LocaleMock> mock; | 
					
						
							|  |  |  |   lconv lc = {}; | 
					
						
							|  |  |  |   char sep[] = "--"; | 
					
						
							|  |  |  |   lc.thousands_sep = sep; | 
					
						
							| 
									
										
										
										
											2016-07-11 06:23:17 -07:00
										 |  |  |   EXPECT_CALL(mock, localeconv()).Times(3).WillRepeatedly(testing::Return(&lc)); | 
					
						
							|  |  |  |   EXPECT_EQ("123", format("{:n}", 123)); | 
					
						
							|  |  |  |   EXPECT_EQ("1--234", format("{:n}", 1234)); | 
					
						
							| 
									
										
										
										
											2016-05-19 15:04:25 -07:00
										 |  |  |   EXPECT_EQ("1--234--567", format("{:n}", 1234567)); | 
					
						
							| 
									
										
										
										
											2016-04-17 19:06:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | TEST(FormatterTest, FormatFloat) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("392.500000", format("{0:f}", 392.5f)); | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | TEST(FormatterTest, FormatDouble) { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_unknown_types(1.2, "eEfFgGaA", "double"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0", format("{0:}", 0.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.000000", format("{0:f}", 0.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{0:}", 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{0:g}", 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{0:G}", 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", format("{0:f}", 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", format("{0:F}", 392.65)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%e", 392.65); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:e}", 392.65)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%E", 392.65); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:E}", 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("+0000392.6", format("{0:+010.4g}", 392.65)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%a", -42.0); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{:a}", -42.0)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%A", -42.0); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{:A}", -42.0)); | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-28 08:27:54 -08:00
										 |  |  | TEST(FormatterTest, FormatNaN) { | 
					
						
							|  |  |  |   double nan = std::numeric_limits<double>::quiet_NaN(); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("nan", format("{}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("+nan", format("{:+}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ(" nan", format("{: }", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("NAN", format("{:F}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("nan    ", format("{:<7}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("  nan  ", format("{:^7}", nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("    nan", format("{:>7}", nan)); | 
					
						
							| 
									
										
										
										
											2012-12-28 08:27:54 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-29 06:44:14 -08:00
										 |  |  | TEST(FormatterTest, FormatInfinity) { | 
					
						
							|  |  |  |   double inf = std::numeric_limits<double>::infinity(); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("inf", format("{}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("+inf", format("{:+}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("-inf", format("{}", -inf)); | 
					
						
							|  |  |  |   EXPECT_EQ(" inf", format("{: }", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("INF", format("{:F}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("inf    ", format("{:<7}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("  inf  ", format("{:^7}", inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("    inf", format("{:>7}", inf)); | 
					
						
							| 
									
										
										
										
											2012-12-29 06:44:14 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | TEST(FormatterTest, FormatLongDouble) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0", format("{0:}", 0.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.000000", format("{0:f}", 0.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{0:}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{0:g}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", format("{0:G}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", format("{0:f}", 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", format("{0:F}", 392.65l)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%Le", 392.65l); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{0:e}", 392.65l)); | 
					
						
							| 
									
										
										
										
											2015-06-23 07:39:49 -07:00
										 |  |  |   EXPECT_EQ("+0000392.6", format("{0:+010.4g}", 392.64l)); | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, FormatChar) { | 
					
						
							| 
									
										
										
										
											2016-04-17 19:06:03 -07:00
										 |  |  |   const char types[] = "cbBdoxXn"; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_unknown_types('a', types, "char"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("a", format("{0}", 'a')); | 
					
						
							|  |  |  |   EXPECT_EQ("z", format("{0:c}", 'z')); | 
					
						
							|  |  |  |   EXPECT_EQ(L"a", format(L"{0}", 'a')); | 
					
						
							| 
									
										
										
										
											2014-07-25 07:10:33 -07:00
										 |  |  |   int n = 'x'; | 
					
						
							|  |  |  |   for (const char *type = types + 1; *type; ++type) { | 
					
						
							|  |  |  |     std::string format_str = fmt::format("{{:{}}}", *type); | 
					
						
							|  |  |  |     EXPECT_EQ(fmt::format(format_str, n), fmt::format(format_str, 'x')); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("{:02X}", n), fmt::format("{:02X}", 'x')); | 
					
						
							| 
									
										
										
										
											2013-12-07 08:12:03 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-05 20:46:22 -05:00
										 |  |  | TEST(FormatterTest, FormatUnsignedChar) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{}", static_cast<unsigned char>(42))); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format("{}", static_cast<uint8_t>(42))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 08:12:03 -08:00
										 |  |  | TEST(FormatterTest, FormatWChar) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(L"a", format(L"{0}", L'a')); | 
					
						
							| 
									
										
										
										
											2013-12-07 08:12:03 -08:00
										 |  |  |   // This shouldn't compile:
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   //format("{}", L'a');
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  | TEST(FormatterTest, FormatCString) { | 
					
						
							| 
									
										
										
										
											2015-11-09 07:17:36 -08:00
										 |  |  |   check_unknown_types("test", "sp", "string"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("test", format("{0}", "test")); | 
					
						
							|  |  |  |   EXPECT_EQ("test", format("{0:s}", "test")); | 
					
						
							| 
									
										
										
										
											2012-12-17 16:39:49 -08:00
										 |  |  |   char nonconst[] = "nonconst"; | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("nonconst", format("{0}", nonconst)); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0}", reinterpret_cast<const char*>(0)), | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |       format_error, "string pointer is null"); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-30 08:15:56 -07:00
										 |  |  | TEST(FormatterTest, FormatSCharString) { | 
					
						
							|  |  |  |   signed char str[] = "test"; | 
					
						
							|  |  |  |   EXPECT_EQ("test", format("{0:s}", str)); | 
					
						
							|  |  |  |   const signed char *const_str = str; | 
					
						
							|  |  |  |   EXPECT_EQ("test", format("{0:s}", const_str)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatUCharString) { | 
					
						
							|  |  |  |   unsigned char str[] = "test"; | 
					
						
							|  |  |  |   EXPECT_EQ("test", format("{0:s}", str)); | 
					
						
							|  |  |  |   const unsigned char *const_str = str; | 
					
						
							|  |  |  |   EXPECT_EQ("test", format("{0:s}", const_str)); | 
					
						
							| 
									
										
										
										
											2016-08-23 08:42:25 -07:00
										 |  |  |   unsigned char *ptr = str; | 
					
						
							|  |  |  |   EXPECT_EQ("test", format("{0:s}", ptr)); | 
					
						
							| 
									
										
										
										
											2014-09-30 08:15:56 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | TEST(FormatterTest, FormatPointer) { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_unknown_types(reinterpret_cast<void*>(0x1234), "p", "pointer"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("0x0", format("{0}", reinterpret_cast<void*>(0))); | 
					
						
							|  |  |  |   EXPECT_EQ("0x1234", format("{0}", reinterpret_cast<void*>(0x1234))); | 
					
						
							|  |  |  |   EXPECT_EQ("0x1234", format("{0:p}", reinterpret_cast<void*>(0x1234))); | 
					
						
							| 
									
										
										
										
											2012-12-24 12:28:54 -08:00
										 |  |  |   EXPECT_EQ("0x" + std::string(sizeof(void*) * CHAR_BIT / 4, 'f'), | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("{0}", reinterpret_cast<void*>(~uintptr_t()))); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatString) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("test", format("{0}", std::string("test"))); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-08 09:53:50 -07:00
										 |  |  | TEST(FormatterTest, FormatStringRef) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("test", format("{0}", StringRef("test"))); | 
					
						
							| 
									
										
										
										
											2013-11-08 09:53:50 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-26 07:43:54 -07:00
										 |  |  | TEST(FormatterTest, FormatCStringRef) { | 
					
						
							|  |  |  |   EXPECT_EQ("test", format("{0}", CStringRef("test"))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-14 07:28:20 -07:00
										 |  |  | void format_arg(fmt::BasicFormatter<char> &f, const char *, const Date &d) { | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |   f.writer() << d.year() << '-' << d.month() << '-' << d.day(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatCustom) { | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   Date date(2012, 12, 9); | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |   EXPECT_THROW_MSG(fmt::format("{:s}", date), format_error, | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |                    "unmatched '}' in format string"); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-17 14:56:44 -08:00
										 |  |  | class Answer {}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-26 16:07:28 -08:00
										 |  |  | template <typename Char> | 
					
						
							| 
									
										
										
										
											2016-08-14 07:28:20 -07:00
										 |  |  | void format_arg(fmt::BasicFormatter<Char> &f, const Char *, Answer) { | 
					
						
							| 
									
										
										
										
											2014-07-08 16:20:33 -07:00
										 |  |  |   f.writer() << "42"; | 
					
						
							| 
									
										
										
										
											2012-12-17 14:56:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, CustomFormat) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{0}", Answer())); | 
					
						
							| 
									
										
										
										
											2012-12-17 14:56:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 22:03:37 -07:00
										 |  |  | TEST(FormatterTest, WideFormatString) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(L"42", format(L"{}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ(L"4.2", format(L"{}", 4.2)); | 
					
						
							|  |  |  |   EXPECT_EQ(L"abc", format(L"{}", L"abc")); | 
					
						
							|  |  |  |   EXPECT_EQ(L"z", format(L"{}", L'z')); | 
					
						
							| 
									
										
										
										
											2013-09-04 22:03:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | TEST(FormatterTest, FormatStringFromSpeedTest) { | 
					
						
							|  |  |  |   EXPECT_EQ("1.2340000000:0042:+3.13:str:0x3e8:X:%", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("{0:0.10f}:{1:04}:{2:+g}:{3}:{4}:{5}:%", | 
					
						
							|  |  |  |           1.234, 42, 3.13, "str", reinterpret_cast<void*>(1000), 'X')); | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-12-10 20:37:35 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  | TEST(FormatterTest, FormatExamples) { | 
					
						
							| 
									
										
										
										
											2013-01-22 11:06:56 -08:00
										 |  |  |   using fmt::hex; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_EQ("0000cafe", (MemoryWriter() << pad(hex(0xcafe), 8, '0')).str()); | 
					
						
							| 
									
										
										
										
											2013-01-22 11:06:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   std::string message = format("The answer is {}", 42); | 
					
						
							| 
									
										
										
										
											2013-01-12 10:08:51 -08:00
										 |  |  |   EXPECT_EQ("The answer is 42", message); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("42", format("{}", 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format(std::string("{}"), 42)); | 
					
						
							| 
									
										
										
										
											2013-01-04 09:14:34 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryWriter out; | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   out << "The answer is " << 42 << "\n"; | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   out.write("({:+f}, {:+f})", -3.14, 3.14); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_EQ("The answer is 42\n(-3.140000, +3.140000)", out.str()); | 
					
						
							| 
									
										
										
										
											2012-12-13 08:01:47 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |     MemoryWriter writer; | 
					
						
							| 
									
										
										
										
											2012-12-13 08:01:47 -08:00
										 |  |  |     for (int i = 0; i < 10; i++) | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       writer.write("{}", i); | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |     std::string s = writer.str(); // s == 0123456789
 | 
					
						
							| 
									
										
										
										
											2012-12-13 08:01:47 -08:00
										 |  |  |     EXPECT_EQ("0123456789", s); | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-04-30 12:38:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-06 06:58:32 -07:00
										 |  |  |   const char *filename = "nonexistent"; | 
					
						
							| 
									
										
										
										
											2015-07-08 08:04:32 -07:00
										 |  |  |   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; | 
					
						
							|  |  |  |   EXPECT_TRUE(ftest == 0); | 
					
						
							|  |  |  |   EXPECT_SYSTEM_ERROR({ | 
					
						
							| 
									
										
										
										
											2015-07-08 08:04:32 -07:00
										 |  |  |     FILE *f = safe_fopen(filename, "r"); | 
					
						
							| 
									
										
										
										
											2014-04-30 12:39:31 -07:00
										 |  |  |     if (!f) | 
					
						
							| 
									
										
										
										
											2014-06-30 14:26:29 -07:00
										 |  |  |       throw fmt::SystemError(errno, "Cannot open file '{}'", filename); | 
					
						
							| 
									
										
										
										
											2015-08-04 07:22:03 -07:00
										 |  |  |     fclose(f); | 
					
						
							| 
									
										
										
										
											2014-05-06 06:58:32 -07:00
										 |  |  |   }, error_code, "Cannot open file 'nonexistent'"); | 
					
						
							| 
									
										
										
										
											2012-12-11 13:54:53 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 19:32:19 -07:00
										 |  |  | TEST(FormatterTest, Examples) { | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("First, thou shalt count to three", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("First, thou shalt count to {0}", "three")); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("Bring me a shrubbery", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("Bring me a {}", "shrubbery")); | 
					
						
							|  |  |  |   EXPECT_EQ("From 1 to 3", format("From {} to {}", 1, 3)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%03.2f", -1.2); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(buffer, format("{:03.2f}", -1.2)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("a, b, c", format("{0}, {1}, {2}", 'a', 'b', 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("a, b, c", format("{}, {}, {}", 'a', 'b', 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("c, b, a", format("{2}, {1}, {0}", 'a', 'b', 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abracadabra", format("{0}{1}{0}", "abra", "cad")); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("left aligned                  ", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("{:<30}", "left aligned")); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("                 right aligned", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("{:>30}", "right aligned")); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("           centered           ", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("{:^30}", "centered")); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("***********centered***********", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("{:*^30}", "centered")); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("+3.140000; -3.140000", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("{:+f}; {:+f}", 3.14, -3.14)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ(" 3.140000; -3.140000", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("{: f}; {: f}", 3.14, -3.14)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("3.140000; -3.140000", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("{:-f}; {:-f}", 3.14, -3.14)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("int: 42;  hex: 2a;  oct: 52", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("int: {0:d};  hex: {0:x};  oct: {0:o}", 42)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ("int: 42;  hex: 0x2a;  oct: 052", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |       format("int: {0:d};  hex: {0:#x};  oct: {0:#o}", 42)); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("The answer is 42", format("The answer is {}", 42)); | 
					
						
							| 
									
										
										
										
											2014-04-17 18:28:45 -07:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  |     format("The answer is {:d}", "forty-two"), format_error, | 
					
						
							| 
									
										
										
										
											2014-04-17 18:28:45 -07:00
										 |  |  |     "unknown format code 'd' for string"); | 
					
						
							| 
									
										
										
										
											2014-06-28 14:53:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-28 19:27:41 -07:00
										 |  |  |   EXPECT_EQ(L"Cyrillic letter \x42e", | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |     format(L"Cyrillic letter {}", L'\x42e')); | 
					
						
							| 
									
										
										
										
											2014-05-14 06:45:39 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_WRITE(stdout, | 
					
						
							| 
									
										
										
										
											2014-06-28 19:59:44 -07:00
										 |  |  |       fmt::print("{}", std::numeric_limits<double>::infinity()), "inf"); | 
					
						
							| 
									
										
										
										
											2012-12-11 13:54:53 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-12-16 15:20:01 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-15 09:39:06 -08:00
										 |  |  | TEST(FormatIntTest, Data) { | 
					
						
							|  |  |  |   fmt::FormatInt format_int(42); | 
					
						
							|  |  |  |   EXPECT_EQ("42", std::string(format_int.data(), format_int.size())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  | TEST(FormatIntTest, FormatInt) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::FormatInt(42).str()); | 
					
						
							| 
									
										
										
										
											2014-02-15 11:16:44 -08:00
										 |  |  |   EXPECT_EQ(2u, fmt::FormatInt(42).size()); | 
					
						
							| 
									
										
										
										
											2013-09-10 09:28:04 -07:00
										 |  |  |   EXPECT_EQ("-42", fmt::FormatInt(-42).str()); | 
					
						
							| 
									
										
										
										
											2014-02-15 11:16:44 -08:00
										 |  |  |   EXPECT_EQ(3u, fmt::FormatInt(-42).size()); | 
					
						
							| 
									
										
										
										
											2014-02-13 09:59:49 -08:00
										 |  |  |   EXPECT_EQ("42", fmt::FormatInt(42ul).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::FormatInt(-42l).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::FormatInt(42ull).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", fmt::FormatInt(-42ll).str()); | 
					
						
							| 
									
										
										
										
											2014-01-30 08:02:06 -08:00
										 |  |  |   std::ostringstream os; | 
					
						
							|  |  |  |   os << std::numeric_limits<int64_t>::max(); | 
					
						
							| 
									
										
										
										
											2015-06-11 06:14:42 -07:00
										 |  |  |   EXPECT_EQ(os.str(), | 
					
						
							|  |  |  |             fmt::FormatInt(std::numeric_limits<int64_t>::max()).str()); | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 12:43:55 -08:00
										 |  |  | template <typename T> | 
					
						
							| 
									
										
										
										
											2014-07-29 08:45:29 -07:00
										 |  |  | std::string format_decimal(T value) { | 
					
						
							| 
									
										
										
										
											2014-02-14 10:36:17 -08:00
										 |  |  |   char buffer[10]; | 
					
						
							|  |  |  |   char *ptr = buffer; | 
					
						
							| 
									
										
										
										
											2014-07-29 08:45:29 -07:00
										 |  |  |   fmt::format_decimal(ptr, value); | 
					
						
							| 
									
										
										
										
											2014-02-19 12:43:55 -08:00
										 |  |  |   return std::string(buffer, ptr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatIntTest, FormatDec) { | 
					
						
							| 
									
										
										
										
											2015-06-22 07:03:26 -07:00
										 |  |  |   EXPECT_EQ("-42", format_decimal(static_cast<signed char>(-42))); | 
					
						
							| 
									
										
										
										
											2014-07-29 08:45:29 -07:00
										 |  |  |   EXPECT_EQ("-42", format_decimal(static_cast<short>(-42))); | 
					
						
							| 
									
										
										
										
											2014-02-20 07:04:54 -08:00
										 |  |  |   std::ostringstream os; | 
					
						
							|  |  |  |   os << std::numeric_limits<unsigned short>::max(); | 
					
						
							| 
									
										
										
										
											2014-07-29 08:45:29 -07:00
										 |  |  |   EXPECT_EQ(os.str(), | 
					
						
							|  |  |  |             format_decimal(std::numeric_limits<unsigned short>::max())); | 
					
						
							|  |  |  |   EXPECT_EQ("1", format_decimal(1)); | 
					
						
							|  |  |  |   EXPECT_EQ("-1", format_decimal(-1)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format_decimal(42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", format_decimal(-42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format_decimal(42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format_decimal(42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format_decimal(42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", format_decimal(42ull)); | 
					
						
							| 
									
										
										
										
											2014-02-14 10:36:17 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-06 08:05:51 -07:00
										 |  |  | TEST(FormatTest, Print) { | 
					
						
							| 
									
										
										
										
											2014-07-09 06:56:36 -07:00
										 |  |  | #if FMT_USE_FILE_DESCRIPTORS
 | 
					
						
							| 
									
										
										
										
											2014-06-28 19:59:44 -07:00
										 |  |  |   EXPECT_WRITE(stdout, fmt::print("Don't {}!", "panic"), "Don't panic!"); | 
					
						
							| 
									
										
										
										
											2014-05-06 08:05:51 -07:00
										 |  |  |   EXPECT_WRITE(stderr, | 
					
						
							| 
									
										
										
										
											2014-06-28 21:56:40 -07:00
										 |  |  |       fmt::print(stderr, "Don't {}!", "panic"), "Don't panic!"); | 
					
						
							| 
									
										
										
										
											2014-07-09 06:56:36 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-05-06 08:05:51 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-09 06:56:36 -07:00
										 |  |  | #if FMT_USE_FILE_DESCRIPTORS
 | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  | TEST(FormatTest, PrintColored) { | 
					
						
							| 
									
										
										
										
											2015-02-08 16:08:29 +00:00
										 |  |  |   EXPECT_WRITE(stdout, fmt::print_colored(fmt::RED, "Hello, {}!\n", "world"), | 
					
						
							|  |  |  |     "\x1b[31mHello, world!\n\x1b[0m"); | 
					
						
							| 
									
										
										
										
											2014-02-19 13:51:23 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-04-27 06:56:12 -07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  | TEST(FormatTest, Variadic) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("abc1", format("{}c{}", "ab", 1)); | 
					
						
							|  |  |  |   EXPECT_EQ(L"abc1", format(L"{}c{}", L"ab", 1)); | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-17 21:13:54 -08:00
										 |  |  | template <typename T> | 
					
						
							|  |  |  | std::string str(const T &value) { | 
					
						
							| 
									
										
										
										
											2014-06-30 06:43:53 -07:00
										 |  |  |   return fmt::format("{}", value); | 
					
						
							| 
									
										
										
										
											2012-12-17 21:13:54 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(StrTest, Convert) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(42)); | 
					
						
							|  |  |  |   std::string s = str(Date(2012, 12, 9)); | 
					
						
							|  |  |  |   EXPECT_EQ("2012-12-9", s); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-06-24 10:14:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  | std::string vformat_message(int id, const char *format, fmt::format_args args) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryWriter w; | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   w.write("[{}] ", id); | 
					
						
							| 
									
										
										
										
											2016-08-27 08:16:49 -07:00
										 |  |  |   w.vwrite(format, args); | 
					
						
							| 
									
										
										
										
											2014-06-28 11:07:43 -07:00
										 |  |  |   return w.str(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  | template <typename... Args> | 
					
						
							|  |  |  | std::string format_message(int id, const char *format, const Args & ... args) { | 
					
						
							| 
									
										
										
										
											2016-08-27 07:57:48 -07:00
										 |  |  |   auto va = fmt::make_format_args<fmt::BasicFormatter<char>>(args...); | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  |   return vformat_message(id, format, va); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-06-28 11:07:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 12:49:51 -07:00
										 |  |  | TEST(FormatTest, FormatMessageExample) { | 
					
						
							|  |  |  |   EXPECT_EQ("[42] something happened", | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |       format_message(42, "{} happened", "something")); | 
					
						
							| 
									
										
										
										
											2014-06-28 12:49:51 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-08-15 08:40:13 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-21 07:30:00 -07:00
										 |  |  | #if FMT_USE_VARIADIC_TEMPLATES
 | 
					
						
							|  |  |  | template<typename... Args> | 
					
						
							|  |  |  | void print_error(const char *file, int line, const char *format, | 
					
						
							|  |  |  |                  const Args & ... args) { | 
					
						
							|  |  |  |   fmt::print("{}: {}: ", file, line); | 
					
						
							|  |  |  |   fmt::print(format, args...); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-09-11 21:18:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, MaxArgs) { | 
					
						
							|  |  |  |   EXPECT_EQ("0123456789abcde", | 
					
						
							| 
									
										
										
										
											2014-11-07 07:58:49 -08:00
										 |  |  |             fmt::format("{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}", | 
					
						
							| 
									
										
										
										
											2014-09-11 21:18:36 -07:00
										 |  |  |                         0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'a', 'b', 'c', 'd', 'e')); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-09-27 02:26:26 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if FMT_USE_USER_DEFINED_LITERALS
 | 
					
						
							| 
									
										
										
										
											2015-10-09 11:55:36 +02:00
										 |  |  | // Passing user-defined literals directly to EXPECT_EQ causes problems
 | 
					
						
							|  |  |  | // with macro argument stringification (#) on some versions of GCC.
 | 
					
						
							|  |  |  | // Workaround: Assing the UDL result to a variable before the macro.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-27 02:26:26 +02:00
										 |  |  | using namespace fmt::literals; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(LiteralsTest, Format) { | 
					
						
							| 
									
										
										
										
											2015-10-09 11:55:36 +02:00
										 |  |  |   auto udl_format = "{}c{}"_format("ab", 1); | 
					
						
							|  |  |  |   EXPECT_EQ(format("{}c{}", "ab", 1), udl_format); | 
					
						
							|  |  |  |   auto udl_format_w = L"{}c{}"_format(L"ab", 1); | 
					
						
							|  |  |  |   EXPECT_EQ(format(L"{}c{}", L"ab", 1), udl_format_w); | 
					
						
							| 
									
										
										
										
											2015-09-27 02:26:26 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-09-27 04:09:37 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(LiteralsTest, NamedArg) { | 
					
						
							| 
									
										
										
										
											2015-10-09 11:55:36 +02:00
										 |  |  |   auto udl_a = format("{first}{second}{first}{third}", | 
					
						
							|  |  |  |                       "first"_a="abra", "second"_a="cad", "third"_a=99); | 
					
						
							| 
									
										
										
										
											2015-09-27 04:09:37 +02:00
										 |  |  |   EXPECT_EQ(format("{first}{second}{first}{third}", | 
					
						
							|  |  |  |                    fmt::arg("first", "abra"), fmt::arg("second", "cad"), | 
					
						
							|  |  |  |                    fmt::arg("third", 99)), | 
					
						
							| 
									
										
										
										
											2015-10-09 11:55:36 +02:00
										 |  |  |             udl_a); | 
					
						
							|  |  |  |   auto udl_a_w = format(L"{first}{second}{first}{third}", | 
					
						
							|  |  |  |                         L"first"_a=L"abra", L"second"_a=L"cad", L"third"_a=99); | 
					
						
							| 
									
										
										
										
											2015-09-27 04:09:37 +02:00
										 |  |  |   EXPECT_EQ(format(L"{first}{second}{first}{third}", | 
					
						
							|  |  |  |                    fmt::arg(L"first", L"abra"), fmt::arg(L"second", L"cad"), | 
					
						
							|  |  |  |                    fmt::arg(L"third", 99)), | 
					
						
							| 
									
										
										
										
											2015-10-09 11:55:36 +02:00
										 |  |  |             udl_a_w); | 
					
						
							| 
									
										
										
										
											2015-09-27 04:09:37 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-09-27 02:26:26 +02:00
										 |  |  | #endif // FMT_USE_USER_DEFINED_LITERALS
 | 
					
						
							| 
									
										
										
										
											2015-11-24 08:18:19 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | enum TestEnum { A }; | 
					
						
							| 
									
										
										
										
											2015-11-24 08:18:19 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, Enum) { | 
					
						
							|  |  |  |   EXPECT_EQ("0", fmt::format("{}", A)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-11-25 09:49:01 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:36:28 -07:00
										 |  |  | class MockArgFormatter : | 
					
						
							| 
									
										
										
										
											2016-04-19 08:56:31 -07:00
										 |  |  |     public fmt::internal::ArgFormatterBase<MockArgFormatter, char> { | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  |  public: | 
					
						
							| 
									
										
										
										
											2016-03-19 07:36:28 -07:00
										 |  |  |   typedef fmt::internal::ArgFormatterBase<MockArgFormatter, char> Base; | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:36:28 -07:00
										 |  |  |   MockArgFormatter(fmt::BasicFormatter<char, MockArgFormatter> &f, | 
					
						
							|  |  |  |                    fmt::FormatSpec &s, const char *) | 
					
						
							|  |  |  |     : fmt::internal::ArgFormatterBase<MockArgFormatter, char>(f.writer(), s) { | 
					
						
							|  |  |  |     EXPECT_CALL(*this, visit_int(42)); | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-19 07:36:28 -07:00
										 |  |  |   MOCK_METHOD1(visit_int, void (int value)); | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  | void vcustom_format(const char *format_str, fmt::format_args args) { | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  |   fmt::MemoryWriter writer; | 
					
						
							| 
									
										
										
										
											2016-03-19 07:36:28 -07:00
										 |  |  |   fmt::BasicFormatter<char, MockArgFormatter> formatter(args, writer); | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  |   formatter.format(format_str); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | template <typename... Args> | 
					
						
							|  |  |  | void custom_format(const char *format_str, const Args & ... args) { | 
					
						
							| 
									
										
										
										
											2016-08-27 07:57:48 -07:00
										 |  |  |   auto va = fmt::make_format_args<fmt::BasicFormatter<char>>(args...); | 
					
						
							| 
									
										
										
										
											2016-08-26 17:23:13 -07:00
										 |  |  |   return vcustom_format(format_str, va); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatTest, CustomArgFormatter) { | 
					
						
							| 
									
										
										
										
											2016-03-19 07:36:28 -07:00
										 |  |  |   custom_format("{}", 42); | 
					
						
							| 
									
										
										
										
											2016-03-19 07:20:31 -07:00
										 |  |  | } |