| 
									
										
										
										
											2018-03-04 09:16:51 -08:00
										 |  |  | // Formatting library for C++ - std::ostream support tests
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // Copyright (c) 2012 - present, Victor Zverovich
 | 
					
						
							|  |  |  | // All rights reserved.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // For the license information refer to format.h.
 | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-08 09:55:41 -07:00
										 |  |  | #define FMT_STRING_ALIAS 1
 | 
					
						
							| 
									
										
										
										
											2019-04-19 17:02:31 -07:00
										 |  |  | #include "fmt/format.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct test {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Test that there is no issues with specializations when fmt/ostream.h is
 | 
					
						
							|  |  |  | // included after fmt/format.h.
 | 
					
						
							|  |  |  | namespace fmt { | 
					
						
							|  |  |  | template <> struct formatter<test> : formatter<int> { | 
					
						
							|  |  |  |   template <typename FormatContext> | 
					
						
							|  |  |  |   typename FormatContext::iterator format(const test&, FormatContext& ctx) { | 
					
						
							|  |  |  |     return formatter<int>::format(42, ctx); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | }  // namespace fmt
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-03 08:52:05 -07:00
										 |  |  | #include "fmt/ostream.h"
 | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <sstream>
 | 
					
						
							| 
									
										
										
										
											2018-06-06 16:57:59 +03:00
										 |  |  | #include "gmock.h"
 | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | #include "gtest-extra.h"
 | 
					
						
							|  |  |  | #include "util.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using fmt::format; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:38:07 -07:00
										 |  |  | using fmt::format_error; | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | static std::ostream& operator<<(std::ostream& os, const Date& d) { | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |   os << d.year() << '-' << d.month() << '-' << d.day(); | 
					
						
							|  |  |  |   return os; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | static std::wostream& operator<<(std::wostream& os, const Date& d) { | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |   os << d.year() << L'-' << d.month() << L'-' << d.day(); | 
					
						
							|  |  |  |   return os; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-02-06 19:45:14 +09:00
										 |  |  | // Make sure that overloaded comma operators do no harm to is_streamable.
 | 
					
						
							|  |  |  | struct type_with_comma_op {}; | 
					
						
							|  |  |  | template <typename T> void operator,(type_with_comma_op, const T&); | 
					
						
							|  |  |  | template <typename T> type_with_comma_op operator<<(T&, const Date&); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-07 07:08:04 -07:00
										 |  |  | enum streamable_enum {}; | 
					
						
							|  |  |  | static std::ostream& operator<<(std::ostream& os, streamable_enum) { | 
					
						
							|  |  |  |   return os << "streamable_enum"; | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-07 07:08:04 -07:00
										 |  |  | static std::wostream& operator<<(std::wostream& os, streamable_enum) { | 
					
						
							|  |  |  |   return os << L"streamable_enum"; | 
					
						
							| 
									
										
										
										
											2018-04-26 20:32:14 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-07 07:08:04 -07:00
										 |  |  | enum unstreamable_enum {}; | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(OStreamTest, Enum) { | 
					
						
							| 
									
										
										
										
											2019-06-07 07:08:04 -07:00
										 |  |  |   EXPECT_EQ("streamable_enum", fmt::format("{}", streamable_enum())); | 
					
						
							|  |  |  |   EXPECT_EQ("0", fmt::format("{}", unstreamable_enum())); | 
					
						
							|  |  |  |   EXPECT_EQ(L"streamable_enum", fmt::format(L"{}", streamable_enum())); | 
					
						
							|  |  |  |   EXPECT_EQ(L"0", fmt::format(L"{}", unstreamable_enum())); | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-28 06:18:34 -07:00
										 |  |  | using range = fmt::buffer_range<char>; | 
					
						
							| 
									
										
										
										
											2018-01-21 14:30:38 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | struct test_arg_formatter : fmt::arg_formatter<range> { | 
					
						
							| 
									
										
										
										
											2019-02-09 19:34:42 -08:00
										 |  |  |   fmt::format_parse_context parse_ctx; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   test_arg_formatter(fmt::format_context& ctx, fmt::format_specs& s) | 
					
						
							| 
									
										
										
										
											2019-02-09 19:34:42 -08:00
										 |  |  |       : fmt::arg_formatter<range>(ctx, &parse_ctx, &s), parse_ctx("") {} | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(OStreamTest, CustomArg) { | 
					
						
							| 
									
										
										
										
											2017-02-18 09:13:12 -08:00
										 |  |  |   fmt::memory_buffer buffer; | 
					
						
							| 
									
										
										
										
											2019-04-07 10:05:49 -07:00
										 |  |  |   fmt::internal::buffer<char>& base = buffer; | 
					
						
							| 
									
										
										
										
											2019-02-09 19:34:42 -08:00
										 |  |  |   fmt::format_context ctx(std::back_inserter(base), fmt::format_args()); | 
					
						
							| 
									
										
										
										
											2017-01-28 12:51:35 +00:00
										 |  |  |   fmt::format_specs spec; | 
					
						
							| 
									
										
										
										
											2018-01-15 08:22:31 -08:00
										 |  |  |   test_arg_formatter af(ctx, spec); | 
					
						
							| 
									
										
										
										
											2019-01-31 23:47:57 -05:00
										 |  |  |   fmt::visit_format_arg( | 
					
						
							| 
									
										
										
										
											2019-06-07 07:08:04 -07:00
										 |  |  |       af, fmt::internal::make_arg<fmt::format_context>(streamable_enum())); | 
					
						
							|  |  |  |   EXPECT_EQ("streamable_enum", std::string(buffer.data(), buffer.size())); | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(OStreamTest, Format) { | 
					
						
							|  |  |  |   EXPECT_EQ("a string", format("{0}", TestString("a string"))); | 
					
						
							|  |  |  |   std::string s = format("The date is {0}", Date(2012, 12, 9)); | 
					
						
							|  |  |  |   EXPECT_EQ("The date is 2012-12-9", s); | 
					
						
							|  |  |  |   Date date(2012, 12, 9); | 
					
						
							|  |  |  |   EXPECT_EQ(L"The date is 2012-12-9", | 
					
						
							|  |  |  |             format(L"The date is {0}", Date(2012, 12, 9))); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(OStreamTest, FormatSpecs) { | 
					
						
							|  |  |  |   EXPECT_EQ("def  ", format("{0:<5}", TestString("def"))); | 
					
						
							|  |  |  |   EXPECT_EQ("  def", format("{0:>5}", TestString("def"))); | 
					
						
							| 
									
										
										
										
											2019-09-06 07:12:35 -07:00
										 |  |  | #if FMT_NUMERIC_ALIGN
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:=5}", TestString("def")), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2019-09-06 07:12:35 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |   EXPECT_EQ(" def ", format("{0:^5}", TestString("def"))); | 
					
						
							|  |  |  |   EXPECT_EQ("def**", format("{0:*<5}", TestString("def"))); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   EXPECT_THROW_MSG(format("{0:+}", TestString()), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:-}", TestString()), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0: }", TestString()), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:#}", TestString()), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							|  |  |  |   EXPECT_THROW_MSG(format("{0:05}", TestString()), format_error, | 
					
						
							|  |  |  |                    "format specifier requires numeric argument"); | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |   EXPECT_EQ("test         ", format("{0:13}", TestString("test"))); | 
					
						
							|  |  |  |   EXPECT_EQ("test         ", format("{0:{1}}", TestString("test"), 13)); | 
					
						
							|  |  |  |   EXPECT_EQ("te", format("{0:.2}", TestString("test"))); | 
					
						
							|  |  |  |   EXPECT_EQ("te", format("{0:.{1}}", TestString("test"), 2)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct EmptyTest {}; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | static std::ostream& operator<<(std::ostream& os, EmptyTest) { | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |   return os << ""; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(OStreamTest, EmptyCustomOutput) { | 
					
						
							|  |  |  |   EXPECT_EQ("", fmt::format("{}", EmptyTest())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(OStreamTest, Print) { | 
					
						
							|  |  |  |   std::ostringstream os; | 
					
						
							|  |  |  |   fmt::print(os, "Don't {}!", "panic"); | 
					
						
							|  |  |  |   EXPECT_EQ("Don't panic!", os.str()); | 
					
						
							| 
									
										
										
										
											2018-04-26 20:32:14 +02:00
										 |  |  |   std::wostringstream wos; | 
					
						
							|  |  |  |   fmt::print(wos, L"Don't {}!", L"panic"); | 
					
						
							|  |  |  |   EXPECT_EQ(L"Don't panic!", wos.str()); | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(OStreamTest, WriteToOStream) { | 
					
						
							|  |  |  |   std::ostringstream os; | 
					
						
							| 
									
										
										
										
											2017-02-18 09:13:12 -08:00
										 |  |  |   fmt::memory_buffer buffer; | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   const char* foo = "foo"; | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  |   buffer.append(foo, foo + std::strlen(foo)); | 
					
						
							|  |  |  |   fmt::internal::write(os, buffer); | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |   EXPECT_EQ("foo", os.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(OStreamTest, WriteToOStreamMaxSize) { | 
					
						
							| 
									
										
										
										
											2019-09-08 09:04:09 -07:00
										 |  |  |   std::size_t max_size = fmt::internal::max_value<std::size_t>(); | 
					
						
							|  |  |  |   std::streamsize max_streamsize = fmt::internal::max_value<std::streamsize>(); | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |   if (max_size <= fmt::internal::to_unsigned(max_streamsize)) return; | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-07 10:05:49 -07:00
										 |  |  |   struct test_buffer : fmt::internal::buffer<char> { | 
					
						
							| 
									
										
										
										
											2018-01-14 12:25:03 -08:00
										 |  |  |     explicit test_buffer(std::size_t size) { resize(size); } | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  |     void grow(std::size_t) {} | 
					
						
							|  |  |  |   } buffer(max_size); | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-14 12:25:03 -08:00
										 |  |  |   struct mock_streambuf : std::streambuf { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |     MOCK_METHOD2(xsputn, std::streamsize(const void* s, std::streamsize n)); | 
					
						
							|  |  |  |     std::streamsize xsputn(const char* s, std::streamsize n) { | 
					
						
							|  |  |  |       const void* v = s; | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |       return xsputn(v, n); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  |   } streambuf; | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-14 12:25:03 -08:00
										 |  |  |   struct test_ostream : std::ostream { | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  |     explicit test_ostream(mock_streambuf& buffer) : std::ostream(&buffer) {} | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  |   } os(streambuf); | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   testing::InSequence sequence; | 
					
						
							| 
									
										
										
										
											2019-05-30 07:01:31 -07:00
										 |  |  |   const char* data = nullptr; | 
					
						
							| 
									
										
										
										
											2018-12-05 07:11:06 -08:00
										 |  |  |   typedef std::make_unsigned<std::streamsize>::type ustreamsize; | 
					
						
							|  |  |  |   ustreamsize size = max_size; | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |   do { | 
					
						
							| 
									
										
										
										
											2018-12-05 07:11:06 -08:00
										 |  |  |     auto n = std::min(size, fmt::internal::to_unsigned(max_streamsize)); | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  |     EXPECT_CALL(streambuf, xsputn(data, static_cast<std::streamsize>(n))) | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |         .WillOnce(testing::Return(max_streamsize)); | 
					
						
							|  |  |  |     data += n; | 
					
						
							| 
									
										
										
										
											2019-02-02 20:24:07 -05:00
										 |  |  |     size -= n; | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |   } while (size != 0); | 
					
						
							| 
									
										
										
										
											2017-02-14 16:29:47 -05:00
										 |  |  |   fmt::internal::write(os, buffer); | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-05-21 20:21:06 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(OStreamTest, Join) { | 
					
						
							|  |  |  |   int v[3] = {1, 2, 3}; | 
					
						
							|  |  |  |   EXPECT_EQ("1, 2, 3", fmt::format("{}", fmt::join(v, v + 3, ", "))); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-06-10 19:05:27 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-04 13:17:03 -07:00
										 |  |  | #if FMT_USE_CONSTEXPR
 | 
					
						
							| 
									
										
										
										
											2018-06-10 19:05:27 +02:00
										 |  |  | TEST(OStreamTest, ConstexprString) { | 
					
						
							| 
									
										
										
										
											2019-11-19 10:20:31 -08:00
										 |  |  |   EXPECT_EQ("42", format(FMT_STRING("{}"), std::string("42"))); | 
					
						
							|  |  |  |   EXPECT_EQ("a string", format(FMT_STRING("{0}"), TestString("a string"))); | 
					
						
							| 
									
										
										
										
											2018-06-10 19:05:27 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2018-07-04 13:17:03 -07:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:49:44 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace fmt_test { | 
					
						
							|  |  |  | struct ABC {}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | template <typename Output> Output& operator<<(Output& out, ABC) { | 
					
						
							| 
									
										
										
										
											2018-07-09 15:49:44 +02:00
										 |  |  |   out << "ABC"; | 
					
						
							|  |  |  |   return out; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-01-12 18:27:38 -08:00
										 |  |  | }  // namespace fmt_test
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:49:44 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-31 23:47:57 -05:00
										 |  |  | template <typename T> struct TestTemplate {}; | 
					
						
							| 
									
										
										
										
											2019-01-21 07:11:49 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | template <typename T> | 
					
						
							|  |  |  | std::ostream& operator<<(std::ostream& os, TestTemplate<T>) { | 
					
						
							|  |  |  |   return os << 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace fmt { | 
					
						
							| 
									
										
										
										
											2019-01-31 23:47:57 -05:00
										 |  |  | template <typename T> struct formatter<TestTemplate<T>> : formatter<int> { | 
					
						
							| 
									
										
										
										
											2019-01-21 07:11:49 -08:00
										 |  |  |   template <typename FormatContext> | 
					
						
							|  |  |  |   typename FormatContext::iterator format(TestTemplate<T>, FormatContext& ctx) { | 
					
						
							|  |  |  |     return formatter<int>::format(2, ctx); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2019-01-31 23:47:57 -05:00
										 |  |  | }  // namespace fmt
 | 
					
						
							| 
									
										
										
										
											2019-01-21 07:11:49 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !FMT_GCC_VERSION || FMT_GCC_VERSION >= 407
 | 
					
						
							|  |  |  | TEST(OStreamTest, Template) { | 
					
						
							|  |  |  |   EXPECT_EQ("2", fmt::format("{}", TestTemplate<int>())); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-09 15:49:44 +02:00
										 |  |  | TEST(FormatTest, FormatToN) { | 
					
						
							|  |  |  |   char buffer[4]; | 
					
						
							|  |  |  |   buffer[3] = 'x'; | 
					
						
							|  |  |  |   auto result = fmt::format_to_n(buffer, 3, "{}", fmt_test::ABC()); | 
					
						
							|  |  |  |   EXPECT_EQ(3u, result.size); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer + 3, result.out); | 
					
						
							|  |  |  |   EXPECT_EQ("ABCx", fmt::string_view(buffer, 4)); | 
					
						
							|  |  |  |   result = fmt::format_to_n(buffer, 3, "x{}y", fmt_test::ABC()); | 
					
						
							|  |  |  |   EXPECT_EQ(5u, result.size); | 
					
						
							|  |  |  |   EXPECT_EQ(buffer + 3, result.out); | 
					
						
							|  |  |  |   EXPECT_EQ("xABx", fmt::string_view(buffer, 4)); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2019-01-21 07:11:49 -08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2018-08-11 09:13:54 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if FMT_USE_USER_DEFINED_LITERALS
 | 
					
						
							|  |  |  | TEST(FormatTest, UDL) { | 
					
						
							|  |  |  |   using namespace fmt::literals; | 
					
						
							|  |  |  |   EXPECT_EQ("{}"_format("test"), "test"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2019-09-23 11:45:07 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | template <typename T> | 
					
						
							|  |  |  | struct convertible { | 
					
						
							|  |  |  |   T value; | 
					
						
							|  |  |  |   explicit convertible(const T& val) : value(val) {} | 
					
						
							|  |  |  |   operator T() const { return value; } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-09-23 20:34:08 -07:00
										 |  |  | TEST(OStreamTest, DisableBuiltinOStreamOperators) { | 
					
						
							|  |  |  |   EXPECT_EQ("42", fmt::format("{:d}", convertible<unsigned short>(42))); | 
					
						
							|  |  |  |   EXPECT_EQ(L"42", fmt::format(L"{:d}", convertible<unsigned short>(42))); | 
					
						
							| 
									
										
										
										
											2019-09-23 11:45:07 -07:00
										 |  |  |   EXPECT_EQ("foo", fmt::format("{}", convertible<const char*>("foo"))); | 
					
						
							|  |  |  | } |