| 
									
										
										
										
											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>
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  | #include <cstdarg>
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  | // Check if format.h compiles with windows.h included.
 | 
					
						
							| 
									
										
										
										
											2013-11-08 09:56:34 -07:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2013-04-22 07:28:16 -07:00
										 |  |  | # include <windows.h>
 | 
					
						
							| 
									
										
										
										
											2014-05-06 06:58:32 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Fix MSVC warning about "unsafe" fopen.
 | 
					
						
							|  |  |  | FILE *FOpen(const char *filename, const char *mode) { | 
					
						
							|  |  |  |   FILE *f = 0; | 
					
						
							|  |  |  |   errno = fopen_s(&f, filename, mode); | 
					
						
							|  |  |  |   return f; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #define fopen FOpen
 | 
					
						
							| 
									
										
										
										
											2013-04-22 07:28:16 -07:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | #include "format.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; | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08: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> | 
					
						
							|  |  |  | static ::testing::AssertionResult CheckWrite(const T &value, const char *type) { | 
					
						
							|  |  |  |   std::basic_ostringstream<Char> os; | 
					
						
							|  |  |  |   os << value; | 
					
						
							|  |  |  |   std::basic_string<Char> expected = os.str(); | 
					
						
							|  |  |  |   std::basic_string<Char> actual = str(BasicWriter<Char>() << value); | 
					
						
							|  |  |  |   if (expected == actual) | 
					
						
							|  |  |  |     return ::testing::AssertionSuccess(); | 
					
						
							|  |  |  |   return ::testing::AssertionFailure() | 
					
						
							|  |  |  |       << "Value of: str(Writer<" << type << ">() << value)\n" | 
					
						
							|  |  |  |       << "  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 { | 
					
						
							| 
									
										
										
										
											2013-09-09 22:21:40 -07:00
										 |  |  |     ::testing::AssertionResult result = CheckWrite<char>(value, "char"); | 
					
						
							|  |  |  |     return result ? CheckWrite<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 { | 
					
						
							| 
									
										
										
										
											2013-11-08 09:48:45 -07:00
										 |  |  |     return CheckWrite<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) | 
					
						
							| 
									
										
										
										
											2013-09-09 15:12:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  | // Increment a number in a string.
 | 
					
						
							|  |  |  | void Increment(char *s) { | 
					
						
							|  |  |  |   for (int i = static_cast<int>(std::strlen(s)) - 1; i >= 0; --i) { | 
					
						
							|  |  |  |     if (s[i] != '9') { | 
					
						
							|  |  |  |       ++s[i]; | 
					
						
							|  |  |  |       break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     s[i] = '0'; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  | enum {BUFFER_SIZE = 256}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef _MSC_VER
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:51:39 -08:00
										 |  |  | # define vsnprintf vsprintf_s
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  | void SPrintf(char *buffer, const char *format, ...) { | 
					
						
							|  |  |  |   std::va_list args; | 
					
						
							|  |  |  |   va_start(args, format); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   vsnprintf(buffer, BUFFER_SIZE, format, args); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   va_end(args); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-29 08:39:37 -07:00
										 |  |  | std::string ReadFile(fmt::StringRef filename) { | 
					
						
							|  |  |  |   std::ifstream out(filename.c_str()); | 
					
						
							|  |  |  |   std::stringstream content; | 
					
						
							|  |  |  |   content << out.rdbuf(); | 
					
						
							|  |  |  |   return content.str(); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-05-03 16:25:26 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | std::string GetSystemErrorMessage(int error_code) { | 
					
						
							|  |  |  | #ifndef _WIN32
 | 
					
						
							|  |  |  |   return strerror(error_code); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |   enum { BUFFER_SIZE = 200 }; | 
					
						
							|  |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							|  |  |  |   EXPECT_EQ(0, strerror_s(buffer, BUFFER_SIZE, error_code)); | 
					
						
							| 
									
										
										
										
											2014-05-06 08:13:28 -07:00
										 |  |  |   std::size_t max_len = BUFFER_SIZE - 1; | 
					
						
							|  |  |  |   EXPECT_LT(std::strlen(buffer), max_len); | 
					
						
							| 
									
										
										
										
											2014-05-03 16:25:26 -07:00
										 |  |  |   return buffer; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-04-29 08:39:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  | TEST(UtilTest, Increment) { | 
					
						
							|  |  |  |   char s[10] = "123"; | 
					
						
							|  |  |  |   Increment(s); | 
					
						
							|  |  |  |   EXPECT_STREQ("124", s); | 
					
						
							|  |  |  |   s[2] = '8'; | 
					
						
							|  |  |  |   Increment(s); | 
					
						
							|  |  |  |   EXPECT_STREQ("129", s); | 
					
						
							|  |  |  |   Increment(s); | 
					
						
							|  |  |  |   EXPECT_STREQ("130", s); | 
					
						
							|  |  |  |   s[1] = s[2] = '9'; | 
					
						
							|  |  |  |   Increment(s); | 
					
						
							|  |  |  |   EXPECT_STREQ("200", s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-19 12:43:55 -08:00
										 |  |  | // Tests fmt::internal::CountDigits for integer type Int.
 | 
					
						
							|  |  |  | template <typename Int> | 
					
						
							|  |  |  | void TestCountDigits(Int) { | 
					
						
							|  |  |  |   for (Int i = 0; i < 10; ++i) | 
					
						
							| 
									
										
										
										
											2014-02-19 13:05:50 -08:00
										 |  |  |     EXPECT_EQ(1u, fmt::internal::CountDigits(i)); | 
					
						
							| 
									
										
										
										
											2014-02-19 12:43:55 -08:00
										 |  |  |   for (Int i = 1, n = 1, | 
					
						
							|  |  |  |        end = std::numeric_limits<Int>::max() / 10; n <= end; ++i) { | 
					
						
							|  |  |  |     n *= 10; | 
					
						
							|  |  |  |     EXPECT_EQ(i, fmt::internal::CountDigits(n - 1)); | 
					
						
							|  |  |  |     EXPECT_EQ(i + 1, fmt::internal::CountDigits(n)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, CountDigits) { | 
					
						
							|  |  |  |   TestCountDigits(uint32_t()); | 
					
						
							|  |  |  |   TestCountDigits(uint64_t()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-30 07:38:43 -07:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | TEST(UtilTest, UTF16ToUTF8) { | 
					
						
							|  |  |  |   std::string s = "ёжик"; | 
					
						
							| 
									
										
										
										
											2014-04-30 07:44:41 -07:00
										 |  |  |   fmt::internal::UTF16ToUTF8 u(L"\x0451\x0436\x0438\x043A"); | 
					
						
							| 
									
										
										
										
											2014-04-30 07:46:16 -07:00
										 |  |  |   EXPECT_EQ(s, fmt::str(u)); | 
					
						
							| 
									
										
										
										
											2014-04-30 07:38:43 -07:00
										 |  |  |   EXPECT_EQ(s.size(), u.size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-01 07:13:42 -07:00
										 |  |  | TEST(UtilTest, UTF8ToUTF16) { | 
					
						
							|  |  |  |   std::string s = "лошадка"; | 
					
						
							|  |  |  |   fmt::internal::UTF8ToUTF16 u(s.c_str()); | 
					
						
							|  |  |  |   EXPECT_EQ(L"\x043B\x043E\x0448\x0430\x0434\x043A\x0430", fmt::str(u)); | 
					
						
							|  |  |  |   EXPECT_EQ(7, u.size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <typename Converter> | 
					
						
							|  |  |  | void CheckUTFConversionError(const char *message) { | 
					
						
							|  |  |  |   fmt::Writer out; | 
					
						
							|  |  |  |   fmt::internal::FormatWinErrorMessage(out, ERROR_INVALID_PARAMETER, message); | 
					
						
							| 
									
										
										
										
											2014-05-01 07:06:35 -07:00
										 |  |  |   fmt::SystemError error("", 0); | 
					
						
							|  |  |  |   try { | 
					
						
							| 
									
										
										
										
											2014-05-01 07:13:42 -07:00
										 |  |  |     Converter(0); | 
					
						
							| 
									
										
										
										
											2014-05-01 07:06:35 -07:00
										 |  |  |   } catch (const fmt::SystemError &e) { | 
					
						
							|  |  |  |     error = e; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   EXPECT_EQ(ERROR_INVALID_PARAMETER, error.error_code()); | 
					
						
							| 
									
										
										
										
											2014-05-01 07:13:42 -07:00
										 |  |  |   EXPECT_EQ(out.str(), error.what()); | 
					
						
							| 
									
										
										
										
											2014-05-01 07:06:35 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-01 07:13:42 -07:00
										 |  |  | TEST(UtilTest, UTF16ToUTF8Error) { | 
					
						
							|  |  |  |   CheckUTFConversionError<fmt::internal::UTF16ToUTF8>( | 
					
						
							|  |  |  |       "cannot convert string from UTF-16 to UTF-8"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, UTF8ToUTF16Error) { | 
					
						
							|  |  |  |   CheckUTFConversionError<fmt::internal::UTF8ToUTF16>( | 
					
						
							|  |  |  |       "cannot convert string from UTF-8 to UTF-16"); | 
					
						
							| 
									
										
										
										
											2014-04-30 07:38:43 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-01 07:27:29 -07:00
										 |  |  | TEST(UtilTest, UTF16ToUTF8Convert) { | 
					
						
							|  |  |  |   fmt::internal::UTF16ToUTF8 u; | 
					
						
							|  |  |  |   EXPECT_EQ(ERROR_INVALID_PARAMETER, u.Convert(0)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-04-30 07:38:43 -07:00
										 |  |  | #endif  // _WIN32
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-30 09:42:48 -07:00
										 |  |  | TEST(UtilTest, StrError) { | 
					
						
							|  |  |  |   using fmt::internal::StrError; | 
					
						
							| 
									
										
										
										
											2014-04-30 11:20:41 -07:00
										 |  |  |   char *message = 0; | 
					
						
							| 
									
										
										
										
											2014-04-30 09:42:48 -07:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2014-04-30 13:28:05 -07:00
										 |  |  | #ifndef NDEBUG
 | 
					
						
							|  |  |  |   EXPECT_DEBUG_DEATH(StrError(EDOM, message = 0, 0), "Assertion"); | 
					
						
							| 
									
										
										
										
											2014-04-30 11:20:41 -07:00
										 |  |  |   EXPECT_DEBUG_DEATH(StrError(EDOM, message = buffer, 0), "Assertion"); | 
					
						
							| 
									
										
										
										
											2014-04-30 13:28:05 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-04-30 09:42:48 -07:00
										 |  |  |   buffer[0] = 'x'; | 
					
						
							| 
									
										
										
										
											2014-04-30 10:46:12 -07:00
										 |  |  | #ifdef _GNU_SOURCE
 | 
					
						
							|  |  |  |   // Use invalid error code to make sure that StrError returns an error
 | 
					
						
							|  |  |  |   // message in the buffer rather than a pointer to a static string.
 | 
					
						
							|  |  |  |   int error_code = -1; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |   int error_code = EDOM; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-04-30 11:20:41 -07:00
										 |  |  |   int result = StrError(error_code, message = buffer, 1); | 
					
						
							| 
									
										
										
										
											2014-04-30 10:53:55 -07:00
										 |  |  |   EXPECT_EQ(buffer, message);  // Message should point to buffer.
 | 
					
						
							| 
									
										
										
										
											2014-04-30 11:20:41 -07:00
										 |  |  |   EXPECT_EQ(ERANGE, result); | 
					
						
							| 
									
										
										
										
											2014-04-30 09:42:48 -07:00
										 |  |  |   EXPECT_STREQ("", message); | 
					
						
							| 
									
										
										
										
											2014-04-30 11:20:41 -07:00
										 |  |  |   result = StrError(error_code, message = buffer, BUFFER_SIZE); | 
					
						
							|  |  |  |   EXPECT_EQ(0, result); | 
					
						
							| 
									
										
										
										
											2014-04-30 11:29:33 -07:00
										 |  |  |   std::size_t message_size = std::strlen(message); | 
					
						
							|  |  |  |   EXPECT_GE(BUFFER_SIZE - 1u, message_size); | 
					
						
							| 
									
										
										
										
											2014-05-03 16:25:26 -07:00
										 |  |  |   EXPECT_EQ(GetSystemErrorMessage(error_code), message); | 
					
						
							| 
									
										
										
										
											2014-04-30 11:29:33 -07:00
										 |  |  |   result = StrError(error_code, message = buffer, message_size); | 
					
						
							| 
									
										
										
										
											2014-04-30 11:20:41 -07:00
										 |  |  |   EXPECT_EQ(ERANGE, result); | 
					
						
							| 
									
										
										
										
											2014-04-30 09:42:48 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-30 10:53:55 -07:00
										 |  |  | TEST(UtilTest, SystemError) { | 
					
						
							|  |  |  |   fmt::SystemError e(fmt::StringRef("test"), 42); | 
					
						
							|  |  |  |   EXPECT_STREQ("test", e.what()); | 
					
						
							|  |  |  |   EXPECT_EQ(42, e.error_code()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  | typedef void (*FormatErrorMessage)( | 
					
						
							|  |  |  |     fmt::Writer &out, int error_code, fmt::StringRef message); | 
					
						
							| 
									
										
										
										
											2014-05-01 08:02:55 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  | template <typename Sink> | 
					
						
							|  |  |  | void CheckErrorSink(int error_code, FormatErrorMessage format) { | 
					
						
							| 
									
										
										
										
											2014-05-01 08:02:55 -07:00
										 |  |  |   fmt::SystemError error("", 0); | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  |   Sink sink(error_code); | 
					
						
							| 
									
										
										
										
											2014-05-01 08:02:55 -07:00
										 |  |  |   fmt::Writer w; | 
					
						
							|  |  |  |   w << "test"; | 
					
						
							|  |  |  |   try { | 
					
						
							|  |  |  |     sink(w); | 
					
						
							|  |  |  |   } catch (const fmt::SystemError &e) { | 
					
						
							|  |  |  |     error = e; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  |   fmt::Writer message; | 
					
						
							|  |  |  |   format(message, error_code, "test"); | 
					
						
							|  |  |  |   EXPECT_EQ(str(message), error.what()); | 
					
						
							|  |  |  |   EXPECT_EQ(error_code, error.error_code()); | 
					
						
							| 
									
										
										
										
											2014-05-01 08:02:55 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  | template <typename Sink> | 
					
						
							|  |  |  | void CheckThrowError(int error_code, FormatErrorMessage format, | 
					
						
							|  |  |  |     fmt::Formatter<Sink> (*throw_error)(int error_code, StringRef format)) { | 
					
						
							| 
									
										
										
										
											2014-04-30 13:02:53 -07:00
										 |  |  |   fmt::SystemError error("", 0); | 
					
						
							|  |  |  |   try { | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  |     throw_error(error_code, "test {}") << "error"; | 
					
						
							| 
									
										
										
										
											2014-04-30 13:02:53 -07:00
										 |  |  |   } catch (const fmt::SystemError &e) { | 
					
						
							|  |  |  |     error = e; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  |   fmt::Writer message; | 
					
						
							|  |  |  |   format(message, error_code, "test error"); | 
					
						
							|  |  |  |   EXPECT_EQ(str(message), error.what()); | 
					
						
							|  |  |  |   EXPECT_EQ(error_code, error.error_code()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, FormatSystemErrorMessage) { | 
					
						
							|  |  |  |   fmt::Writer message; | 
					
						
							|  |  |  |   fmt::internal::FormatSystemErrorMessage(message, EDOM, "test"); | 
					
						
							| 
									
										
										
										
											2014-05-03 16:25:26 -07:00
										 |  |  |   EXPECT_EQ(str(fmt::Format("test: {}") | 
					
						
							|  |  |  |     << GetSystemErrorMessage(EDOM)), fmt::str(message)); | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, SystemErrorSink) { | 
					
						
							|  |  |  |   CheckErrorSink<fmt::SystemErrorSink>( | 
					
						
							|  |  |  |       EDOM, fmt::internal::FormatSystemErrorMessage); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, ThrowSystemError) { | 
					
						
							|  |  |  |   CheckThrowError(EDOM, | 
					
						
							|  |  |  |       fmt::internal::FormatSystemErrorMessage, fmt::ThrowSystemError); | 
					
						
							| 
									
										
										
										
											2014-04-30 10:53:55 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-13 06:51:17 -07:00
										 |  |  | TEST(ErrorTest, ReportSystemError) { | 
					
						
							| 
									
										
										
										
											2014-05-14 06:58:13 -07:00
										 |  |  |   fmt::Writer out; | 
					
						
							|  |  |  |   fmt::internal::FormatSystemErrorMessage(out, EDOM, "test error"); | 
					
						
							|  |  |  |   out << '\n'; | 
					
						
							|  |  |  |   EXPECT_WRITE(stderr, fmt::ReportSystemError(EDOM, "test error"), out.str()); | 
					
						
							| 
									
										
										
										
											2014-05-13 06:51:17 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-30 13:02:53 -07:00
										 |  |  | #ifdef _WIN32
 | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, FormatWinErrorMessage) { | 
					
						
							| 
									
										
										
										
											2014-04-30 13:02:53 -07:00
										 |  |  |   LPWSTR message = 0; | 
					
						
							|  |  |  |   FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | | 
					
						
							|  |  |  |       FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, 0, | 
					
						
							|  |  |  |       ERROR_FILE_EXISTS, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), | 
					
						
							|  |  |  |       reinterpret_cast<LPWSTR>(&message), 0, 0); | 
					
						
							|  |  |  |   fmt::internal::UTF16ToUTF8 utf8_message(message); | 
					
						
							|  |  |  |   LocalFree(message); | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  |   fmt::Writer actual_message; | 
					
						
							|  |  |  |   fmt::internal::FormatWinErrorMessage( | 
					
						
							|  |  |  |       actual_message, ERROR_FILE_EXISTS, "test"); | 
					
						
							|  |  |  |   EXPECT_EQ(str(fmt::Format("test: {}") << fmt::str(utf8_message)), | 
					
						
							|  |  |  |       fmt::str(actual_message)); | 
					
						
							| 
									
										
										
										
											2014-04-30 10:53:55 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, WinErrorSink) { | 
					
						
							|  |  |  |   CheckErrorSink<fmt::WinErrorSink>( | 
					
						
							|  |  |  |       ERROR_FILE_EXISTS, fmt::internal::FormatWinErrorMessage); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, ThrowWinError) { | 
					
						
							|  |  |  |   CheckThrowError(ERROR_FILE_EXISTS, | 
					
						
							|  |  |  |       fmt::internal::FormatWinErrorMessage, fmt::ThrowWinError); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-13 06:51:17 -07:00
										 |  |  | TEST(ErrorTest, ReportWinError) { | 
					
						
							| 
									
										
										
										
											2014-05-14 06:58:13 -07:00
										 |  |  |   fmt::Writer out; | 
					
						
							|  |  |  |   fmt::internal::FormatWinErrorMessage(out, ERROR_FILE_EXISTS, "test error"); | 
					
						
							|  |  |  |   out << '\n'; | 
					
						
							|  |  |  |   EXPECT_WRITE(stderr, | 
					
						
							|  |  |  |       fmt::ReportWinError(ERROR_FILE_EXISTS, "test error"), out.str()); | 
					
						
							| 
									
										
										
										
											2014-05-13 06:51:17 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-01 08:43:36 -07:00
										 |  |  | #endif  // _WIN32
 | 
					
						
							| 
									
										
										
										
											2014-04-30 10:53:55 -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-04-25 07:40:37 -07:00
										 |  |  | void CheckMoveArray(const char *str, Array<char, 5> &array) { | 
					
						
							|  |  |  |   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-04-25 07:40:37 -07:00
										 |  |  |   CheckMoveArray("test", array); | 
					
						
							|  |  |  |   // 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-04-25 07:40:37 -07:00
										 |  |  |   CheckMoveArray("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-04-26 06:49:22 -07:00
										 |  |  | void CheckMoveAssignArray(const char *str, Array<char, 5> &array) { | 
					
						
							|  |  |  |   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); | 
					
						
							|  |  |  |   CheckMoveAssignArray("test", array); | 
					
						
							|  |  |  |   // Adding one more character fills the inline buffer, but doesn't cause
 | 
					
						
							|  |  |  |   // dynamic allocation.
 | 
					
						
							|  |  |  |   array.push_back('a'); | 
					
						
							|  |  |  |   CheckMoveAssignArray("testa", array); | 
					
						
							|  |  |  |   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); | 
					
						
							|  |  |  |   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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void CheckMoveWriter(const std::string &str, Writer &w) { | 
					
						
							|  |  |  |   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"; | 
					
						
							|  |  |  |   CheckMoveWriter("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 += '*'; | 
					
						
							|  |  |  |   w.Clear(); | 
					
						
							|  |  |  |   w << s; | 
					
						
							|  |  |  |   CheckMoveWriter(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 += '*'; | 
					
						
							|  |  |  |   w.Clear(); | 
					
						
							|  |  |  |   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); | 
					
						
							|  |  |  |   CHECK_WRITE(4.2l); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  |   EXPECT_EQ("1100101011111110", str(Writer() << bin(0xcafe))); | 
					
						
							|  |  |  |   EXPECT_EQ("1011101010111110", str(Writer() << bin(0xbabeu))); | 
					
						
							|  |  |  |   EXPECT_EQ("1101111010101101", str(Writer() << bin(0xdeadl))); | 
					
						
							|  |  |  |   EXPECT_EQ("1011111011101111", str(Writer() << bin(0xbeeful))); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("11001010111111101011101010111110", | 
					
						
							|  |  |  |             str(Writer() << bin(0xcafebabell))); | 
					
						
							|  |  |  |   EXPECT_EQ("11011110101011011011111011101111", | 
					
						
							|  |  |  |             str(Writer() << bin(0xdeadbeefull))); | 
					
						
							| 
									
										
										
										
											2013-11-16 21:25:48 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | TEST(WriterTest, oct) { | 
					
						
							|  |  |  |   using fmt::oct; | 
					
						
							|  |  |  |   EXPECT_EQ("12", str(Writer() << oct(static_cast<short>(012)))); | 
					
						
							|  |  |  |   EXPECT_EQ("12", str(Writer() << oct(012))); | 
					
						
							|  |  |  |   EXPECT_EQ("34", str(Writer() << oct(034u))); | 
					
						
							|  |  |  |   EXPECT_EQ("56", str(Writer() << oct(056l))); | 
					
						
							|  |  |  |   EXPECT_EQ("70", str(Writer() << oct(070ul))); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("1234", str(Writer() << oct(01234ll))); | 
					
						
							|  |  |  |   EXPECT_EQ("5670", str(Writer() << oct(05670ull))); | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("cafe", str(Writer() << hex(0xcafe))); | 
					
						
							|  |  |  |   EXPECT_EQ("babe", str(Writer() << hex(0xbabeu))); | 
					
						
							|  |  |  |   EXPECT_EQ("dead", str(Writer() << hex(0xdeadl))); | 
					
						
							|  |  |  |   EXPECT_EQ("beef", str(Writer() << hex(0xbeeful))); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("cafebabe", str(Writer() << hex(0xcafebabell))); | 
					
						
							|  |  |  |   EXPECT_EQ("deadbeef", str(Writer() << hex(0xdeadbeefull))); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(WriterTest, hexu) { | 
					
						
							|  |  |  |   using fmt::hexu; | 
					
						
							|  |  |  |   EXPECT_EQ("CAFE", str(Writer() << hexu(0xcafe))); | 
					
						
							|  |  |  |   EXPECT_EQ("BABE", str(Writer() << hexu(0xbabeu))); | 
					
						
							|  |  |  |   EXPECT_EQ("DEAD", str(Writer() << hexu(0xdeadl))); | 
					
						
							|  |  |  |   EXPECT_EQ("BEEF", str(Writer() << hexu(0xbeeful))); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("CAFEBABE", str(Writer() << hexu(0xcafebabell))); | 
					
						
							|  |  |  |   EXPECT_EQ("DEADBEEF", str(Writer() << hexu(0xdeadbeefull))); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  |   EXPECT_EQ("    cafe", str(Writer() << pad(hex(0xcafe), 8))); | 
					
						
							|  |  |  |   EXPECT_EQ("    babe", str(Writer() << pad(hex(0xbabeu), 8))); | 
					
						
							|  |  |  |   EXPECT_EQ("    dead", str(Writer() << pad(hex(0xdeadl), 8))); | 
					
						
							|  |  |  |   EXPECT_EQ("    beef", str(Writer() << pad(hex(0xbeeful), 8))); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("    dead", str(Writer() << pad(hex(0xdeadll), 8))); | 
					
						
							|  |  |  |   EXPECT_EQ("    beef", str(Writer() << pad(hex(0xbeefull), 8))); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("     11", str(Writer() << pad(11, 7))); | 
					
						
							|  |  |  |   EXPECT_EQ("     22", str(Writer() << pad(22u, 7))); | 
					
						
							|  |  |  |   EXPECT_EQ("     33", str(Writer() << pad(33l, 7))); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("     44", str(Writer() << pad(44ul, 7))); | 
					
						
							|  |  |  |   EXPECT_EQ("     33", str(Writer() << pad(33ll, 7))); | 
					
						
							|  |  |  |   EXPECT_EQ("     44", str(Writer() << pad(44ull, 7))); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   BasicWriter<char> f; | 
					
						
							|  |  |  |   f.Clear(); | 
					
						
							|  |  |  |   f << pad(42, 5, '0'); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", f.str()); | 
					
						
							|  |  |  |   f.Clear(); | 
					
						
							|  |  |  |   f << Date(2012, 12, 9); | 
					
						
							|  |  |  |   EXPECT_EQ("2012-12-9", f.str()); | 
					
						
							|  |  |  |   f.Clear(); | 
					
						
							|  |  |  |   f << iso8601(Date(2012, 1, 9)); | 
					
						
							|  |  |  |   EXPECT_EQ("2012-01-09", f.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-31 09:43:32 -08:00
										 |  |  | TEST(WriterTest, PadString) { | 
					
						
							|  |  |  |   EXPECT_EQ("test    ", str(Writer() << pad("test", 8))); | 
					
						
							| 
									
										
										
										
											2014-01-01 09:06:25 -08:00
										 |  |  |   EXPECT_EQ("test******", str(Writer() << pad("test", 10, '*'))); | 
					
						
							| 
									
										
										
										
											2013-12-31 09:43:32 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-01 10:00:55 -08:00
										 |  |  | TEST(WriterTest, PadWString) { | 
					
						
							|  |  |  |   EXPECT_EQ(L"test    ", str(WWriter() << pad(L"test", 8))); | 
					
						
							|  |  |  |   EXPECT_EQ(L"test******", str(WWriter() << pad(L"test", 10, '*'))); | 
					
						
							|  |  |  |   EXPECT_EQ(L"test******", str(WWriter() << pad(L"test", 10, L'*'))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | TEST(WriterTest, NoConflictWithIOManip) { | 
					
						
							|  |  |  |   using namespace std; | 
					
						
							|  |  |  |   using namespace fmt; | 
					
						
							|  |  |  |   EXPECT_EQ("cafe", str(Writer() << hex(0xcafe))); | 
					
						
							|  |  |  |   EXPECT_EQ("12", str(Writer() << oct(012))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  | TEST(WriterTest, Format) { | 
					
						
							|  |  |  |   Writer w; | 
					
						
							|  |  |  |   w.Format("part{0}") << 1; | 
					
						
							|  |  |  |   EXPECT_EQ(strlen("part1"), w.size()); | 
					
						
							|  |  |  |   EXPECT_STREQ("part1", w.c_str()); | 
					
						
							|  |  |  |   EXPECT_STREQ("part1", w.data()); | 
					
						
							|  |  |  |   EXPECT_EQ("part1", w.str()); | 
					
						
							|  |  |  |   w.Format("part{0}") << 2; | 
					
						
							|  |  |  |   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) { | 
					
						
							|  |  |  |   EXPECT_EQ(L"cafe", str(fmt::WWriter() << fmt::hex(0xcafe))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  | TEST(FormatterTest, Escape) { | 
					
						
							|  |  |  |   EXPECT_EQ("{", str(Format("{{"))); | 
					
						
							|  |  |  |   EXPECT_EQ("before {", str(Format("before {{"))); | 
					
						
							|  |  |  |   EXPECT_EQ("{ after", str(Format("{{ after"))); | 
					
						
							|  |  |  |   EXPECT_EQ("before { after", str(Format("before {{ after"))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("}", str(Format("}}"))); | 
					
						
							|  |  |  |   EXPECT_EQ("before }", str(Format("before }}"))); | 
					
						
							|  |  |  |   EXPECT_EQ("} after", str(Format("}} after"))); | 
					
						
							|  |  |  |   EXPECT_EQ("before } after", str(Format("before }} after"))); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("{}", str(Format("{{}}"))); | 
					
						
							|  |  |  |   EXPECT_EQ("{42}", str(Format("{{{0}}}") << 42)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, UnmatchedBraces) { | 
					
						
							|  |  |  |   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-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, NoArgs) { | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  |   EXPECT_EQ("test", str(Format("test"))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | TEST(FormatterTest, ArgsInDifferentPositions) { | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  |   EXPECT_EQ("42", str(Format("{0}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("before 42", str(Format("before {0}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42 after", str(Format("{0} after") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("before 42 after", str(Format("before {0} after") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("answer = 42", str(Format("{0} = {1}") << "answer" << 42)); | 
					
						
							| 
									
										
										
										
											2012-12-10 15:04:55 -08:00
										 |  |  |   EXPECT_EQ("42 is the answer", | 
					
						
							|  |  |  |       str(Format("{1} is the {0}") << "answer" << 42)); | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  |   EXPECT_EQ("abracadabra", str(Format("{0}{1}{0}") << "abra" << "cad")); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, ArgErrors) { | 
					
						
							| 
									
										
										
										
											2012-12-08 08:17:12 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{"), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{x}"), FormatError, | 
					
						
							|  |  |  |       "invalid argument index in format string"); | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0"), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char format[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(format, "{%u", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-08 08:17:12 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format(format), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(format, "{%u}", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format(format), 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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(format, "{%u", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  |   Increment(format + 1); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format(format), FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   std::size_t size = std::strlen(format); | 
					
						
							|  |  |  |   format[size] = '}'; | 
					
						
							|  |  |  |   format[size + 1] = 0; | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format(format), 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) { | 
					
						
							|  |  |  |   EXPECT_EQ("abc", str(Format("{}{}{}") << 'a' << 'b' << 'c')); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0}{}") << 'a' << 'b', | 
					
						
							|  |  |  |       FormatError, "cannot switch from manual to automatic argument indexing"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{}{0}") << 'a' << 'b', | 
					
						
							|  |  |  |       FormatError, "cannot switch from automatic to manual argument indexing"); | 
					
						
							|  |  |  |   EXPECT_EQ("1.2", str(Format("{:.{}}") << 1.2345 << 2)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0}:.{}") << 1.2345 << 2, | 
					
						
							|  |  |  |       FormatError, "cannot switch from manual to automatic argument indexing"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{:.{0}}") << 1.2345 << 2, | 
					
						
							|  |  |  |       FormatError, "cannot switch from automatic to manual argument indexing"); | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{}"), FormatError, | 
					
						
							|  |  |  |       "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) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:}") << 42)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-22 14:05:56 -08:00
										 |  |  | TEST(FormatterTest, LeftAlign) { | 
					
						
							|  |  |  |   EXPECT_EQ("42  ", str(Format("{0:<4}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42  ", str(Format("{0:<4o}") << 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42  ", str(Format("{0:<4x}") << 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", str(Format("{0:<5}") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", str(Format("{0:<5}") << 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", str(Format("{0:<5}") << -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", str(Format("{0:<5}") << 42ul)); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("-42  ", str(Format("{0:<5}") << -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("42   ", str(Format("{0:<5}") << 42ull)); | 
					
						
							| 
									
										
										
										
											2012-12-22 14:05:56 -08:00
										 |  |  |   EXPECT_EQ("-42  ", str(Format("{0:<5}") << -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42  ", str(Format("{0:<5}") << -42.0l)); | 
					
						
							| 
									
										
										
										
											2012-12-21 09:12:04 -08:00
										 |  |  |   EXPECT_EQ("c    ", str(Format("{0:<5}") << 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abc  ", str(Format("{0:<5}") << "abc")); | 
					
						
							| 
									
										
										
										
											2012-12-22 14:05:56 -08:00
										 |  |  |   EXPECT_EQ("0xface  ", | 
					
						
							|  |  |  |       str(Format("{0:<8}") << reinterpret_cast<void*>(0xface))); | 
					
						
							| 
									
										
										
										
											2012-12-21 09:12:04 -08:00
										 |  |  |   EXPECT_EQ("def  ", str(Format("{0:<5}") << TestString("def"))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-22 17:53:13 -08:00
										 |  |  | TEST(FormatterTest, RightAlign) { | 
					
						
							|  |  |  |   EXPECT_EQ("  42", str(Format("{0:>4}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", str(Format("{0:>4o}") << 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", str(Format("{0:>4x}") << 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", str(Format("{0:>5}") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", str(Format("{0:>5}") << 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", str(Format("{0:>5}") << -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", str(Format("{0:>5}") << 42ul)); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("  -42", str(Format("{0:>5}") << -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", str(Format("{0:>5}") << 42ull)); | 
					
						
							| 
									
										
										
										
											2012-12-22 17:53:13 -08:00
										 |  |  |   EXPECT_EQ("  -42", str(Format("{0:>5}") << -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("  -42", str(Format("{0:>5}") << -42.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("    c", str(Format("{0:>5}") << 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("  abc", str(Format("{0:>5}") << "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ("  0xface", | 
					
						
							|  |  |  |       str(Format("{0:>8}") << reinterpret_cast<void*>(0xface))); | 
					
						
							|  |  |  |   EXPECT_EQ("  def", str(Format("{0:>5}") << TestString("def"))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-24 08:34:44 -08:00
										 |  |  | TEST(FormatterTest, NumericAlign) { | 
					
						
							|  |  |  |   EXPECT_EQ("  42", str(Format("{0:=4}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("+ 42", str(Format("{0:=+4}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", str(Format("{0:=4o}") << 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("+ 42", str(Format("{0:=+4o}") << 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("  42", str(Format("{0:=4x}") << 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("+ 42", str(Format("{0:=+4x}") << 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-  42", str(Format("{0:=5}") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", str(Format("{0:=5}") << 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-  42", str(Format("{0:=5}") << -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", str(Format("{0:=5}") << 42ul)); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("-  42", str(Format("{0:=5}") << -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", str(Format("{0:=5}") << 42ull)); | 
					
						
							| 
									
										
										
										
											2012-12-24 08:34:44 -08:00
										 |  |  |   EXPECT_EQ("-  42", str(Format("{0:=5}") << -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-  42", str(Format("{0:=5}") << -42.0l)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:=5") << 'c', | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:=5}") << 'c', | 
					
						
							|  |  |  |       FormatError, "format specifier '=' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:=5}") << "abc", | 
					
						
							|  |  |  |       FormatError, "format specifier '=' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:=8}") << reinterpret_cast<void*>(0xface), | 
					
						
							|  |  |  |       FormatError, "format specifier '=' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:=5}") << TestString("def"), | 
					
						
							|  |  |  |       FormatError, "format specifier '=' requires numeric argument"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-24 19:37:50 -08:00
										 |  |  | TEST(FormatterTest, CenterAlign) { | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", str(Format("{0:^5}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", str(Format("{0:^5o}") << 042)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", str(Format("{0:^5x}") << 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", str(Format("{0:^5}") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", str(Format("{0:^5}") << 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", str(Format("{0:^5}") << -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", str(Format("{0:^5}") << 42ul)); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ(" -42 ", str(Format("{0:^5}") << -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42  ", str(Format("{0:^5}") << 42ull)); | 
					
						
							| 
									
										
										
										
											2012-12-24 19:37:50 -08:00
										 |  |  |   EXPECT_EQ(" -42  ", str(Format("{0:^6}") << -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42 ", str(Format("{0:^5}") << -42.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("  c  ", str(Format("{0:^5}") << 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ(" abc  ", str(Format("{0:^6}") << "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ(" 0xface ", | 
					
						
							|  |  |  |       str(Format("{0:^8}") << reinterpret_cast<void*>(0xface))); | 
					
						
							|  |  |  |   EXPECT_EQ(" def ", str(Format("{0:^5}") << TestString("def"))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-20 20:10:55 -08:00
										 |  |  | TEST(FormatterTest, Fill) { | 
					
						
							| 
									
										
										
										
											2012-12-24 08:34:44 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:{<5}") << 'c', | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:{<5}}") << 'c', | 
					
						
							|  |  |  |       FormatError, "invalid fill character '{'"); | 
					
						
							| 
									
										
										
										
											2012-12-20 20:10:55 -08:00
										 |  |  |   EXPECT_EQ("**42", str(Format("{0:*>4}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", str(Format("{0:*>5}") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", str(Format("{0:*>5}") << 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", str(Format("{0:*>5}") << -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", str(Format("{0:*>5}") << 42ul)); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("**-42", str(Format("{0:*>5}") << -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("***42", str(Format("{0:*>5}") << 42ull)); | 
					
						
							| 
									
										
										
										
											2012-12-20 20:10:55 -08:00
										 |  |  |   EXPECT_EQ("**-42", str(Format("{0:*>5}") << -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("**-42", str(Format("{0:*>5}") << -42.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("c****", str(Format("{0:*<5}") << 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abc**", str(Format("{0:*<5}") << "abc")); | 
					
						
							|  |  |  |   EXPECT_EQ("**0xface", str(Format("{0:*>8}") | 
					
						
							|  |  |  |       << reinterpret_cast<void*>(0xface))); | 
					
						
							|  |  |  |   EXPECT_EQ("def**", str(Format("{0:*<5}") << TestString("def"))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  | TEST(FormatterTest, PlusSign) { | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  |   EXPECT_EQ("+42", str(Format("{0:+}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", str(Format("{0:+}") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("+42", str(Format("{0:+}") << 42)); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:+}") << 42u, | 
					
						
							|  |  |  |       FormatError, "format specifier '+' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  |   EXPECT_EQ("+42", str(Format("{0:+}") << 42l)); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:+}") << 42ul, | 
					
						
							|  |  |  |       FormatError, "format specifier '+' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("+42", str(Format("{0:+}") << 42ll)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:+}") << 42ull, | 
					
						
							|  |  |  |       FormatError, "format specifier '+' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  |   EXPECT_EQ("+42", str(Format("{0:+}") << 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("+42", str(Format("{0:+}") << 42.0l)); | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:+") << 'c', | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:+}") << 'c', | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "format specifier '+' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:+}") << "abc", | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "format specifier '+' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:+}") << reinterpret_cast<void*>(0x42), | 
					
						
							|  |  |  |       FormatError, "format specifier '+' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08: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) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:-}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", str(Format("{0:-}") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:-}") << 42)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:-}") << 42u, | 
					
						
							|  |  |  |       FormatError, "format specifier '-' requires signed argument"); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:-}") << 42l)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:-}") << 42ul, | 
					
						
							|  |  |  |       FormatError, "format specifier '-' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("42", str(Format("{0:-}") << 42ll)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:-}") << 42ull, | 
					
						
							|  |  |  |       FormatError, "format specifier '-' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2012-12-25 13:25:14 -08:00
										 |  |  |   EXPECT_EQ("42", str(Format("{0:-}") << 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:-}") << 42.0l)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:-") << 'c', | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:-}") << 'c', | 
					
						
							|  |  |  |       FormatError, "format specifier '-' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:-}") << "abc", | 
					
						
							|  |  |  |       FormatError, "format specifier '-' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:-}") << reinterpret_cast<void*>(0x42), | 
					
						
							|  |  |  |       FormatError, "format specifier '-' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:-}") << TestString(), | 
					
						
							|  |  |  |       FormatError, "format specifier '-' requires numeric argument"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  | TEST(FormatterTest, SpaceSign) { | 
					
						
							|  |  |  |   EXPECT_EQ(" 42", str(Format("{0: }") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", str(Format("{0: }") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42", str(Format("{0: }") << 42)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0: }") << 42u, | 
					
						
							|  |  |  |       FormatError, "format specifier ' ' requires signed argument"); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42", str(Format("{0: }") << 42l)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0: }") << 42ul, | 
					
						
							|  |  |  |       FormatError, "format specifier ' ' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ(" 42", str(Format("{0: }") << 42ll)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0: }") << 42ull, | 
					
						
							|  |  |  |       FormatError, "format specifier ' ' requires signed argument"); | 
					
						
							| 
									
										
										
										
											2012-12-25 13:45:12 -08:00
										 |  |  |   EXPECT_EQ(" 42", str(Format("{0: }") << 42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 42", str(Format("{0: }") << 42.0l)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0: ") << 'c', | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0: }") << 'c', | 
					
						
							|  |  |  |       FormatError, "format specifier ' ' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0: }") << "abc", | 
					
						
							|  |  |  |       FormatError, "format specifier ' ' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0: }") << reinterpret_cast<void*>(0x42), | 
					
						
							|  |  |  |       FormatError, "format specifier ' ' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0: }") << TestString(), | 
					
						
							|  |  |  |       FormatError, "format specifier ' ' requires numeric argument"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  | TEST(FormatterTest, HashFlag) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:#}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", str(Format("{0:#}") << -42)); | 
					
						
							| 
									
										
										
										
											2013-11-16 21:56:28 -08:00
										 |  |  |   EXPECT_EQ("0b101010", str(Format("{0:#b}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("0B101010", str(Format("{0:#B}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0b101010", str(Format("{0:#b}") << -42)); | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  |   EXPECT_EQ("0x42", str(Format("{0:#x}") << 0x42)); | 
					
						
							| 
									
										
										
										
											2013-11-16 21:11:42 -08:00
										 |  |  |   EXPECT_EQ("0X42", str(Format("{0:#X}") << 0x42)); | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  |   EXPECT_EQ("-0x42", str(Format("{0:#x}") << -0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", str(Format("{0:#o}") << 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", str(Format("{0:#o}") << -042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:#}") << 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", str(Format("{0:#x}") << 0x42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", str(Format("{0:#o}") << 042u)); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  |   EXPECT_EQ("-42", str(Format("{0:#}") << -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", str(Format("{0:#x}") << 0x42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0x42", str(Format("{0:#x}") << -0x42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", str(Format("{0:#o}") << 042l)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", str(Format("{0:#o}") << -042l)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:#}") << 42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", str(Format("{0:#x}") << 0x42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", str(Format("{0:#o}") << 042ul)); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("-42", str(Format("{0:#}") << -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", str(Format("{0:#x}") << 0x42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0x42", str(Format("{0:#x}") << -0x42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", str(Format("{0:#o}") << 042ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("-042", str(Format("{0:#o}") << -042ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:#}") << 42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("0x42", str(Format("{0:#x}") << 0x42ull)); | 
					
						
							|  |  |  |   EXPECT_EQ("042", str(Format("{0:#o}") << 042ull)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-25 18:19:51 -08:00
										 |  |  |   EXPECT_EQ("-42.0000", str(Format("{0:#}") << -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42.0000", str(Format("{0:#}") << -42.0l)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:#") << 'c', | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:#}") << 'c', | 
					
						
							|  |  |  |       FormatError, "format specifier '#' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:#}") << "abc", | 
					
						
							|  |  |  |       FormatError, "format specifier '#' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:#}") << reinterpret_cast<void*>(0x42), | 
					
						
							|  |  |  |       FormatError, "format specifier '#' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:#}") << TestString(), | 
					
						
							|  |  |  |       FormatError, "format specifier '#' requires numeric argument"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, ZeroFlag) { | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  |   EXPECT_EQ("42", str(Format("{0:0}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", str(Format("{0:05}") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", str(Format("{0:05}") << 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", str(Format("{0:05}") << -42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", str(Format("{0:05}") << 42ul)); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("-0042", str(Format("{0:05}") << -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("00042", str(Format("{0:05}") << 42ull)); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  |   EXPECT_EQ("-0042", str(Format("{0:05}") << -42.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("-0042", str(Format("{0:05}") << -42.0l)); | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:0") << 'c', | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:05}") << 'c', | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "format specifier '0' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-08 18:45:35 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:05}") << "abc", | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |       FormatError, "format specifier '0' requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:05}") << reinterpret_cast<void*>(0x42), | 
					
						
							|  |  |  |       FormatError, "format specifier '0' requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08: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) { | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char format[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(format, "{0:%u", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  |   Increment(format + 3); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format(format), FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   std::size_t size = std::strlen(format); | 
					
						
							|  |  |  |   format[size] = '}'; | 
					
						
							|  |  |  |   format[size + 1] = 0; | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format(format) << 0, | 
					
						
							|  |  |  |       FormatError, "number is too big in format"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(format, "{0:%u", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format(format), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(format, "{0:%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format(format) << 0, | 
					
						
							|  |  |  |       FormatError, "number is too big in format"); | 
					
						
							|  |  |  |   EXPECT_EQ(" -42", str(Format("{0:4}") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("   42", str(Format("{0:5}") << 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("   -42", str(Format("{0:6}") << -42l)); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |   EXPECT_EQ("     42", str(Format("{0:7}") << 42ul)); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_EQ("   -42", str(Format("{0:6}") << -42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("     42", str(Format("{0:7}") << 42ull)); | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  |   EXPECT_EQ("   -1.23", str(Format("{0:8}") << -1.23)); | 
					
						
							|  |  |  |   EXPECT_EQ("    -1.23", str(Format("{0:9}") << -1.23l)); | 
					
						
							|  |  |  |   EXPECT_EQ("    0xcafe", | 
					
						
							|  |  |  |       str(Format("{0:10}") << reinterpret_cast<void*>(0xcafe))); | 
					
						
							|  |  |  |   EXPECT_EQ("x          ", str(Format("{0:11}") << 'x')); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ("str         ", str(Format("{0:12}") << "str")); | 
					
						
							|  |  |  |   EXPECT_EQ("test         ", str(Format("{0:13}") << TestString("test"))); | 
					
						
							| 
									
										
										
										
											2012-12-07 09:02:15 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | TEST(FormatterTest, Precision) { | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char format[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(format, "{0:.%u", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  |   Increment(format + 4); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format(format), FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   std::size_t size = std::strlen(format); | 
					
						
							|  |  |  |   format[size] = '}'; | 
					
						
							|  |  |  |   format[size + 1] = 0; | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format(format) << 0, | 
					
						
							|  |  |  |       FormatError, "number is too big in format"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(format, "{0:.%u", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format(format), FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(format, "{0:.%u}", INT_MAX + 1u); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format(format) << 0, | 
					
						
							|  |  |  |       FormatError, "number is too big in format"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.") << 0, | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.}") << 0, | 
					
						
							|  |  |  |       FormatError, "missing precision in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2") << 0, | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2}") << 42, | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2f}") << 42, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:.2}") << 42u, | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2f}") << 42u, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:.2}") << 42l, | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2f}") << 42l, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:.2}") << 42ul, | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2f}") << 42ul, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:.2}") << 42ll, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2f}") << 42ll, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2}") << 42ull, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2f}") << 42ull, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08:00
										 |  |  |   EXPECT_EQ("1.2", str(Format("{0:.2}") << 1.2345)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.2", str(Format("{0:.2}") << 1.2345l)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   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"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08: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
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2}") << 'x', | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08: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
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2}") << "str", | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08: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
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.2}") << TestString(), | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2012-12-09 14:13:23 -08: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) { | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char format[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(format, "{0:.{%u", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-13 15:10:02 -08:00
										 |  |  |   Increment(format + 4); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format(format), FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   std::size_t size = std::strlen(format); | 
					
						
							|  |  |  |   format[size] = '}'; | 
					
						
							|  |  |  |   format[size + 1] = 0; | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format(format) << 0, FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   format[size + 1] = '}'; | 
					
						
							|  |  |  |   format[size + 2] = 0; | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format(format) << 0, | 
					
						
							|  |  |  |       FormatError, "number is too big in format"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{") << 0, | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{}") << 0, | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2012-12-27 06:56:55 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:.{x}}") << 0, | 
					
						
							|  |  |  |       FormatError, "invalid argument index in format string"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}") << 0 << 0, | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 0, | 
					
						
							|  |  |  |       FormatError, "argument index is out of range in format"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 0 << -1, | 
					
						
							|  |  |  |       FormatError, "negative precision in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 0 << (INT_MAX + 1u), | 
					
						
							|  |  |  |       FormatError, "number is too big in format"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 0 << -1l, | 
					
						
							|  |  |  |       FormatError, "negative precision in format"); | 
					
						
							|  |  |  |   if (sizeof(long) > sizeof(int)) { | 
					
						
							| 
									
										
										
										
											2012-12-21 15:02:25 -08:00
										 |  |  |     long value = INT_MAX; | 
					
						
							|  |  |  |     EXPECT_THROW_MSG(Format("{0:.{1}}") << 0 << (value + 1), | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |         FormatError, "number is too big in format"); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 0 << (INT_MAX + 1ul), | 
					
						
							|  |  |  |       FormatError, "number is too big in format"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 0 << '0', | 
					
						
							|  |  |  |       FormatError, "precision is not integer"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 0 << 0.0, | 
					
						
							|  |  |  |       FormatError, "precision is not integer"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 42 << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}f}") << 42 << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 42u << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}f}") << 42u << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 42l << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}f}") << 42l << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 42ul << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}f}") << 42ul << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2013-11-22 07:45:43 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 42ll << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}f}") << 42ll << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 42ull << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}f}") << 42ull << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							| 
									
										
										
										
											2012-12-12 15:21:11 -08:00
										 |  |  |   EXPECT_EQ("1.2", str(Format("{0:.{1}}") << 1.2345 << 2)); | 
					
						
							|  |  |  |   EXPECT_EQ("1.2", str(Format("{1:.{0}}") << 2 << 1.2345l)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << reinterpret_cast<void*>(0xcafe) << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}f}") << reinterpret_cast<void*>(0xcafe) << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << 'x' << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}f}") << 'x' << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << "str" << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}f}") << "str" << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}}") << TestString() << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0:.{1}f}") << TestString() << 2, | 
					
						
							|  |  |  |       FormatError, "precision specifier requires floating-point argument"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  | template <typename T> | 
					
						
							|  |  |  | void CheckUnknownTypes( | 
					
						
							|  |  |  |     const T &value, const char *types, const char *type_name) { | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char format[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; | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |     SPrintf(format, "{0:10%c}", c); | 
					
						
							| 
									
										
										
										
											2012-12-16 15:50:43 -08:00
										 |  |  |     if (std::isprint(static_cast<unsigned char>(c))) | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |       SPrintf(message, "unknown format code '%c' for %s", c, type_name); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |     else | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |       SPrintf(message, "unknown format code '\\x%02x' for %s", c, type_name); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |     EXPECT_THROW_MSG(Format(format) << value, FormatError, message) | 
					
						
							|  |  |  |       << format << " " << message; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-28 12:49:36 -08:00
										 |  |  | TEST(FormatterTest, FormatBool) { | 
					
						
							|  |  |  |   EXPECT_EQ(L"1", str(Format(L"{}") << true)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | TEST(FormatterTest, FormatShort) { | 
					
						
							|  |  |  |   short s = 42; | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:d}") << s)); | 
					
						
							|  |  |  |   unsigned short us = 42; | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:d}") << us)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | TEST(FormatterTest, FormatInt) { | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_THROW_MSG(Format("{0:v") << 42, | 
					
						
							|  |  |  |       FormatError, "unmatched '{' in format"); | 
					
						
							| 
									
										
										
										
											2013-11-16 22:03:53 -08:00
										 |  |  |   CheckUnknownTypes(42, "bBdoxX", "integer"); | 
					
						
							| 
									
										
										
										
											2013-11-14 08:45:50 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatBin) { | 
					
						
							|  |  |  |   EXPECT_EQ("0", str(Format("{0:b}") << 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("101010", str(Format("{0:b}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("101010", str(Format("{0:b}") << 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-101010", str(Format("{0:b}") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("11000000111001", str(Format("{0:b}") << 12345)); | 
					
						
							|  |  |  |   EXPECT_EQ("10010001101000101011001111000", str(Format("{0:b}") << 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("10010000101010111100110111101111", str(Format("{0:b}") << 0x90ABCDEF)); | 
					
						
							|  |  |  |   EXPECT_EQ("11111111111111111111111111111111", | 
					
						
							|  |  |  |             str(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) { | 
					
						
							|  |  |  |   EXPECT_EQ("0", str(Format("{0}") << 0)); | 
					
						
							| 
									
										
										
										
											2012-12-07 17:48:10 -08:00
										 |  |  |   EXPECT_EQ("42", str(Format("{0}") << 42)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ("42", str(Format("{0:d}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0}") << 42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", str(Format("{0}") << -42)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345", str(Format("{0}") << 12345)); | 
					
						
							|  |  |  |   EXPECT_EQ("67890", str(Format("{0}") << 67890)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%d", INT_MIN); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0}") << INT_MIN)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%d", INT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0}") << INT_MAX)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%u", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0}") << UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%ld", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0}") << LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%ld", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0}") << LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%lu", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0}") << ULONG_MAX)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatHex) { | 
					
						
							|  |  |  |   EXPECT_EQ("0", str(Format("{0:x}") << 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:x}") << 0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:x}") << 0x42u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", str(Format("{0:x}") << -0x42)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345678", str(Format("{0:x}") << 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("90abcdef", str(Format("{0:x}") << 0x90abcdef)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345678", str(Format("{0:X}") << 0x12345678)); | 
					
						
							|  |  |  |   EXPECT_EQ("90ABCDEF", str(Format("{0:X}") << 0x90ABCDEF)); | 
					
						
							| 
									
										
										
										
											2013-10-23 20:04:32 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "-%x", 0 - static_cast<unsigned>(INT_MIN)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:x}") << INT_MIN)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%x", INT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:x}") << INT_MAX)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%x", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:x}") << UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "-%lx", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:x}") << LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%lx", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:x}") << LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%lx", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:x}") << ULONG_MAX)); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  | TEST(FormatterTest, FormatOct) { | 
					
						
							|  |  |  |   EXPECT_EQ("0", str(Format("{0:o}") << 0)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:o}") << 042)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0:o}") << 042u)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", str(Format("{0:o}") << -042)); | 
					
						
							|  |  |  |   EXPECT_EQ("12345670", str(Format("{0:o}") << 012345670)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "-%o", 0 - static_cast<unsigned>(INT_MIN)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:o}") << INT_MIN)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%o", INT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:o}") << INT_MAX)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%o", UINT_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:o}") << UINT_MAX)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "-%lo", 0 - static_cast<unsigned long>(LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:o}") << LONG_MIN)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%lo", LONG_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:o}") << LONG_MAX)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%lo", ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:51:45 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:o}") << ULONG_MAX)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-31 07:01:09 -07:00
										 |  |  | TEST(FormatterTest, FormatFloat) { | 
					
						
							|  |  |  |   EXPECT_EQ("392.500000", str(Format("{0:f}") << 392.5f)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | TEST(FormatterTest, FormatDouble) { | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   CheckUnknownTypes(1.2, "eEfFgG", "double"); | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  |   EXPECT_EQ("0", str(Format("{0:}") << 0.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.000000", str(Format("{0:f}") << 0.0)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", str(Format("{0:}") << 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", str(Format("{0:g}") << 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", str(Format("{0:G}") << 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", str(Format("{0:f}") << 392.65)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", str(Format("{0:F}") << 392.65)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%e", 392.65); | 
					
						
							| 
									
										
										
										
											2012-12-12 10:11:40 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:e}") << 392.65)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%E", 392.65); | 
					
						
							| 
									
										
										
										
											2012-12-12 10:11:40 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:E}") << 392.65)); | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  |   EXPECT_EQ("+0000392.6", str(Format("{0:+010.4g}") << 392.65)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-28 08:27:54 -08:00
										 |  |  | TEST(FormatterTest, FormatNaN) { | 
					
						
							|  |  |  |   double nan = std::numeric_limits<double>::quiet_NaN(); | 
					
						
							|  |  |  |   EXPECT_EQ("nan", str(Format("{}") << nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("+nan", str(Format("{:+}") << nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("-nan", str(Format("{}") << -nan)); | 
					
						
							|  |  |  |   EXPECT_EQ(" nan", str(Format("{: }") << nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("NAN", str(Format("{:F}") << nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("nan    ", str(Format("{:<7}") << nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("  nan  ", str(Format("{:^7}") << nan)); | 
					
						
							|  |  |  |   EXPECT_EQ("    nan", str(Format("{:>7}") << nan)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-29 06:44:14 -08:00
										 |  |  | TEST(FormatterTest, FormatInfinity) { | 
					
						
							|  |  |  |   double inf = std::numeric_limits<double>::infinity(); | 
					
						
							|  |  |  |   EXPECT_EQ("inf", str(Format("{}") << inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("+inf", str(Format("{:+}") << inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("-inf", str(Format("{}") << -inf)); | 
					
						
							|  |  |  |   EXPECT_EQ(" inf", str(Format("{: }") << inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("INF", str(Format("{:F}") << inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("inf    ", str(Format("{:<7}") << inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("  inf  ", str(Format("{:^7}") << inf)); | 
					
						
							|  |  |  |   EXPECT_EQ("    inf", str(Format("{:>7}") << inf)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  | TEST(FormatterTest, FormatLongDouble) { | 
					
						
							|  |  |  |   EXPECT_EQ("0", str(Format("{0:}") << 0.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("0.000000", str(Format("{0:f}") << 0.0l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", str(Format("{0:}") << 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", str(Format("{0:g}") << 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.65", str(Format("{0:G}") << 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", str(Format("{0:f}") << 392.65l)); | 
					
						
							|  |  |  |   EXPECT_EQ("392.650000", str(Format("{0:F}") << 392.65l)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%Le", 392.65l); | 
					
						
							| 
									
										
										
										
											2012-12-12 11:32:13 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{0:e}") << 392.65l)); | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%LE", 392.65l); | 
					
						
							| 
									
										
										
										
											2012-12-10 12:16:02 -08:00
										 |  |  |   EXPECT_EQ("+0000392.6", str(Format("{0:+010.4g}") << 392.65l)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | TEST(FormatterTest, FormatChar) { | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   CheckUnknownTypes('a', "c", "char"); | 
					
						
							|  |  |  |   EXPECT_EQ("a", str(Format("{0}") << 'a')); | 
					
						
							|  |  |  |   EXPECT_EQ("z", str(Format("{0:c}") << 'z')); | 
					
						
							| 
									
										
										
										
											2013-12-07 08:12:03 -08:00
										 |  |  |   EXPECT_EQ(L"a", str(Format(L"{0}") << 'a')); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatWChar) { | 
					
						
							|  |  |  |   EXPECT_EQ(L"a", str(Format(L"{0}") << L'a')); | 
					
						
							|  |  |  |   // This shouldn't compile:
 | 
					
						
							| 
									
										
										
										
											2014-04-27 06:56:12 -07:00
										 |  |  |   //Format("{}") << L'a';
 | 
					
						
							| 
									
										
										
										
											2012-12-09 11:32:39 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  | TEST(FormatterTest, FormatCString) { | 
					
						
							|  |  |  |   CheckUnknownTypes("test", "s", "string"); | 
					
						
							|  |  |  |   EXPECT_EQ("test", str(Format("{0}") << "test")); | 
					
						
							|  |  |  |   EXPECT_EQ("test", str(Format("{0:s}") << "test")); | 
					
						
							| 
									
										
										
										
											2012-12-17 16:39:49 -08:00
										 |  |  |   char nonconst[] = "nonconst"; | 
					
						
							|  |  |  |   EXPECT_EQ("nonconst", str(Format("{0}") << nonconst)); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(Format("{0}") << reinterpret_cast<const char*>(0), | 
					
						
							|  |  |  |       FormatError, "string pointer is null"); | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | TEST(FormatterTest, FormatPointer) { | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   CheckUnknownTypes(reinterpret_cast<void*>(0x1234), "p", "pointer"); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   EXPECT_EQ("0x0", str(Format("{0}") << reinterpret_cast<void*>(0))); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   EXPECT_EQ("0x1234", str(Format("{0}") << reinterpret_cast<void*>(0x1234))); | 
					
						
							|  |  |  |   EXPECT_EQ("0x1234", str(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'), | 
					
						
							|  |  |  |       str(Format("{0}") << reinterpret_cast<void*>(~uintptr_t()))); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, FormatString) { | 
					
						
							|  |  |  |   EXPECT_EQ("test", str(Format("{0}") << std::string("test"))); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-08 09:53:50 -07:00
										 |  |  | TEST(FormatterTest, FormatStringRef) { | 
					
						
							|  |  |  |   EXPECT_EQ("test", str(Format("{0}") << StringRef("test"))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-17 14:56:44 -08:00
										 |  |  | TEST(FormatterTest, FormatUsingIOStreams) { | 
					
						
							| 
									
										
										
										
											2012-12-09 09:03:47 -08:00
										 |  |  |   EXPECT_EQ("a string", str(Format("{0}") << TestString("a string"))); | 
					
						
							| 
									
										
										
										
											2012-12-10 11:08:16 -08:00
										 |  |  |   std::string s = str(fmt::Format("The date is {0}") << Date(2012, 12, 9)); | 
					
						
							|  |  |  |   EXPECT_EQ("The date is 2012-12-9", s); | 
					
						
							| 
									
										
										
										
											2012-12-10 13:30:06 -08:00
										 |  |  |   Date date(2012, 12, 9); | 
					
						
							|  |  |  |   CheckUnknownTypes(date, "", "object"); | 
					
						
							| 
									
										
										
										
											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-01-28 12:47:37 -08:00
										 |  |  | void Format(BasicWriter<Char> &f, const fmt::FormatSpec &spec, Answer) { | 
					
						
							| 
									
										
										
										
											2013-01-08 09:56:05 -08:00
										 |  |  |   f.Write("42", spec); | 
					
						
							| 
									
										
										
										
											2012-12-17 14:56:44 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatterTest, CustomFormat) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format("{0}") << Answer())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 22:03:37 -07:00
										 |  |  | TEST(FormatterTest, WideFormatString) { | 
					
						
							|  |  |  |   EXPECT_EQ(L"42", str(Format(L"{}") << 42)); | 
					
						
							| 
									
										
										
										
											2013-09-06 19:32:19 -07:00
										 |  |  |   EXPECT_EQ(L"4.2", str(Format(L"{}") << 4.2)); | 
					
						
							|  |  |  |   EXPECT_EQ(L"abc", str(Format(L"{}") << L"abc")); | 
					
						
							| 
									
										
										
										
											2013-09-06 19:34:55 -07:00
										 |  |  |   EXPECT_EQ(L"z", str(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:%", | 
					
						
							|  |  |  |       str(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, StringAccess) { | 
					
						
							| 
									
										
										
										
											2013-09-03 18:58:13 -07:00
										 |  |  |   Writer w; | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |   EXPECT_EQ("1", str(w.Format("{0}") << 1)); | 
					
						
							|  |  |  |   EXPECT_STREQ("12", c_str(w.Format("{0}") << 2)); | 
					
						
							| 
									
										
										
										
											2012-12-11 13:54:53 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  | TEST(FormatterTest, FormatExamples) { | 
					
						
							| 
									
										
										
										
											2013-01-22 11:06:56 -08:00
										 |  |  |   using fmt::hex; | 
					
						
							| 
									
										
										
										
											2013-02-02 20:29:02 -08:00
										 |  |  |   EXPECT_EQ("0000cafe", str(BasicWriter<char>() << pad(hex(0xcafe), 8, '0'))); | 
					
						
							| 
									
										
										
										
											2013-01-22 11:06:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-12 10:08:51 -08:00
										 |  |  |   std::string message = str(Format("The answer is {}") << 42); | 
					
						
							|  |  |  |   EXPECT_EQ("The answer is 42", message); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-04 09:14:34 -08:00
										 |  |  |   EXPECT_EQ("42", str(Format("{}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format(std::string("{}")) << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", str(Format(Format("{{}}")) << 42)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |   Writer writer; | 
					
						
							|  |  |  |   writer.Format("Current point:\n"); | 
					
						
							|  |  |  |   writer.Format("({0:+f}, {1:+f})\n") << -3.14 << 3.14; | 
					
						
							|  |  |  |   EXPECT_EQ("Current point:\n(-3.140000, +3.140000)\n", writer.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++) | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |       writer.Format("{}") << i; | 
					
						
							|  |  |  |     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) | 
					
						
							|  |  |  |       fmt::ThrowSystemError(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-18 14:38:03 -08:00
										 |  |  | TEST(FormatterTest, StrNamespace) { | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |   str(Format("")); | 
					
						
							|  |  |  |   c_str(Format("")); | 
					
						
							| 
									
										
										
										
											2012-12-18 14:38:03 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 13:17:09 -08:00
										 |  |  | TEST(FormatterTest, ExceptionInNestedFormat) { | 
					
						
							|  |  |  |   // Exception in nested format may cause Arg's destructor be called before
 | 
					
						
							|  |  |  |   // the argument has been attached to a Formatter object.
 | 
					
						
							|  |  |  |   EXPECT_THROW(Format(Format("{}")) << 42;, FormatError); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  | TEST(FormatterTest, Ctor) { | 
					
						
							|  |  |  |   fmt::Formatter<> f1("test"); | 
					
						
							|  |  |  |   fmt::Formatter<> f1copy(f1); | 
					
						
							|  |  |  |   fmt::Formatter<> f2("test", fmt::NullSink()); | 
					
						
							|  |  |  |   fmt::Formatter<fmt::NullSink> f3("test"); | 
					
						
							|  |  |  |   fmt::Formatter<fmt::NullSink, wchar_t> f4(L"test"); | 
					
						
							|  |  |  |   fmt::Formatter<fmt::NullSink, wchar_t> f4copy(f4); | 
					
						
							|  |  |  |   fmt::Formatter<fmt::NullSink, wchar_t> f5(L"test", fmt::NullSink()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // A sink that counts the number of times the output is written to it.
 | 
					
						
							|  |  |  | struct CountingSink { | 
					
						
							|  |  |  |   int &num_writes; | 
					
						
							| 
									
										
										
										
											2012-12-11 16:26:04 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-28 19:33:45 -07:00
										 |  |  |   explicit CountingSink(int &num_writes) : num_writes(num_writes) {} | 
					
						
							| 
									
										
										
										
											2012-12-11 16:26:04 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |   void operator()(const Writer &) const { | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  |     ++num_writes; | 
					
						
							| 
									
										
										
										
											2012-12-11 16:26:04 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  | TEST(FormatterTest, Sink) { | 
					
						
							|  |  |  |   int num_writes = 0; | 
					
						
							| 
									
										
										
										
											2012-12-11 16:26:04 -08:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  |     fmt::Formatter<CountingSink> f("test", CountingSink(num_writes)); | 
					
						
							|  |  |  |     EXPECT_EQ(0, num_writes); | 
					
						
							| 
									
										
										
										
											2012-12-11 16:26:04 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  |   EXPECT_EQ(1, num_writes); | 
					
						
							| 
									
										
										
										
											2012-12-11 20:48:49 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-29 07:58:20 -07:00
										 |  |  | TEST(FormatterTest, Move) { | 
					
						
							|  |  |  |   // Test if formatting is performed once if we "move" a formatter.
 | 
					
						
							|  |  |  |   int num_writes = 0; | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     typedef fmt::Formatter<CountingSink> TestFormatter; | 
					
						
							|  |  |  |     TestFormatter *f = new TestFormatter("test", CountingSink(num_writes)); | 
					
						
							|  |  |  |     TestFormatter f2(*f); | 
					
						
							|  |  |  |     delete f; | 
					
						
							|  |  |  |     EXPECT_EQ(0, num_writes); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   EXPECT_EQ(1, num_writes); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  | TEST(FormatterTest, OutputNotWrittenOnError) { | 
					
						
							|  |  |  |   int num_writes = 0; | 
					
						
							| 
									
										
										
										
											2012-12-11 20:48:49 -08:00
										 |  |  |   { | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  |     typedef fmt::Formatter<CountingSink> TestFormatter; | 
					
						
							|  |  |  |     EXPECT_THROW(TestFormatter f("{0", CountingSink(num_writes)), FormatError); | 
					
						
							| 
									
										
										
										
											2012-12-11 20:48:49 -08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  |   EXPECT_EQ(0, num_writes); | 
					
						
							| 
									
										
										
										
											2012-12-11 16:26:04 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-06 06:11:39 -07:00
										 |  |  | #if FMT_USE_FILE_DESCRIPTORS
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-29 08:39:37 -07:00
										 |  |  | TEST(FormatterTest, FileSink) { | 
					
						
							| 
									
										
										
										
											2014-05-06 06:11:39 -07:00
										 |  |  |   File read_end, write_end; | 
					
						
							|  |  |  |   File::pipe(read_end, write_end); | 
					
						
							|  |  |  |   BufferedFile f = write_end.fdopen("w"); | 
					
						
							|  |  |  |   EXPECT_WRITE(f.get(), { | 
					
						
							|  |  |  |     fmt::FileSink fs(f.get()); | 
					
						
							|  |  |  |     fs(Writer() << "test"); | 
					
						
							|  |  |  |   }, "test"); | 
					
						
							| 
									
										
										
										
											2014-04-29 08:39:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-30 06:55:21 -07:00
										 |  |  | TEST(FormatterTest, FileSinkWriteError) { | 
					
						
							| 
									
										
										
										
											2014-05-06 06:11:39 -07:00
										 |  |  |   File read_end, write_end; | 
					
						
							|  |  |  |   File::pipe(read_end, write_end); | 
					
						
							|  |  |  |   BufferedFile f = read_end.fdopen("r"); | 
					
						
							|  |  |  |   fmt::FileSink fs(f.get()); | 
					
						
							| 
									
										
										
										
											2014-05-06 11:29:07 -07:00
										 |  |  |   std::size_t result = std::fwrite(" ", 1, 1, f.get()); | 
					
						
							| 
									
										
										
										
											2014-04-30 06:55:21 -07:00
										 |  |  |   int error_code = errno; | 
					
						
							| 
									
										
										
										
											2014-05-06 11:34:00 -07:00
										 |  |  |   EXPECT_EQ(0u, result); | 
					
						
							| 
									
										
										
										
											2014-05-06 06:11:39 -07:00
										 |  |  |   EXPECT_SYSTEM_ERROR( | 
					
						
							|  |  |  |       fs(Writer() << "test"), error_code, "cannot write to file"); | 
					
						
							| 
									
										
										
										
											2014-04-30 06:55:21 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-06 06:11:39 -07:00
										 |  |  | #else
 | 
					
						
							|  |  |  | # pragma message "warning: some tests are disabled"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-16 10:38:09 -08:00
										 |  |  | // The test doesn't compile on older compilers which follow C++03 and
 | 
					
						
							| 
									
										
										
										
											2012-12-16 13:40:59 -08:00
										 |  |  | // require an accessible copy constructor when binding a temporary to
 | 
					
						
							|  |  |  | // a const reference.
 | 
					
						
							| 
									
										
										
										
											2014-04-27 06:56:12 -07:00
										 |  |  | #if FMT_GCC_VERSION >= 407
 | 
					
						
							| 
									
										
										
										
											2013-09-06 19:32:19 -07:00
										 |  |  | TEST(FormatterTest, ArgLifetime) { | 
					
						
							| 
									
										
										
										
											2012-12-11 16:26:04 -08:00
										 |  |  |   // The following code is for testing purposes only. It is a definite abuse
 | 
					
						
							|  |  |  |   // of the API and shouldn't be used in real applications.
 | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |   const fmt::Formatter<> &af = fmt::Format("{0}"); | 
					
						
							|  |  |  |   const_cast<fmt::Formatter<>&>(af) << std::string("test"); | 
					
						
							| 
									
										
										
										
											2013-09-06 19:32:19 -07:00
										 |  |  |   // String object passed as an argument to Formatter has been destroyed,
 | 
					
						
							|  |  |  |   // but Formatter's dtor hasn't been called yet. That's OK since the Arg's
 | 
					
						
							|  |  |  |   // dtor takes care of this and calls Format.
 | 
					
						
							| 
									
										
										
										
											2012-12-11 16:26:04 -08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-12-16 09:42:00 -08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-12-11 16:26:04 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-06 19:32:19 -07:00
										 |  |  | TEST(FormatterTest, ConvertToStringRef) { | 
					
						
							| 
									
										
										
										
											2012-12-19 10:47:00 -08:00
										 |  |  |   EXPECT_STREQ("abc", StringRef(Format("a{0}c") << 'b').c_str()); | 
					
						
							|  |  |  |   EXPECT_EQ(3u, StringRef(Format("a{0}c") << 'b').size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 13:54:53 -08:00
										 |  |  | struct PrintError { | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  |   void operator()(const fmt::Writer &w) const { | 
					
						
							|  |  |  |     std::cerr << "Error: " << w.str() << std::endl; | 
					
						
							| 
									
										
										
										
											2012-12-11 13:54:53 -08:00
										 |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-04 19:23:55 -07:00
										 |  |  | fmt::Formatter<PrintError> ReportError(const char *format) { | 
					
						
							| 
									
										
										
										
											2013-12-10 08:08:41 -08:00
										 |  |  |   fmt::Formatter<PrintError> f(format); | 
					
						
							|  |  |  |   return f; | 
					
						
							| 
									
										
										
										
											2012-12-10 20:37:35 -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", | 
					
						
							|  |  |  |       str(Format("First, thou shalt count to {0}") << "three")); | 
					
						
							|  |  |  |   EXPECT_EQ("Bring me a shrubbery", | 
					
						
							|  |  |  |       str(Format("Bring me a {}") << "shrubbery")); | 
					
						
							|  |  |  |   EXPECT_EQ("From 1 to 3", str(Format("From {} to {}") << 1 << 3)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-27 14:45:04 -08:00
										 |  |  |   char buffer[BUFFER_SIZE]; | 
					
						
							| 
									
										
										
										
											2013-02-27 14:29:37 -08:00
										 |  |  |   SPrintf(buffer, "%03.2f", -1.2); | 
					
						
							| 
									
										
										
										
											2012-12-28 07:18:30 -08:00
										 |  |  |   EXPECT_EQ(buffer, str(Format("{:03.2f}") << -1.2)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("a, b, c", str(Format("{0}, {1}, {2}") << 'a' << 'b' << 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("a, b, c", str(Format("{}, {}, {}") << 'a' << 'b' << 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("c, b, a", str(Format("{2}, {1}, {0}") << 'a' << 'b' << 'c')); | 
					
						
							|  |  |  |   EXPECT_EQ("abracadabra", str(Format("{0}{1}{0}") << "abra" << "cad")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("left aligned                  ", | 
					
						
							|  |  |  |       str(Format("{:<30}") << "left aligned")); | 
					
						
							|  |  |  |   EXPECT_EQ("                 right aligned", | 
					
						
							|  |  |  |       str(Format("{:>30}") << "right aligned")); | 
					
						
							|  |  |  |   EXPECT_EQ("           centered           ", | 
					
						
							|  |  |  |       str(Format("{:^30}") << "centered")); | 
					
						
							|  |  |  |   EXPECT_EQ("***********centered***********", | 
					
						
							|  |  |  |       str(Format("{:*^30}") << "centered")); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("+3.140000; -3.140000", | 
					
						
							|  |  |  |       str(Format("{:+f}; {:+f}") << 3.14 << -3.14)); | 
					
						
							|  |  |  |   EXPECT_EQ(" 3.140000; -3.140000", | 
					
						
							|  |  |  |       str(Format("{: f}; {: f}") << 3.14 << -3.14)); | 
					
						
							|  |  |  |   EXPECT_EQ("3.140000; -3.140000", | 
					
						
							|  |  |  |       str(Format("{:-f}; {:-f}") << 3.14 << -3.14)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_EQ("int: 42;  hex: 2a;  oct: 52", | 
					
						
							|  |  |  |       str(Format("int: {0:d};  hex: {0:x};  oct: {0:o}") << 42)); | 
					
						
							|  |  |  |   EXPECT_EQ("int: 42;  hex: 0x2a;  oct: 052", | 
					
						
							|  |  |  |       str(Format("int: {0:d};  hex: {0:#x};  oct: {0:#o}") << 42)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 13:54:53 -08:00
										 |  |  |   std::string path = "somefile"; | 
					
						
							|  |  |  |   ReportError("File not found: {0}") << path; | 
					
						
							| 
									
										
										
										
											2014-04-17 19:18:11 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-24 07:32:01 -07:00
										 |  |  | #if FMT_USE_VARIADIC_TEMPLATES && FMT_USE_RVALUE_REFERENCES
 | 
					
						
							| 
									
										
										
										
											2014-05-14 08:20:20 -07:00
										 |  |  |   EXPECT_EQ("The answer is 42", str(Format("The answer is {}", 42))); | 
					
						
							| 
									
										
										
										
											2014-04-17 18:28:45 -07:00
										 |  |  |   EXPECT_THROW_MSG( | 
					
						
							|  |  |  |     Format("The answer is {:d}", "forty-two"), FormatError, | 
					
						
							|  |  |  |     "unknown format code 'd' for string"); | 
					
						
							| 
									
										
										
										
											2014-04-28 19:27:41 -07:00
										 |  |  |   EXPECT_EQ(L"Cyrillic letter \x42e", | 
					
						
							|  |  |  |     str(Format(L"Cyrillic letter {}", L'\x42e'))); | 
					
						
							| 
									
										
										
										
											2014-05-14 06:45:39 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   EXPECT_WRITE(stdout, | 
					
						
							|  |  |  |       fmt::Print("{}", std::numeric_limits<double>::infinity()), "inf"); | 
					
						
							| 
									
										
										
										
											2014-04-17 19:18:11 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											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> | 
					
						
							|  |  |  | std::string FormatDec(T value) { | 
					
						
							| 
									
										
										
										
											2014-02-14 10:36:17 -08:00
										 |  |  |   char buffer[10]; | 
					
						
							|  |  |  |   char *ptr = buffer; | 
					
						
							| 
									
										
										
										
											2014-02-19 12:43:55 -08:00
										 |  |  |   fmt::FormatDec(ptr, value); | 
					
						
							|  |  |  |   return std::string(buffer, ptr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(FormatIntTest, FormatDec) { | 
					
						
							| 
									
										
										
										
											2014-02-20 07:04:54 -08:00
										 |  |  |   EXPECT_EQ("-42", FormatDec(static_cast<char>(-42))); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", FormatDec(static_cast<short>(-42))); | 
					
						
							|  |  |  |   std::ostringstream os; | 
					
						
							|  |  |  |   os << std::numeric_limits<unsigned short>::max(); | 
					
						
							|  |  |  |   EXPECT_EQ(os.str(), FormatDec(std::numeric_limits<unsigned short>::max())); | 
					
						
							| 
									
										
										
										
											2014-02-20 21:05:46 -08:00
										 |  |  |   EXPECT_EQ("1", FormatDec(1)); | 
					
						
							|  |  |  |   EXPECT_EQ("-1", FormatDec(-1)); | 
					
						
							| 
									
										
										
										
											2014-02-19 12:43:55 -08:00
										 |  |  |   EXPECT_EQ("42", FormatDec(42)); | 
					
						
							|  |  |  |   EXPECT_EQ("-42", FormatDec(-42)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", FormatDec(42l)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", FormatDec(42ul)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", FormatDec(42ll)); | 
					
						
							|  |  |  |   EXPECT_EQ("42", FormatDec(42ull)); | 
					
						
							| 
									
										
										
										
											2014-02-14 10:36:17 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-06 06:11:39 -07:00
										 |  |  | #if FMT_USE_FILE_DESCRIPTORS
 | 
					
						
							| 
									
										
										
										
											2014-05-01 16:49:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-06 08:05:51 -07:00
										 |  |  | TEST(FormatTest, Print) { | 
					
						
							|  |  |  |   EXPECT_WRITE(stdout, fmt::Print("Don't {}!") << "panic", "Don't panic!"); | 
					
						
							|  |  |  |   EXPECT_WRITE(stderr, | 
					
						
							|  |  |  |       fmt::Print(stderr, "Don't {}!") << "panic", "Don't panic!"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if FMT_USE_VARIADIC_TEMPLATES && FMT_USE_RVALUE_REFERENCES
 | 
					
						
							|  |  |  | TEST(FormatTest, PrintVariadic) { | 
					
						
							|  |  |  |   EXPECT_WRITE(stdout, fmt::Print("Don't {}!", "panic"), "Don't panic!"); | 
					
						
							|  |  |  |   EXPECT_WRITE(stderr, | 
					
						
							|  |  |  |       fmt::Print(stderr, "Don't {}!", "panic"), "Don't panic!"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif  // FMT_USE_VARIADIC_TEMPLATES
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  | TEST(FormatTest, PrintColored) { | 
					
						
							| 
									
										
										
										
											2014-05-05 08:35:59 -07:00
										 |  |  |   EXPECT_WRITE(stdout, fmt::PrintColored(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
										 |  |  | #if FMT_USE_VARIADIC_TEMPLATES && FMT_USE_RVALUE_REFERENCES
 | 
					
						
							|  |  |  | TEST(FormatTest, Variadic) { | 
					
						
							| 
									
										
										
										
											2014-05-06 08:05:51 -07:00
										 |  |  |   EXPECT_EQ("abc1", str(Format("{}c{}", "ab", 1))); | 
					
						
							|  |  |  |   EXPECT_EQ(L"abc1", str(Format(L"{}c{}", L"ab", 1))); | 
					
						
							| 
									
										
										
										
											2014-04-28 08:59:29 -07:00
										 |  |  | } | 
					
						
							|  |  |  | #endif  // FMT_USE_VARIADIC_TEMPLATES
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-17 21:13:54 -08:00
										 |  |  | template <typename T> | 
					
						
							|  |  |  | std::string str(const T &value) { | 
					
						
							| 
									
										
										
										
											2012-12-18 14:38:03 -08:00
										 |  |  |   return fmt::str(fmt::Format("{0}") << 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); | 
					
						
							|  |  |  | } |