| 
									
										
										
										
											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>
 | 
					
						
							| 
									
										
										
										
											2014-06-06 11:14:53 -07:00
										 |  |  | #include <cmath>
 | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | #include <cstring>
 | 
					
						
							| 
									
										
										
										
											2014-04-27 06:56:12 -07:00
										 |  |  | #include <fstream>
 | 
					
						
							| 
									
										
										
										
											2013-01-21 10:50:51 -08:00
										 |  |  | #include <iomanip>
 | 
					
						
							| 
									
										
										
										
											2012-12-11 20:48:49 -08:00
										 |  |  | #include <memory>
 | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  | #include <sstream>
 | 
					
						
							| 
									
										
										
										
											2013-04-22 07:28:16 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-11 02:38:57 +04:00
										 |  |  | #if defined(_WIN32) && !defined(__MINGW32__)
 | 
					
						
							| 
									
										
										
										
											2014-05-06 06:58:32 -07:00
										 |  |  | // Fix MSVC warning about "unsafe" fopen.
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | FILE *safe_fopen(const char *filename, const char *mode) { | 
					
						
							| 
									
										
										
										
											2014-05-06 06:58:32 -07:00
										 |  |  |   FILE *f = 0; | 
					
						
							|  |  |  |   errno = fopen_s(&f, filename, mode); | 
					
						
							|  |  |  |   return f; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | #define fopen safe_fopen
 | 
					
						
							| 
									
										
										
										
											2013-04-22 07:28:16 -07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | #include "format.h"
 | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | #include "util.h"
 | 
					
						
							| 
									
										
										
										
											2014-05-02 07:23:25 -07:00
										 |  |  | #include "gtest-extra.h"
 | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-24 12:28:54 -08:00
										 |  |  | #include <stdint.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; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-12 09:14:00 -08:00
										 |  |  | using fmt::internal::Array; | 
					
						
							| 
									
										
										
										
											2013-02-02 20:29:02 -08:00
										 |  |  | using fmt::BasicWriter; | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  | using fmt::format; | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  | using fmt::FormatError; | 
					
						
							| 
									
										
										
										
											2012-12-18 15:39:42 -08:00
										 |  |  | using fmt::StringRef; | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | using fmt::Writer; | 
					
						
							| 
									
										
										
										
											2014-01-01 10:00:55 -08:00
										 |  |  | using fmt::WWriter; | 
					
						
							| 
									
										
										
										
											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 { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  |   std::basic_ostringstream<Char> os; | 
					
						
							|  |  |  |   os << value; | 
					
						
							|  |  |  |   std::basic_string<Char> expected = os.str(); | 
					
						
							| 
									
										
										
										
											2014-06-30 06:43:53 -07:00
										 |  |  |   std::basic_string<Char> actual = (BasicWriter<Char>() << value).str(); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | class TestString { | 
					
						
							|  |  |  |  private: | 
					
						
							|  |  |  |   std::string value_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  public: | 
					
						
							|  |  |  |   explicit TestString(const char *value = "") : value_(value) {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   friend std::ostream &operator<<(std::ostream &os, const TestString &s) { | 
					
						
							|  |  |  |     os << s.value_; | 
					
						
							|  |  |  |     return os; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  | TEST(ArrayTest, Ctor) { | 
					
						
							| 
									
										
										
										
											2012-12-12 09:14:00 -08:00
										 |  |  |   Array<char, 123> array; | 
					
						
							| 
									
										
										
										
											2012-12-11 21:47:05 -08:00
										 |  |  |   EXPECT_EQ(0u, array.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(123u, array.capacity()); | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 08:15:32 -07:00
										 |  |  | #if FMT_USE_RVALUE_REFERENCES
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | void check_move_array(const char *str, Array<char, 5> &array) { | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   Array<char, 5> array2(std::move(array)); | 
					
						
							|  |  |  |   // Move shouldn't destroy the inline content of the first array.
 | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&array[0], array.size())); | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&array2[0], array2.size())); | 
					
						
							|  |  |  |   EXPECT_EQ(5, array2.capacity()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 08:15:32 -07:00
										 |  |  | TEST(ArrayTest, MoveCtor) { | 
					
						
							|  |  |  |   Array<char, 5> array; | 
					
						
							|  |  |  |   const char test[] = "test"; | 
					
						
							|  |  |  |   array.append(test, test + 4); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_move_array("test", array); | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   // Adding one more character fills the inline buffer, but doesn't cause
 | 
					
						
							|  |  |  |   // dynamic allocation.
 | 
					
						
							| 
									
										
										
										
											2014-04-24 08:15:32 -07:00
										 |  |  |   array.push_back('a'); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_move_array("testa", array); | 
					
						
							| 
									
										
										
										
											2014-04-25 08:18:07 -07:00
										 |  |  |   const char *inline_buffer_ptr = &array[0]; | 
					
						
							| 
									
										
										
										
											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.
 | 
					
						
							| 
									
										
										
										
											2014-04-24 08:15:32 -07:00
										 |  |  |   array.push_back('b'); | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   Array<char, 5> array2(std::move(array)); | 
					
						
							|  |  |  |   // Move should rip the guts of the first array.
 | 
					
						
							| 
									
										
										
										
											2014-04-25 08:18:07 -07:00
										 |  |  |   EXPECT_EQ(inline_buffer_ptr, &array[0]); | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   EXPECT_EQ("testab", std::string(&array2[0], array2.size())); | 
					
						
							| 
									
										
										
										
											2014-04-26 10:00:29 -07:00
										 |  |  |   EXPECT_GT(array2.capacity(), 5u); | 
					
						
							| 
									
										
										
										
											2014-04-24 08:15:32 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | void check_move_assign_array(const char *str, Array<char, 5> &array) { | 
					
						
							| 
									
										
										
										
											2014-04-26 06:49:22 -07:00
										 |  |  |   Array<char, 5> array2; | 
					
						
							|  |  |  |   array2 = std::move(array); | 
					
						
							|  |  |  |   // Move shouldn't destroy the inline content of the first array.
 | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&array[0], array.size())); | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&array2[0], array2.size())); | 
					
						
							|  |  |  |   EXPECT_EQ(5, array2.capacity()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArrayTest, MoveAssignment) { | 
					
						
							|  |  |  |   Array<char, 5> array; | 
					
						
							|  |  |  |   const char test[] = "test"; | 
					
						
							|  |  |  |   array.append(test, test + 4); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_move_assign_array("test", array); | 
					
						
							| 
									
										
										
										
											2014-04-26 06:49:22 -07:00
										 |  |  |   // Adding one more character fills the inline buffer, but doesn't cause
 | 
					
						
							|  |  |  |   // dynamic allocation.
 | 
					
						
							|  |  |  |   array.push_back('a'); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_move_assign_array("testa", array); | 
					
						
							| 
									
										
										
										
											2014-04-26 06:49:22 -07:00
										 |  |  |   const char *inline_buffer_ptr = &array[0]; | 
					
						
							|  |  |  |   // Adding one more character causes the content to move from the inline to
 | 
					
						
							|  |  |  |   // a dynamically allocated buffer.
 | 
					
						
							|  |  |  |   array.push_back('b'); | 
					
						
							|  |  |  |   Array<char, 5> array2; | 
					
						
							|  |  |  |   array2 = std::move(array); | 
					
						
							|  |  |  |   // Move should rip the guts of the first array.
 | 
					
						
							|  |  |  |   EXPECT_EQ(inline_buffer_ptr, &array[0]); | 
					
						
							|  |  |  |   EXPECT_EQ("testab", std::string(&array2[0], array2.size())); | 
					
						
							| 
									
										
										
										
											2014-04-26 10:09:35 -07:00
										 |  |  |   EXPECT_GT(array2.capacity(), 5u); | 
					
						
							| 
									
										
										
										
											2014-04-26 06:49:22 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 08:15:32 -07:00
										 |  |  | #endif  // FMT_USE_RVALUE_REFERENCES
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  | TEST(ArrayTest, Access) { | 
					
						
							| 
									
										
										
										
											2012-12-12 09:14:00 -08:00
										 |  |  |   Array<char, 10> array; | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   array[0] = 11; | 
					
						
							|  |  |  |   EXPECT_EQ(11, array[0]); | 
					
						
							|  |  |  |   array[3] = 42; | 
					
						
							|  |  |  |   EXPECT_EQ(42, *(&array[0] + 3)); | 
					
						
							| 
									
										
										
										
											2012-12-12 09:14:00 -08:00
										 |  |  |   const Array<char, 10> &carray = array; | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   EXPECT_EQ(42, carray[3]); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArrayTest, Resize) { | 
					
						
							| 
									
										
										
										
											2012-12-12 09:14:00 -08:00
										 |  |  |   Array<char, 123> array; | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   array[10] = 42; | 
					
						
							|  |  |  |   EXPECT_EQ(42, array[10]); | 
					
						
							|  |  |  |   array.resize(20); | 
					
						
							| 
									
										
										
										
											2012-12-11 21:47:05 -08:00
										 |  |  |   EXPECT_EQ(20u, array.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(123u, array.capacity()); | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   EXPECT_EQ(42, array[10]); | 
					
						
							|  |  |  |   array.resize(5); | 
					
						
							| 
									
										
										
										
											2012-12-11 21:47:05 -08:00
										 |  |  |   EXPECT_EQ(5u, array.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(123u, array.capacity()); | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   EXPECT_EQ(42, array[10]); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArrayTest, Grow) { | 
					
						
							| 
									
										
										
										
											2012-12-12 09:14:00 -08:00
										 |  |  |   Array<int, 10> array; | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   array.resize(10); | 
					
						
							|  |  |  |   for (int i = 0; i < 10; ++i) | 
					
						
							|  |  |  |     array[i] = i * i; | 
					
						
							|  |  |  |   array.resize(20); | 
					
						
							| 
									
										
										
										
											2012-12-11 21:47:05 -08:00
										 |  |  |   EXPECT_EQ(20u, array.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(20u, array.capacity()); | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   for (int i = 0; i < 10; ++i) | 
					
						
							|  |  |  |     EXPECT_EQ(i * i, array[i]); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArrayTest, Clear) { | 
					
						
							| 
									
										
										
										
											2012-12-12 09:14:00 -08:00
										 |  |  |   Array<char, 10> array; | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   array.resize(20); | 
					
						
							|  |  |  |   array.clear(); | 
					
						
							| 
									
										
										
										
											2012-12-11 21:47:05 -08:00
										 |  |  |   EXPECT_EQ(0u, array.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(20u, array.capacity()); | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArrayTest, PushBack) { | 
					
						
							| 
									
										
										
										
											2012-12-12 09:14:00 -08:00
										 |  |  |   Array<int, 10> array; | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   array.push_back(11); | 
					
						
							|  |  |  |   EXPECT_EQ(11, array[0]); | 
					
						
							| 
									
										
										
										
											2012-12-11 21:47:05 -08:00
										 |  |  |   EXPECT_EQ(1u, array.size()); | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   array.resize(10); | 
					
						
							|  |  |  |   array.push_back(22); | 
					
						
							|  |  |  |   EXPECT_EQ(22, array[10]); | 
					
						
							| 
									
										
										
										
											2012-12-11 21:47:05 -08:00
										 |  |  |   EXPECT_EQ(11u, array.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(15u, array.capacity()); | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArrayTest, Append) { | 
					
						
							| 
									
										
										
										
											2012-12-12 09:14:00 -08:00
										 |  |  |   Array<char, 10> array; | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   const char *test = "test"; | 
					
						
							|  |  |  |   array.append(test, test + 5); | 
					
						
							| 
									
										
										
										
											2014-06-17 06:54:08 -07:00
										 |  |  |   EXPECT_STREQ(test, &array[0]); | 
					
						
							| 
									
										
										
										
											2012-12-11 21:47:05 -08:00
										 |  |  |   EXPECT_EQ(5u, array.size()); | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  |   array.resize(10); | 
					
						
							|  |  |  |   array.append(test, test + 2); | 
					
						
							|  |  |  |   EXPECT_EQ('t', array[10]); | 
					
						
							|  |  |  |   EXPECT_EQ('e', array[11]); | 
					
						
							| 
									
										
										
										
											2012-12-11 21:47:05 -08:00
										 |  |  |   EXPECT_EQ(12u, array.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(15u, array.capacity()); | 
					
						
							| 
									
										
										
										
											2012-12-11 12:23:52 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-16 07:48:57 -07:00
										 |  |  | TEST(ArrayTest, AppendAllocatesEnoughStorage) { | 
					
						
							|  |  |  |   Array<char, 10> array; | 
					
						
							|  |  |  |   const char *test = "abcdefgh"; | 
					
						
							|  |  |  |   array.resize(10); | 
					
						
							|  |  |  |   array.append(test, test + 9); | 
					
						
							| 
									
										
										
										
											2014-06-17 06:54:08 -07:00
										 |  |  |   EXPECT_STREQ(test, &array[10]); | 
					
						
							| 
									
										
										
										
											2014-06-16 07:48:57 -07:00
										 |  |  |   EXPECT_EQ(19u, array.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(19u, array.capacity()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-08 16:27:12 -07:00
										 |  |  | TEST(WriterTest, Ctor) { | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |   Writer w; | 
					
						
							|  |  |  |   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-07-29 07:50:05 -07:00
										 |  |  | void check_move_writer(const std::string &str, Writer &w) { | 
					
						
							| 
									
										
										
										
											2014-04-25 07:40:37 -07:00
										 |  |  |   Writer 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, MoveCtor) { | 
					
						
							|  |  |  |   Writer w; | 
					
						
							|  |  |  |   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 << '*'; | 
					
						
							|  |  |  |   Writer w2(std::move(w)); | 
					
						
							|  |  |  |   // 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-04-26 07:10:21 -07:00
										 |  |  | void CheckMoveAssignWriter(const std::string &str, Writer &w) { | 
					
						
							|  |  |  |   Writer w2; | 
					
						
							|  |  |  |   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) { | 
					
						
							|  |  |  |   Writer w; | 
					
						
							|  |  |  |   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 << '*'; | 
					
						
							|  |  |  |   Writer w2; | 
					
						
							|  |  |  |   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
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-08 16:27:12 -07:00
										 |  |  | TEST(WriterTest, Data) { | 
					
						
							| 
									
										
										
										
											2013-09-08 14:18:08 -07:00
										 |  |  |   Writer w; | 
					
						
							|  |  |  |   w << 42; | 
					
						
							|  |  |  |   EXPECT_EQ("42", 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-13 07:51:02 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, WriteLongDouble) { | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  |   CHECK_WRITE(4.2l); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							|  |  |  |   fmt::Writer 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) { | 
					
						
							|  |  |  |   fmt::Writer writer; | 
					
						
							|  |  |  |   // 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"); | 
					
						
							|  |  |  |   // The following line shouldn't compile:
 | 
					
						
							|  |  |  |   //fmt::Writer() << L"abc";
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, WriteWideString) { | 
					
						
							|  |  |  |   CHECK_WRITE_WCHAR(L"abc"); | 
					
						
							|  |  |  |   // The following line shouldn't compile:
 | 
					
						
							|  |  |  |   //fmt::WWriter() << "abc";
 | 
					
						
							| 
									
										
										
										
											2013-09-08 16:27:12 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-16 21:25:48 -08:00
										 |  |  | TEST(WriterTest, bin) { | 
					
						
							|  |  |  |   using fmt::bin; | 
					
						
							| 
									
										
										
										
											2014-06-30 06:43:53 -07:00
										 |  |  |   EXPECT_EQ("1100101011111110", (Writer() << bin(0xcafe)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("1011101010111110", (Writer() << bin(0xbabeu)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("1101111010101101", (Writer() << bin(0xdeadl)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("1011111011101111", (Writer() << bin(0xbeeful)).str()); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("11001010111111101011101010111110", | 
					
						
							| 
									
										
										
										
											2014-06-30 06:43:53 -07:00
										 |  |  |             (Writer() << bin(0xcafebabell)).str()); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("11011110101011011011111011101111", | 
					
						
							| 
									
										
										
										
											2014-06-30 06:43:53 -07:00
										 |  |  |             (Writer() << 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-06-30 06:43:53 -07:00
										 |  |  |   EXPECT_EQ("12", (Writer() << oct(static_cast<short>(012))).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("12", (Writer() << oct(012)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("34", (Writer() << oct(034u)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("56", (Writer() << oct(056l)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("70", (Writer() << oct(070ul)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("1234", (Writer() << oct(01234ll)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("5670", (Writer() << 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-06-30 06:43:53 -07:00
										 |  |  |   EXPECT_EQ("cafe", (Writer() << hex(0xcafe)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("babe", (Writer() << hex(0xbabeu)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("dead", (Writer() << hex(0xdeadl)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("beef", (Writer() << hex(0xbeeful)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("cafebabe", (Writer() << hex(0xcafebabell)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("deadbeef", (Writer() << hex(0xdeadbeefull)).str()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, hexu) { | 
					
						
							|  |  |  |   using fmt::hexu; | 
					
						
							| 
									
										
										
										
											2014-06-30 06:43:53 -07:00
										 |  |  |   EXPECT_EQ("CAFE", (Writer() << hexu(0xcafe)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("BABE", (Writer() << hexu(0xbabeu)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("DEAD", (Writer() << hexu(0xdeadl)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("BEEF", (Writer() << hexu(0xbeeful)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("CAFEBABE", (Writer() << hexu(0xcafebabell)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("DEADBEEF", (Writer() << hexu(0xdeadbeefull)).str()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Date { | 
					
						
							|  |  |  |   int year_, month_, day_; | 
					
						
							|  |  |  |  public: | 
					
						
							|  |  |  |   Date(int year, int month, int day) : year_(year), month_(month), day_(day) {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   int year() const { return year_; } | 
					
						
							|  |  |  |   int month() const { return month_; } | 
					
						
							|  |  |  |   int day() const { return day_; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   friend std::ostream &operator<<(std::ostream &os, const Date &d) { | 
					
						
							|  |  |  |     os << d.year_ << '-' << d.month_ << '-' << d.day_; | 
					
						
							|  |  |  |     return os; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   template <typename Char> | 
					
						
							|  |  |  |   friend BasicWriter<Char> &operator<<(BasicWriter<Char> &f, const Date &d) { | 
					
						
							|  |  |  |     return f << d.year_ << '-' << d.month_ << '-' << d.day_; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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-06-30 06:43:53 -07:00
										 |  |  |   EXPECT_EQ("    cafe", (Writer() << pad(hex(0xcafe), 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("    babe", (Writer() << pad(hex(0xbabeu), 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("    dead", (Writer() << pad(hex(0xdeadl), 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("    beef", (Writer() << pad(hex(0xbeeful), 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("    dead", (Writer() << pad(hex(0xdeadll), 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("    beef", (Writer() << pad(hex(0xbeefull), 8)).str()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("     11", (Writer() << pad(11, 7)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("     22", (Writer() << pad(22u, 7)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("     33", (Writer() << pad(33l, 7)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("     44", (Writer() << pad(44ul, 7)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("     33", (Writer() << pad(33ll, 7)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("     44", (Writer() << pad(44ull, 7)).str()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-08 16:20:33 -07:00
										 |  |  |   Writer 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-06-30 06:43:53 -07:00
										 |  |  |   EXPECT_EQ("test    ", (Writer() << pad("test", 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("test******", (Writer() << pad("test", 10, '*')).str()); | 
					
						
							| 
									
										
										
										
											2013-12-31 09:43:32 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-01 10:00:55 -08:00
										 |  |  | TEST(WriterTest, PadWString) { | 
					
						
							| 
									
										
										
										
											2014-06-30 06:43:53 -07:00
										 |  |  |   EXPECT_EQ(L"test    ", (WWriter() << pad(L"test", 8)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ(L"test******", (WWriter() << pad(L"test", 10, '*')).str()); | 
					
						
							|  |  |  |   EXPECT_EQ(L"test******", (WWriter() << 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-06-30 06:43:53 -07:00
										 |  |  |   EXPECT_EQ("cafe", (Writer() << hex(0xcafe)).str()); | 
					
						
							|  |  |  |   EXPECT_EQ("12", (Writer() << oct(012)).str()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  | TEST(WriterTest, Format) { | 
					
						
							|  |  |  |   Writer 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-06-30 06:43:53 -07:00
										 |  |  |   EXPECT_EQ(L"cafe", (fmt::WWriter() << fmt::hex(0xcafe)).str()); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | TEST(FormatterTest, Escape) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("{", format("{{")); | 
					
						
							|  |  |  |   EXPECT_EQ("before {", format("before {{")); | 
					
						
							|  |  |  |   EXPECT_EQ("{ after", format("{{ after")); | 
					
						
							|  |  |  |   EXPECT_EQ("before { after", format("before {{ after")); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("}", format("}}")); | 
					
						
							|  |  |  |   EXPECT_EQ("before }", format("before }}")); | 
					
						
							|  |  |  |   EXPECT_EQ("} after", format("}} after")); | 
					
						
							|  |  |  |   EXPECT_EQ("before } after", format("before }} after")); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("{}", format("{{}}")); | 
					
						
							|  |  |  |   EXPECT_EQ("{42}", format("{{{0}}}", 42)); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, UnmatchedBraces) { | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{"), FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("}"), FormatError, "unmatched '}' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0{}"), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{"), FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{x}"), FormatError, | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  |       "invalid argument index in format string"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0"), FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0}"), FormatError, | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  |       "argument index is out of range in format"); | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u}", INT_MAX); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), FormatError, | 
					
						
							| 
									
										
										
										
											2012-12-08 08:17:12 -08:00
										 |  |  |       "argument index is out of range in format"); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), FormatError, "number is too big in format"); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  | TEST(FormatterTest, AutoArgIndex) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("abc", format("{}{}{}", 'a', 'b', 'c')); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0}{}", 'a', 'b'), | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  |       FormatError, "cannot switch from manual to automatic argument indexing"); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{}{0}", 'a', 'b'), | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  |       FormatError, "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), | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  |       FormatError, "cannot switch from manual to automatic argument indexing"); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{:.{0}}", 1.2345, 2), | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  |       FormatError, "cannot switch from automatic to manual argument indexing"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{}"), FormatError, | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  |       "argument index is out of range in format"); | 
					
						
							| 
									
										
										
										
											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))); | 
					
						
							|  |  |  |   EXPECT_EQ("def  ", format("{0:<5}", TestString("def"))); | 
					
						
							| 
									
										
										
										
											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))); | 
					
						
							|  |  |  |   EXPECT_EQ("  def", format("{0:>5}", TestString("def"))); | 
					
						
							| 
									
										
										
										
											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'), | 
					
						
							| 
									
										
										
										
											2012-12-24 08:34:44 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:=5}", 'c'), | 
					
						
							| 
									
										
										
										
											2014-07-22 12:37:10 -07:00
										 |  |  |       FormatError, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:=5}", "abc"), | 
					
						
							| 
									
										
										
										
											2012-12-24 08:34:44 -08:00
										 |  |  |       FormatError, "format specifier '=' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:=8}", reinterpret_cast<void*>(0xface)), | 
					
						
							| 
									
										
										
										
											2012-12-24 08:34:44 -08:00
										 |  |  |       FormatError, "format specifier '=' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 16:05:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:=5}", TestString("def")), | 
					
						
							| 
									
										
										
										
											2012-12-24 08:34:44 -08:00
										 |  |  |       FormatError, "format specifier '=' requires numeric argument"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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))); | 
					
						
							|  |  |  |   EXPECT_EQ(" def ", format("{0:^5}", TestString("def"))); | 
					
						
							| 
									
										
										
										
											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'), | 
					
						
							| 
									
										
										
										
											2012-12-24 08:34:44 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:{<5}}", 'c'), | 
					
						
							| 
									
										
										
										
											2012-12-24 08:34:44 -08:00
										 |  |  |       FormatError, "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))); | 
					
						
							|  |  |  |   EXPECT_EQ("def**", format("{0:*<5}", TestString("def"))); | 
					
						
							| 
									
										
										
										
											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), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "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), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "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), | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |       FormatError, "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'), | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", 'c'), | 
					
						
							| 
									
										
										
										
											2014-07-22 12:37:10 -07:00
										 |  |  |       FormatError, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", "abc"), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "format specifier '+' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "format specifier '+' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", TestString()), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "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), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  |       FormatError, "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), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  |       FormatError, "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), | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |       FormatError, "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'), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", 'c'), | 
					
						
							| 
									
										
										
										
											2014-07-22 12:37:10 -07:00
										 |  |  |       FormatError, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", "abc"), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  |       FormatError, "format specifier '-' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  |       FormatError, "format specifier '-' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:-}", TestString()), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  |       FormatError, "format specifier '-' requires numeric argument"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  |       FormatError, "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), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  |       FormatError, "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), | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |       FormatError, "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'), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", 'c'), | 
					
						
							| 
									
										
										
										
											2014-07-22 12:37:10 -07:00
										 |  |  |       FormatError, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", "abc"), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  |       FormatError, "format specifier ' ' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  |       FormatError, "format specifier ' ' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0: }", TestString()), | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  |       FormatError, "format specifier ' ' requires numeric argument"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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'), | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:#}", 'c'), | 
					
						
							| 
									
										
										
										
											2014-07-22 12:37:10 -07:00
										 |  |  |       FormatError, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:#}", "abc"), | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  |       FormatError, "format specifier '#' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:#}", reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  |       FormatError, "format specifier '#' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:#}", TestString()), | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  |       FormatError, "format specifier '#' requires numeric argument"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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'), | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:05}", 'c'), | 
					
						
							| 
									
										
										
										
											2014-07-22 12:37:10 -07:00
										 |  |  |       FormatError, "invalid format specifier for char"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:05}", "abc"), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "format specifier '0' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:05}", reinterpret_cast<void*>(0x42)), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "format specifier '0' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:05}", TestString()), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "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); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   std::size_t size = std::strlen(format_str); | 
					
						
							|  |  |  |   format_str[size] = '}'; | 
					
						
							|  |  |  |   format_str[size + 1] = 0; | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format(format_str, 0), | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  |       FormatError, "number is too big in format"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:%u", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  |       FormatError, "number is too big in format"); | 
					
						
							| 
									
										
										
										
											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")); | 
					
						
							|  |  |  |   EXPECT_EQ("test         ", format("{0:13}", TestString("test"))); | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -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); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   std::size_t size = std::strlen(format_str); | 
					
						
							|  |  |  |   format_str[size] = '}'; | 
					
						
							|  |  |  |   format_str[size + 1] = 0; | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format(format_str, 0), | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  |       FormatError, "number is too big in format"); | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(format_str, "{0:.%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str, 0), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "number is too big in format"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.", 0), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.}", 0), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "missing precision in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2", 0), | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42u), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42u), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42l), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42l), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42ul), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42ul), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42ll), | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42ll), | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 42ull), | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 42ull), | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											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)), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", reinterpret_cast<void*>(0xcafe)), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", 'x'), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", 'x'), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", "str"), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", "str"), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2}", TestString()), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.2f}", TestString()), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  |   increment(format_str + 4); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format(format_str), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   std::size_t size = std::strlen(format_str); | 
					
						
							|  |  |  |   format_str[size] = '}'; | 
					
						
							|  |  |  |   format_str[size + 1] = 0; | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format(format_str, 0), FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   format_str[size + 1] = '}'; | 
					
						
							|  |  |  |   format_str[size + 2] = 0; | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format(format_str, 0), | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  |       FormatError, "number is too big in format"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{", 0), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{}", 0), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{x}}", 0), | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  |       FormatError, "invalid argument index in format string"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}", 0, 0), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "argument index is out of range in format"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, -1), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "negative precision in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, (INT_MAX + 1u)), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "number is too big in format"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, -1l), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "negative precision in format"); | 
					
						
							|  |  |  |   if (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)), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |         FormatError, "number is too big in format"); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, (INT_MAX + 1ul)), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "number is too big in format"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, '0'), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision is not integer"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 0, 0.0), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision is not integer"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42, 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42, 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42u, 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42u, 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42l, 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42l, 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42ul, 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42ul, 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42ll, 2), | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42ll, 2), | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 42ull, 2), | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 15:58:02 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 42ull, 2), | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											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), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", reinterpret_cast<void*>(0xcafe), 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", 'x', 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", 'x', 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", "str", 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", "str", 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}}", TestString(), 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:.{1}f}", TestString(), 2), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							|  |  |  |     char c = 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); | 
					
						
							| 
									
										
										
										
											2012-12-16 15:50:43 -08: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); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |       safe_sprintf(message, "unknown format code '\\x%02x' for %s", c, type_name); | 
					
						
							| 
									
										
										
										
											2014-06-28 17:35:57 -07:00
										 |  |  |     EXPECT_THROW_MSG(format(format_str, value), FormatError, message) | 
					
						
							|  |  |  |       << format_str << " " << message; | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-28 12:49:36 -08:00
										 |  |  | TEST(FormatterTest, FormatBool) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ(L"1", 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), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_unknown_types(42, "bBdoxX", "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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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)); | 
					
						
							| 
									
										
										
										
											2014-07-27 15:09:05 -07:00
										 |  |  |   if (fmt::internal::signbit_noinline(-nan)) | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |     EXPECT_EQ("-nan", format("{}", -nan)); | 
					
						
							| 
									
										
										
										
											2014-06-06 18:54:45 -07:00
										 |  |  |   else | 
					
						
							| 
									
										
										
										
											2014-07-01 09:10:43 -07:00
										 |  |  |     fmt::print("Warning: compiler doesn't handle negative NaN correctly"); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   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)); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   safe_sprintf(buffer, "%LE", 392.65l); | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("+0000392.6", format("{0:+010.4g}", 392.65l)); | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, FormatChar) { | 
					
						
							| 
									
										
										
										
											2014-07-25 07:10:33 -07:00
										 |  |  |   const char types[] = "cbBdoxX"; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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) { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_unknown_types("test", "s", "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)), | 
					
						
							| 
									
										
										
										
											2012-12-17 16:39:49 -08:00
										 |  |  |       FormatError, "string pointer is null"); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08: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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-17 14:56:44 -08:00
										 |  |  | TEST(FormatterTest, FormatUsingIOStreams) { | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   EXPECT_EQ("a string", format("{0}", TestString("a string"))); | 
					
						
							|  |  |  |   std::string s = format("The date is {0}", Date(2012, 12, 9)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ("The date is 2012-12-9", s); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   Date date(2012, 12, 9); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_unknown_types(date, "s", "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> | 
					
						
							| 
									
										
										
										
											2014-07-08 16:38:50 -07:00
										 |  |  | void format(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-06-30 06:43:53 -07:00
										 |  |  |   EXPECT_EQ("0000cafe", (Writer() << 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-06-28 15:58:02 -07:00
										 |  |  |   Writer out; | 
					
						
							|  |  |  |   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
										 |  |  | 
 | 
					
						
							|  |  |  |   { | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |     fmt::Writer 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"; | 
					
						
							|  |  |  |   FILE *ftest = fopen(filename, "r"); | 
					
						
							|  |  |  |   int error_code = errno; | 
					
						
							|  |  |  |   EXPECT_TRUE(ftest == 0); | 
					
						
							|  |  |  |   EXPECT_SYSTEM_ERROR({ | 
					
						
							|  |  |  |     FILE *f = 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); | 
					
						
							| 
									
										
										
										
											2014-05-06 06:58:32 -07:00
										 |  |  |   }, error_code, "Cannot open file 'nonexistent'"); | 
					
						
							| 
									
										
										
										
											2012-12-11 13:54:53 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-19 10:47:00 -08:00
										 |  |  | TEST(StringRefTest, Ctor) { | 
					
						
							| 
									
										
										
										
											2012-12-18 15:39:42 -08:00
										 |  |  |   EXPECT_STREQ("abc", StringRef("abc").c_str()); | 
					
						
							|  |  |  |   EXPECT_EQ(3u, StringRef("abc").size()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_STREQ("defg", StringRef(std::string("defg")).c_str()); | 
					
						
							|  |  |  |   EXPECT_EQ(4u, StringRef(std::string("defg")).size()); | 
					
						
							| 
									
										
										
										
											2012-12-19 10:47:00 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-12-18 15:39:42 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-19 10:47:00 -08:00
										 |  |  | TEST(StringRefTest, ConvertToString) { | 
					
						
							|  |  |  |   std::string s = StringRef("abc"); | 
					
						
							|  |  |  |   EXPECT_EQ("abc", s); | 
					
						
							| 
									
										
										
										
											2012-12-18 15:39:42 -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( | 
					
						
							| 
									
										
										
										
											2014-06-28 14:48:42 -07:00
										 |  |  |     format("The answer is {:d}", "forty-two"), FormatError, | 
					
						
							| 
									
										
										
										
											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(); | 
					
						
							|  |  |  |   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) { | 
					
						
							| 
									
										
										
										
											2014-07-29 08:45:29 -07:00
										 |  |  |   EXPECT_EQ("-42", format_decimal(static_cast<char>(-42))); | 
					
						
							|  |  |  |   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
 | 
					
						
							|  |  |  |   std::ostringstream os; | 
					
						
							|  |  |  |   fmt::print(os, "Don't {}!", "panic"); | 
					
						
							|  |  |  |   EXPECT_EQ("Don't panic!", os.str()); | 
					
						
							| 
									
										
										
										
											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) { | 
					
						
							| 
									
										
										
										
											2014-07-01 09:10:43 -07:00
										 |  |  |   EXPECT_WRITE(stdout, fmt::print_colored(fmt::RED, "Hello, {}!\n", "world"), | 
					
						
							| 
									
										
										
										
											2014-05-03 09:48:54 -07:00
										 |  |  |       "\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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | std::string format_message(int id, const char *format, | 
					
						
							| 
									
										
										
										
											2014-06-28 11:07:43 -07:00
										 |  |  |     const fmt::ArgList &args) { | 
					
						
							|  |  |  |   fmt::Writer w; | 
					
						
							| 
									
										
										
										
											2014-06-29 11:51:10 -07:00
										 |  |  |   w.write("[{}] ", id); | 
					
						
							|  |  |  |   w.write(format, args); | 
					
						
							| 
									
										
										
										
											2014-06-28 11:07:43 -07:00
										 |  |  |   return w.str(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | FMT_VARIADIC(std::string, format_message, int, const char *) | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } |