| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  Utility tests. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  Copyright (c) 2012-2014, Victor Zverovich | 
					
						
							|  |  |  |  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. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-22 08:17:23 -07:00
										 |  |  | #include "test-assert.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | #include <cfloat>
 | 
					
						
							|  |  |  | #include <climits>
 | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | #include <cstring>
 | 
					
						
							| 
									
										
										
										
											2015-10-22 08:56:52 -07:00
										 |  |  | #include <functional>
 | 
					
						
							| 
									
										
										
										
											2014-06-06 08:07:05 -07:00
										 |  |  | #include <limits>
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if FMT_USE_TYPE_TRAITS
 | 
					
						
							|  |  |  | # include <type_traits>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "gmock/gmock.h"
 | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | #include "gtest-extra.h"
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | #include "mock-allocator.h"
 | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | #include "util.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 07:29:57 -07:00
										 |  |  | // Check if format.h compiles with windows.h included.
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | # include <windows.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-24 09:06:12 -07:00
										 |  |  | #include "fmt/format.h"
 | 
					
						
							| 
									
										
										
										
											2014-06-06 07:29:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 08:18:53 -07:00
										 |  |  | #undef max
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | using fmt::StringRef; | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | using fmt::internal::Arg; | 
					
						
							| 
									
										
										
										
											2015-03-20 06:31:24 -07:00
										 |  |  | using fmt::Buffer; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | using fmt::internal::MemoryBuffer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | using testing::Return; | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  | using testing::StrictMock; | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | namespace { | 
					
						
							| 
									
										
										
										
											2014-07-04 07:18:44 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct Test {}; | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-16 07:55:31 -07:00
										 |  |  | template <typename Char> | 
					
						
							| 
									
										
										
										
											2016-08-14 07:28:20 -07:00
										 |  |  | void format_arg(fmt::BasicFormatter<Char> &f, const Char *, Test) { | 
					
						
							| 
									
										
										
										
											2016-05-06 07:37:20 -07:00
										 |  |  |   f.writer() << "test"; | 
					
						
							| 
									
										
										
										
											2014-07-16 07:55:31 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | template <typename Char, typename T> | 
					
						
							|  |  |  | Arg make_arg(const T &value) { | 
					
						
							| 
									
										
										
										
											2015-12-02 08:41:05 -08:00
										 |  |  |   typedef fmt::internal::MakeValue< fmt::BasicFormatter<Char> > MakeValue; | 
					
						
							|  |  |  |   Arg arg = MakeValue(value); | 
					
						
							| 
									
										
										
										
											2016-08-26 08:50:09 -07:00
										 |  |  |   arg.type = fmt::internal::type<T>(); | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  |   return arg; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | }  // namespace
 | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | void CheckForwarding( | 
					
						
							|  |  |  |     MockAllocator<int> &alloc, AllocatorRef< MockAllocator<int> > &ref) { | 
					
						
							|  |  |  |   int mem; | 
					
						
							|  |  |  |   // Check if value_type is properly defined.
 | 
					
						
							|  |  |  |   AllocatorRef< MockAllocator<int> >::value_type *ptr = &mem; | 
					
						
							|  |  |  |   // Check forwarding.
 | 
					
						
							|  |  |  |   EXPECT_CALL(alloc, allocate(42)).WillOnce(Return(ptr)); | 
					
						
							|  |  |  |   ref.allocate(42); | 
					
						
							|  |  |  |   EXPECT_CALL(alloc, deallocate(ptr, 42)); | 
					
						
							|  |  |  |   ref.deallocate(ptr, 42); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(AllocatorTest, AllocatorRef) { | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  |   StrictMock< MockAllocator<int> > alloc; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   typedef AllocatorRef< MockAllocator<int> > TestAllocatorRef; | 
					
						
							|  |  |  |   TestAllocatorRef ref(&alloc); | 
					
						
							|  |  |  |   // Check if AllocatorRef forwards to the underlying allocator.
 | 
					
						
							|  |  |  |   CheckForwarding(alloc, ref); | 
					
						
							|  |  |  |   TestAllocatorRef ref2(ref); | 
					
						
							|  |  |  |   CheckForwarding(alloc, ref2); | 
					
						
							|  |  |  |   TestAllocatorRef ref3; | 
					
						
							|  |  |  |   EXPECT_EQ(0, ref3.get()); | 
					
						
							|  |  |  |   ref3 = ref; | 
					
						
							|  |  |  |   CheckForwarding(alloc, ref3); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if FMT_USE_TYPE_TRAITS
 | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  | TEST(BufferTest, Noncopyable) { | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  |   EXPECT_FALSE(std::is_copy_constructible<Buffer<char> >::value); | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   EXPECT_FALSE(std::is_copy_assignable<Buffer<char> >::value); | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  | TEST(BufferTest, Nonmoveable) { | 
					
						
							|  |  |  |   EXPECT_FALSE(std::is_move_constructible<Buffer<char> >::value); | 
					
						
							|  |  |  |   EXPECT_FALSE(std::is_move_assignable<Buffer<char> >::value); | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  | // A test buffer with a dummy grow method.
 | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  | template <typename T> | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  | struct TestBuffer : Buffer<T> { | 
					
						
							|  |  |  |   void grow(std::size_t size) { this->capacity_ = size; } | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  | template <typename T> | 
					
						
							|  |  |  | struct MockBuffer : Buffer<T> { | 
					
						
							| 
									
										
										
										
											2014-10-01 09:32:31 -07:00
										 |  |  |   MOCK_METHOD1(do_grow, void (std::size_t size)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   void grow(std::size_t size) { | 
					
						
							|  |  |  |     this->capacity_ = size; | 
					
						
							|  |  |  |     do_grow(size); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   MockBuffer() {} | 
					
						
							|  |  |  |   MockBuffer(T *ptr) : Buffer<T>(ptr) {} | 
					
						
							|  |  |  |   MockBuffer(T *ptr, std::size_t capacity) : Buffer<T>(ptr, capacity) {} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(BufferTest, Ctor) { | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     MockBuffer<int> buffer; | 
					
						
							|  |  |  |     EXPECT_EQ(0, &buffer[0]); | 
					
						
							| 
									
										
										
										
											2014-10-13 06:46:07 -07:00
										 |  |  |     EXPECT_EQ(0u, buffer.size()); | 
					
						
							|  |  |  |     EXPECT_EQ(0u, buffer.capacity()); | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     int dummy; | 
					
						
							|  |  |  |     MockBuffer<int> buffer(&dummy); | 
					
						
							|  |  |  |     EXPECT_EQ(&dummy, &buffer[0]); | 
					
						
							| 
									
										
										
										
											2014-10-13 06:46:07 -07:00
										 |  |  |     EXPECT_EQ(0u, buffer.size()); | 
					
						
							|  |  |  |     EXPECT_EQ(0u, buffer.capacity()); | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  |   } | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     int dummy; | 
					
						
							|  |  |  |     std::size_t capacity = std::numeric_limits<std::size_t>::max(); | 
					
						
							|  |  |  |     MockBuffer<int> buffer(&dummy, capacity); | 
					
						
							|  |  |  |     EXPECT_EQ(&dummy, &buffer[0]); | 
					
						
							| 
									
										
										
										
											2014-10-13 06:46:07 -07:00
										 |  |  |     EXPECT_EQ(0u, buffer.size()); | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  |     EXPECT_EQ(capacity, buffer.capacity()); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 08:24:47 -07:00
										 |  |  | struct DyingBuffer : TestBuffer<int> { | 
					
						
							|  |  |  |   MOCK_METHOD0(die, void()); | 
					
						
							|  |  |  |   ~DyingBuffer() { die(); } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  | TEST(BufferTest, VirtualDtor) { | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   typedef StrictMock<DyingBuffer> StictMockBuffer; | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  |   StictMockBuffer *mock_buffer = new StictMockBuffer(); | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   EXPECT_CALL(*mock_buffer, die()); | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  |   Buffer<int> *buffer = mock_buffer; | 
					
						
							|  |  |  |   delete buffer; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(BufferTest, Access) { | 
					
						
							|  |  |  |   char data[10]; | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   MockBuffer<char> buffer(data, sizeof(data)); | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  |   buffer[0] = 11; | 
					
						
							|  |  |  |   EXPECT_EQ(11, buffer[0]); | 
					
						
							|  |  |  |   buffer[3] = 42; | 
					
						
							|  |  |  |   EXPECT_EQ(42, *(&buffer[0] + 3)); | 
					
						
							|  |  |  |   const Buffer<char> &const_buffer = buffer; | 
					
						
							|  |  |  |   EXPECT_EQ(42, const_buffer[3]); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  | TEST(BufferTest, Resize) { | 
					
						
							|  |  |  |   char data[123]; | 
					
						
							|  |  |  |   MockBuffer<char> buffer(data, sizeof(data)); | 
					
						
							|  |  |  |   buffer[10] = 42; | 
					
						
							|  |  |  |   EXPECT_EQ(42, buffer[10]); | 
					
						
							|  |  |  |   buffer.resize(20); | 
					
						
							|  |  |  |   EXPECT_EQ(20u, buffer.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(123u, buffer.capacity()); | 
					
						
							|  |  |  |   EXPECT_EQ(42, buffer[10]); | 
					
						
							|  |  |  |   buffer.resize(5); | 
					
						
							|  |  |  |   EXPECT_EQ(5u, buffer.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(123u, buffer.capacity()); | 
					
						
							|  |  |  |   EXPECT_EQ(42, buffer[10]); | 
					
						
							|  |  |  |   // Check if resize calls grow.
 | 
					
						
							| 
									
										
										
										
											2014-10-01 09:32:31 -07:00
										 |  |  |   EXPECT_CALL(buffer, do_grow(124)); | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   buffer.resize(124); | 
					
						
							| 
									
										
										
										
											2014-10-01 09:32:31 -07:00
										 |  |  |   EXPECT_CALL(buffer, do_grow(200)); | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   buffer.resize(200); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(BufferTest, Clear) { | 
					
						
							|  |  |  |   TestBuffer<char> buffer; | 
					
						
							|  |  |  |   buffer.resize(20); | 
					
						
							|  |  |  |   buffer.clear(); | 
					
						
							|  |  |  |   EXPECT_EQ(0u, buffer.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(20u, buffer.capacity()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(BufferTest, PushBack) { | 
					
						
							|  |  |  |   int data[15]; | 
					
						
							|  |  |  |   MockBuffer<int> buffer(data, 10); | 
					
						
							|  |  |  |   buffer.push_back(11); | 
					
						
							|  |  |  |   EXPECT_EQ(11, buffer[0]); | 
					
						
							|  |  |  |   EXPECT_EQ(1u, buffer.size()); | 
					
						
							|  |  |  |   buffer.resize(10); | 
					
						
							| 
									
										
										
										
											2014-10-01 09:32:31 -07:00
										 |  |  |   EXPECT_CALL(buffer, do_grow(11)); | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   buffer.push_back(22); | 
					
						
							|  |  |  |   EXPECT_EQ(22, buffer[10]); | 
					
						
							|  |  |  |   EXPECT_EQ(11u, buffer.size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(BufferTest, Append) { | 
					
						
							|  |  |  |   char data[15]; | 
					
						
							|  |  |  |   MockBuffer<char> buffer(data, 10); | 
					
						
							|  |  |  |   const char *test = "test"; | 
					
						
							|  |  |  |   buffer.append(test, test + 5); | 
					
						
							|  |  |  |   EXPECT_STREQ(test, &buffer[0]); | 
					
						
							|  |  |  |   EXPECT_EQ(5u, buffer.size()); | 
					
						
							|  |  |  |   buffer.resize(10); | 
					
						
							| 
									
										
										
										
											2014-10-01 09:32:31 -07:00
										 |  |  |   EXPECT_CALL(buffer, do_grow(12)); | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   buffer.append(test, test + 2); | 
					
						
							|  |  |  |   EXPECT_EQ('t', buffer[10]); | 
					
						
							|  |  |  |   EXPECT_EQ('e', buffer[11]); | 
					
						
							|  |  |  |   EXPECT_EQ(12u, buffer.size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(BufferTest, AppendAllocatesEnoughStorage) { | 
					
						
							|  |  |  |   char data[19]; | 
					
						
							|  |  |  |   MockBuffer<char> buffer(data, 10); | 
					
						
							|  |  |  |   const char *test = "abcdefgh"; | 
					
						
							|  |  |  |   buffer.resize(10); | 
					
						
							| 
									
										
										
										
											2014-10-01 09:32:31 -07:00
										 |  |  |   EXPECT_CALL(buffer, do_grow(19)); | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   buffer.append(test, test + 9); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | TEST(MemoryBufferTest, Ctor) { | 
					
						
							|  |  |  |   MemoryBuffer<char, 123> buffer; | 
					
						
							|  |  |  |   EXPECT_EQ(0u, buffer.size()); | 
					
						
							|  |  |  |   EXPECT_EQ(123u, buffer.capacity()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if FMT_USE_RVALUE_REFERENCES
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef AllocatorRef< std::allocator<char> > TestAllocator; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void check_move_buffer(const char *str, | 
					
						
							|  |  |  |                        MemoryBuffer<char, 5, TestAllocator> &buffer) { | 
					
						
							|  |  |  |   std::allocator<char> *alloc = buffer.get_allocator().get(); | 
					
						
							|  |  |  |   MemoryBuffer<char, 5, TestAllocator> buffer2(std::move(buffer)); | 
					
						
							|  |  |  |   // Move shouldn't destroy the inline content of the first buffer.
 | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&buffer[0], buffer.size())); | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&buffer2[0], buffer2.size())); | 
					
						
							| 
									
										
										
										
											2014-10-14 03:28:47 +07:00
										 |  |  |   EXPECT_EQ(5u, buffer2.capacity()); | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   // Move should transfer allocator.
 | 
					
						
							|  |  |  |   EXPECT_EQ(0, buffer.get_allocator().get()); | 
					
						
							|  |  |  |   EXPECT_EQ(alloc, buffer2.get_allocator().get()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(MemoryBufferTest, MoveCtor) { | 
					
						
							|  |  |  |   std::allocator<char> alloc; | 
					
						
							|  |  |  |   MemoryBuffer<char, 5, TestAllocator> buffer((TestAllocator(&alloc))); | 
					
						
							|  |  |  |   const char test[] = "test"; | 
					
						
							|  |  |  |   buffer.append(test, test + 4); | 
					
						
							|  |  |  |   check_move_buffer("test", buffer); | 
					
						
							|  |  |  |   // Adding one more character fills the inline buffer, but doesn't cause
 | 
					
						
							|  |  |  |   // dynamic allocation.
 | 
					
						
							|  |  |  |   buffer.push_back('a'); | 
					
						
							|  |  |  |   check_move_buffer("testa", buffer); | 
					
						
							|  |  |  |   const char *inline_buffer_ptr = &buffer[0]; | 
					
						
							|  |  |  |   // Adding one more character causes the content to move from the inline to
 | 
					
						
							|  |  |  |   // a dynamically allocated buffer.
 | 
					
						
							|  |  |  |   buffer.push_back('b'); | 
					
						
							|  |  |  |   MemoryBuffer<char, 5, TestAllocator> buffer2(std::move(buffer)); | 
					
						
							|  |  |  |   // Move should rip the guts of the first buffer.
 | 
					
						
							|  |  |  |   EXPECT_EQ(inline_buffer_ptr, &buffer[0]); | 
					
						
							|  |  |  |   EXPECT_EQ("testab", std::string(&buffer2[0], buffer2.size())); | 
					
						
							|  |  |  |   EXPECT_GT(buffer2.capacity(), 5u); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void check_move_assign_buffer(const char *str, MemoryBuffer<char, 5> &buffer) { | 
					
						
							|  |  |  |   MemoryBuffer<char, 5> buffer2; | 
					
						
							|  |  |  |   buffer2 = std::move(buffer); | 
					
						
							|  |  |  |   // Move shouldn't destroy the inline content of the first buffer.
 | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&buffer[0], buffer.size())); | 
					
						
							|  |  |  |   EXPECT_EQ(str, std::string(&buffer2[0], buffer2.size())); | 
					
						
							| 
									
										
										
										
											2014-10-14 03:28:47 +07:00
										 |  |  |   EXPECT_EQ(5u, buffer2.capacity()); | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(MemoryBufferTest, MoveAssignment) { | 
					
						
							|  |  |  |   MemoryBuffer<char, 5> buffer; | 
					
						
							|  |  |  |   const char test[] = "test"; | 
					
						
							|  |  |  |   buffer.append(test, test + 4); | 
					
						
							|  |  |  |   check_move_assign_buffer("test", buffer); | 
					
						
							|  |  |  |   // Adding one more character fills the inline buffer, but doesn't cause
 | 
					
						
							|  |  |  |   // dynamic allocation.
 | 
					
						
							|  |  |  |   buffer.push_back('a'); | 
					
						
							|  |  |  |   check_move_assign_buffer("testa", buffer); | 
					
						
							|  |  |  |   const char *inline_buffer_ptr = &buffer[0]; | 
					
						
							|  |  |  |   // Adding one more character causes the content to move from the inline to
 | 
					
						
							|  |  |  |   // a dynamically allocated buffer.
 | 
					
						
							|  |  |  |   buffer.push_back('b'); | 
					
						
							|  |  |  |   MemoryBuffer<char, 5> buffer2; | 
					
						
							|  |  |  |   buffer2 = std::move(buffer); | 
					
						
							|  |  |  |   // Move should rip the guts of the first buffer.
 | 
					
						
							|  |  |  |   EXPECT_EQ(inline_buffer_ptr, &buffer[0]); | 
					
						
							|  |  |  |   EXPECT_EQ("testab", std::string(&buffer2[0], buffer2.size())); | 
					
						
							|  |  |  |   EXPECT_GT(buffer2.capacity(), 5u); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  // FMT_USE_RVALUE_REFERENCES
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(MemoryBufferTest, Grow) { | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   typedef AllocatorRef< MockAllocator<int> > Allocator; | 
					
						
							|  |  |  |   typedef MemoryBuffer<int, 10, Allocator> Base; | 
					
						
							|  |  |  |   MockAllocator<int> alloc; | 
					
						
							|  |  |  |   struct TestMemoryBuffer : Base { | 
					
						
							|  |  |  |     TestMemoryBuffer(Allocator alloc) : Base(alloc) {} | 
					
						
							|  |  |  |     void grow(std::size_t size) { Base::grow(size); } | 
					
						
							|  |  |  |   } buffer((Allocator(&alloc))); | 
					
						
							|  |  |  |   buffer.resize(7); | 
					
						
							| 
									
										
										
										
											2016-03-02 07:53:14 -08:00
										 |  |  |   using fmt::internal::to_unsigned; | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   for (int i = 0; i < 7; ++i) | 
					
						
							| 
									
										
										
										
											2016-03-02 07:53:14 -08:00
										 |  |  |     buffer[to_unsigned(i)] = i * i; | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   EXPECT_EQ(10u, buffer.capacity()); | 
					
						
							|  |  |  |   int mem[20]; | 
					
						
							|  |  |  |   mem[7] = 0xdead; | 
					
						
							|  |  |  |   EXPECT_CALL(alloc, allocate(20)).WillOnce(Return(mem)); | 
					
						
							|  |  |  |   buffer.grow(20); | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   EXPECT_EQ(20u, buffer.capacity()); | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   // Check if size elements have been copied
 | 
					
						
							|  |  |  |   for (int i = 0; i < 7; ++i) | 
					
						
							| 
									
										
										
										
											2016-03-02 07:53:14 -08:00
										 |  |  |     EXPECT_EQ(i * i, buffer[to_unsigned(i)]); | 
					
						
							| 
									
										
										
										
											2014-10-01 08:12:10 -07:00
										 |  |  |   // and no more than that.
 | 
					
						
							|  |  |  |   EXPECT_EQ(0xdead, buffer[7]); | 
					
						
							|  |  |  |   EXPECT_CALL(alloc, deallocate(mem, 20)); | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(MemoryBufferTest, Allocator) { | 
					
						
							|  |  |  |   typedef AllocatorRef< MockAllocator<char> > TestAllocator; | 
					
						
							|  |  |  |   MemoryBuffer<char, 10, TestAllocator> buffer; | 
					
						
							|  |  |  |   EXPECT_EQ(0, buffer.get_allocator().get()); | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  |   StrictMock< MockAllocator<char> > alloc; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   char mem; | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     MemoryBuffer<char, 10, TestAllocator> buffer2((TestAllocator(&alloc))); | 
					
						
							|  |  |  |     EXPECT_EQ(&alloc, buffer2.get_allocator().get()); | 
					
						
							|  |  |  |     std::size_t size = 2 * fmt::internal::INLINE_BUFFER_SIZE; | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, allocate(size)).WillOnce(Return(&mem)); | 
					
						
							|  |  |  |     buffer2.reserve(size); | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, deallocate(&mem, size)); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(MemoryBufferTest, ExceptionInDeallocate) { | 
					
						
							|  |  |  |   typedef AllocatorRef< MockAllocator<char> > TestAllocator; | 
					
						
							| 
									
										
										
										
											2014-09-30 07:30:27 -07:00
										 |  |  |   StrictMock< MockAllocator<char> > alloc; | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   MemoryBuffer<char, 10, TestAllocator> buffer((TestAllocator(&alloc))); | 
					
						
							|  |  |  |   std::size_t size = 2 * fmt::internal::INLINE_BUFFER_SIZE; | 
					
						
							|  |  |  |   std::vector<char> mem(size); | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, allocate(size)).WillOnce(Return(&mem[0])); | 
					
						
							|  |  |  |     buffer.resize(size); | 
					
						
							|  |  |  |     std::fill(&buffer[0], &buffer[0] + size, 'x'); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   std::vector<char> mem2(2 * size); | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, allocate(2 * size)).WillOnce(Return(&mem2[0])); | 
					
						
							|  |  |  |     std::exception e; | 
					
						
							|  |  |  |     EXPECT_CALL(alloc, deallocate(&mem[0], size)).WillOnce(testing::Throw(e)); | 
					
						
							|  |  |  |     EXPECT_THROW(buffer.reserve(2 * size), std::exception); | 
					
						
							|  |  |  |     EXPECT_EQ(&mem2[0], &buffer[0]); | 
					
						
							|  |  |  |     // Check that the data has been copied.
 | 
					
						
							|  |  |  |     for (std::size_t i = 0; i < size; ++i) | 
					
						
							|  |  |  |       EXPECT_EQ('x', buffer[i]); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   EXPECT_CALL(alloc, deallocate(&mem2[0], 2 * size)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | TEST(UtilTest, Increment) { | 
					
						
							|  |  |  |   char s[10] = "123"; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   increment(s); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   EXPECT_STREQ("124", s); | 
					
						
							|  |  |  |   s[2] = '8'; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   increment(s); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   EXPECT_STREQ("129", s); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   increment(s); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   EXPECT_STREQ("130", s); | 
					
						
							|  |  |  |   s[1] = s[2] = '9'; | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   increment(s); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   EXPECT_STREQ("200", s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | template <Arg::Type> | 
					
						
							|  |  |  | struct ArgInfo; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define ARG_INFO(type_code, Type, field) \
 | 
					
						
							|  |  |  |   template <> \ | 
					
						
							|  |  |  |   struct ArgInfo<Arg::type_code> { \ | 
					
						
							| 
									
										
										
										
											2015-03-25 06:48:21 -07:00
										 |  |  |     static Type get(const Arg &arg) { return arg.field; } \ | 
					
						
							| 
									
										
										
										
											2016-01-29 16:21:17 +01:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | ARG_INFO(INT, int, int_value); | 
					
						
							|  |  |  | ARG_INFO(UINT, unsigned, uint_value); | 
					
						
							|  |  |  | ARG_INFO(LONG_LONG, fmt::LongLong, long_long_value); | 
					
						
							|  |  |  | ARG_INFO(ULONG_LONG, fmt::ULongLong, ulong_long_value); | 
					
						
							| 
									
										
										
										
											2015-06-11 09:00:06 -07:00
										 |  |  | ARG_INFO(BOOL, int, int_value); | 
					
						
							|  |  |  | ARG_INFO(CHAR, int, int_value); | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | ARG_INFO(DOUBLE, double, double_value); | 
					
						
							|  |  |  | ARG_INFO(LONG_DOUBLE, long double, long_double_value); | 
					
						
							| 
									
										
										
										
											2014-09-25 07:10:44 -07:00
										 |  |  | ARG_INFO(CSTRING, const char *, string.value); | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | ARG_INFO(STRING, const char *, string.value); | 
					
						
							|  |  |  | ARG_INFO(WSTRING, const wchar_t *, wstring.value); | 
					
						
							| 
									
										
										
										
											2014-09-23 08:21:58 -07:00
										 |  |  | ARG_INFO(POINTER, const void *, pointer); | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | ARG_INFO(CUSTOM, Arg::CustomValue, custom); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define CHECK_ARG_INFO(Type, field, value) { \
 | 
					
						
							| 
									
										
										
										
											2015-04-20 10:02:41 -07:00
										 |  |  |   Arg arg = Arg(); \ | 
					
						
							| 
									
										
										
										
											2015-03-25 06:48:21 -07:00
										 |  |  |   arg.field = value; \ | 
					
						
							|  |  |  |   EXPECT_EQ(value, ArgInfo<Arg::Type>::get(arg)); \ | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-16 07:55:31 -07:00
										 |  |  | TEST(ArgTest, ArgInfo) { | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   CHECK_ARG_INFO(INT, int_value, 42); | 
					
						
							| 
									
										
										
										
											2014-10-13 06:46:07 -07:00
										 |  |  |   CHECK_ARG_INFO(UINT, uint_value, 42u); | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   CHECK_ARG_INFO(LONG_LONG, long_long_value, 42); | 
					
						
							| 
									
										
										
										
											2014-10-13 06:46:07 -07:00
										 |  |  |   CHECK_ARG_INFO(ULONG_LONG, ulong_long_value, 42u); | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   CHECK_ARG_INFO(DOUBLE, double_value, 4.2); | 
					
						
							|  |  |  |   CHECK_ARG_INFO(LONG_DOUBLE, long_double_value, 4.2); | 
					
						
							|  |  |  |   CHECK_ARG_INFO(CHAR, int_value, 'x'); | 
					
						
							| 
									
										
										
										
											2014-07-14 07:17:58 -07:00
										 |  |  |   const char STR[] = "abc"; | 
					
						
							| 
									
										
										
										
											2014-09-25 07:10:44 -07:00
										 |  |  |   CHECK_ARG_INFO(CSTRING, string.value, STR); | 
					
						
							| 
									
										
										
										
											2014-07-14 07:17:58 -07:00
										 |  |  |   const wchar_t WSTR[] = L"abc"; | 
					
						
							|  |  |  |   CHECK_ARG_INFO(WSTRING, wstring.value, WSTR); | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   int p = 0; | 
					
						
							| 
									
										
										
										
											2014-09-23 08:21:58 -07:00
										 |  |  |   CHECK_ARG_INFO(POINTER, pointer, &p); | 
					
						
							| 
									
										
										
										
											2015-04-20 10:02:41 -07:00
										 |  |  |   Arg arg = Arg(); | 
					
						
							| 
									
										
										
										
											2015-03-25 06:48:21 -07:00
										 |  |  |   arg.custom.value = &p; | 
					
						
							|  |  |  |   EXPECT_EQ(&p, ArgInfo<Arg::CUSTOM>::get(arg).value); | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-28 09:08:21 -07:00
										 |  |  | #define EXPECT_ARG_(Char, type_code, MakeArgType, ExpectedType, value) { \
 | 
					
						
							| 
									
										
										
										
											2014-07-28 13:30:09 -07:00
										 |  |  |   MakeArgType input = static_cast<MakeArgType>(value); \ | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  |   Arg arg = make_arg<Char>(input); \ | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_EQ(Arg::type_code, arg.type); \ | 
					
						
							| 
									
										
										
										
											2014-07-28 09:08:21 -07:00
										 |  |  |   ExpectedType expected_value = static_cast<ExpectedType>(value); \ | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_EQ(expected_value, ArgInfo<Arg::type_code>::get(arg)); \ | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | #define EXPECT_ARG(type_code, Type, value) \
 | 
					
						
							| 
									
										
										
										
											2014-07-28 09:08:21 -07:00
										 |  |  |   EXPECT_ARG_(char, type_code, Type, Type, value) | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define EXPECT_ARGW(type_code, Type, value) \
 | 
					
						
							| 
									
										
										
										
											2014-07-28 09:08:21 -07:00
										 |  |  |   EXPECT_ARG_(wchar_t, type_code, Type, Type, value) | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-16 07:55:31 -07:00
										 |  |  | TEST(ArgTest, MakeArg) { | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  |   // Test bool.
 | 
					
						
							| 
									
										
										
										
											2015-06-11 09:00:06 -07:00
										 |  |  |   EXPECT_ARG_(char, BOOL, bool, int, true); | 
					
						
							|  |  |  |   EXPECT_ARG_(wchar_t, BOOL, bool, int, true); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Test char.
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARG(CHAR, char, 'a'); | 
					
						
							|  |  |  |   EXPECT_ARG(CHAR, char, CHAR_MIN); | 
					
						
							|  |  |  |   EXPECT_ARG(CHAR, char, CHAR_MAX); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Test wchar_t.
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARGW(CHAR, wchar_t, L'a'); | 
					
						
							|  |  |  |   EXPECT_ARGW(CHAR, wchar_t, WCHAR_MIN); | 
					
						
							|  |  |  |   EXPECT_ARGW(CHAR, wchar_t, WCHAR_MAX); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-05 20:46:22 -05:00
										 |  |  |   // Test signed/unsigned char.
 | 
					
						
							|  |  |  |   EXPECT_ARG(INT, signed char, 42); | 
					
						
							|  |  |  |   EXPECT_ARG(INT, signed char, SCHAR_MIN); | 
					
						
							|  |  |  |   EXPECT_ARG(INT, signed char, SCHAR_MAX); | 
					
						
							|  |  |  |   EXPECT_ARG(UINT, unsigned char, 42); | 
					
						
							|  |  |  |   EXPECT_ARG(UINT, unsigned char, UCHAR_MAX ); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  |   // Test short.
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARG(INT, short, 42); | 
					
						
							|  |  |  |   EXPECT_ARG(INT, short, SHRT_MIN); | 
					
						
							|  |  |  |   EXPECT_ARG(INT, short, SHRT_MAX); | 
					
						
							|  |  |  |   EXPECT_ARG(UINT, unsigned short, 42); | 
					
						
							|  |  |  |   EXPECT_ARG(UINT, unsigned short, USHRT_MAX); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Test int.
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARG(INT, int, 42); | 
					
						
							|  |  |  |   EXPECT_ARG(INT, int, INT_MIN); | 
					
						
							|  |  |  |   EXPECT_ARG(INT, int, INT_MAX); | 
					
						
							|  |  |  |   EXPECT_ARG(UINT, unsigned, 42); | 
					
						
							|  |  |  |   EXPECT_ARG(UINT, unsigned, UINT_MAX); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Test long.
 | 
					
						
							|  |  |  | #if LONG_MAX == INT_MAX
 | 
					
						
							|  |  |  | # define LONG INT
 | 
					
						
							|  |  |  | # define ULONG UINT
 | 
					
						
							|  |  |  | # define long_value int_value
 | 
					
						
							| 
									
										
										
										
											2014-07-02 09:12:25 -07:00
										 |  |  | # define ulong_value uint_value
 | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | #else
 | 
					
						
							|  |  |  | # define LONG LONG_LONG
 | 
					
						
							|  |  |  | # define ULONG ULONG_LONG
 | 
					
						
							|  |  |  | # define long_value long_long_value
 | 
					
						
							|  |  |  | # define ulong_value ulong_long_value
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARG(LONG, long, 42); | 
					
						
							|  |  |  |   EXPECT_ARG(LONG, long, LONG_MIN); | 
					
						
							|  |  |  |   EXPECT_ARG(LONG, long, LONG_MAX); | 
					
						
							|  |  |  |   EXPECT_ARG(ULONG, unsigned long, 42); | 
					
						
							|  |  |  |   EXPECT_ARG(ULONG, unsigned long, ULONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Test long long.
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARG(LONG_LONG, fmt::LongLong, 42); | 
					
						
							|  |  |  |   EXPECT_ARG(LONG_LONG, fmt::LongLong, LLONG_MIN); | 
					
						
							|  |  |  |   EXPECT_ARG(LONG_LONG, fmt::LongLong, LLONG_MAX); | 
					
						
							|  |  |  |   EXPECT_ARG(ULONG_LONG, fmt::ULongLong, 42); | 
					
						
							|  |  |  |   EXPECT_ARG(ULONG_LONG, fmt::ULongLong, ULLONG_MAX); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Test float.
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARG(DOUBLE, float, 4.2); | 
					
						
							|  |  |  |   EXPECT_ARG(DOUBLE, float, FLT_MIN); | 
					
						
							|  |  |  |   EXPECT_ARG(DOUBLE, float, FLT_MAX); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Test double.
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARG(DOUBLE, double, 4.2); | 
					
						
							|  |  |  |   EXPECT_ARG(DOUBLE, double, DBL_MIN); | 
					
						
							|  |  |  |   EXPECT_ARG(DOUBLE, double, DBL_MAX); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Test long double.
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARG(LONG_DOUBLE, long double, 4.2); | 
					
						
							|  |  |  |   EXPECT_ARG(LONG_DOUBLE, long double, LDBL_MIN); | 
					
						
							|  |  |  |   EXPECT_ARG(LONG_DOUBLE, long double, LDBL_MAX); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Test string.
 | 
					
						
							|  |  |  |   char STR[] = "test"; | 
					
						
							| 
									
										
										
										
											2014-09-25 07:10:44 -07:00
										 |  |  |   EXPECT_ARG(CSTRING, char*, STR); | 
					
						
							|  |  |  |   EXPECT_ARG(CSTRING, const char*, STR); | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARG(STRING, std::string, STR); | 
					
						
							|  |  |  |   EXPECT_ARG(STRING, fmt::StringRef, STR); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-03 08:50:57 -07:00
										 |  |  |   // Test wide string.
 | 
					
						
							|  |  |  |   wchar_t WSTR[] = L"test"; | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARGW(WSTRING, wchar_t*, WSTR); | 
					
						
							|  |  |  |   EXPECT_ARGW(WSTRING, const wchar_t*, WSTR); | 
					
						
							|  |  |  |   EXPECT_ARGW(WSTRING, std::wstring, WSTR); | 
					
						
							|  |  |  |   EXPECT_ARGW(WSTRING, fmt::WStringRef, WSTR); | 
					
						
							| 
									
										
										
										
											2014-07-03 08:50:57 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-04 07:18:44 -07:00
										 |  |  |   int n = 42; | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_ARG(POINTER, void*, &n); | 
					
						
							|  |  |  |   EXPECT_ARG(POINTER, const void*, &n); | 
					
						
							| 
									
										
										
										
											2014-07-04 07:18:44 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   ::Test t; | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  |   Arg arg = make_arg<char>(t); | 
					
						
							| 
									
										
										
										
											2014-07-04 07:18:44 -07:00
										 |  |  |   EXPECT_EQ(fmt::internal::Arg::CUSTOM, arg.type); | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_EQ(&t, arg.custom.value); | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   fmt::MemoryWriter w; | 
					
						
							| 
									
										
										
										
											2016-08-25 08:50:07 -07:00
										 |  |  |   fmt::BasicFormatter<char> formatter(fmt::format_args(), w); | 
					
						
							| 
									
										
										
										
											2014-08-29 07:23:54 -07:00
										 |  |  |   const char *s = "}"; | 
					
						
							|  |  |  |   arg.custom.format(&formatter, &t, &s); | 
					
						
							| 
									
										
										
										
											2014-07-04 07:18:44 -07:00
										 |  |  |   EXPECT_EQ("test", w.str()); | 
					
						
							| 
									
										
										
										
											2014-07-02 08:38:31 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-25 08:50:07 -07:00
										 |  |  | TEST(UtilTest, FormatArgs) { | 
					
						
							|  |  |  |   fmt::format_args args; | 
					
						
							| 
									
										
										
										
											2015-03-20 18:32:27 +01:00
										 |  |  |   EXPECT_EQ(Arg::NONE, args[1].type); | 
					
						
							| 
									
										
										
										
											2014-09-25 09:11:51 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-02 08:41:05 -08:00
										 |  |  | struct CustomFormatter { | 
					
						
							|  |  |  |   typedef char Char; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-14 07:28:20 -07:00
										 |  |  | void format_arg(CustomFormatter &, const char *&s, const Test &) { | 
					
						
							| 
									
										
										
										
											2015-12-02 08:41:05 -08:00
										 |  |  |   s = "custom_format"; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, MakeValueWithCustomFormatter) { | 
					
						
							|  |  |  |   ::Test t; | 
					
						
							|  |  |  |   Arg arg = fmt::internal::MakeValue<CustomFormatter>(t); | 
					
						
							|  |  |  |   CustomFormatter formatter; | 
					
						
							|  |  |  |   const char *s = ""; | 
					
						
							|  |  |  |   arg.custom.format(&formatter, &t, &s); | 
					
						
							|  |  |  |   EXPECT_STREQ("custom_format", s); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | struct Result { | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  |   Arg arg; | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  |   Result() : arg(make_arg<char>(0xdeadbeef)) {} | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   template <typename T> | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  |   Result(const T& value) : arg(make_arg<char>(value)) {} | 
					
						
							|  |  |  |   Result(const wchar_t *s) : arg(make_arg<wchar_t>(s)) {} | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-20 09:11:33 -07:00
										 |  |  | struct TestVisitor : fmt::ArgVisitor<TestVisitor, Result> { | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   Result visit_int(int value) { return value; } | 
					
						
							|  |  |  |   Result visit_uint(unsigned value) { return value; } | 
					
						
							|  |  |  |   Result visit_long_long(fmt::LongLong value) { return value; } | 
					
						
							|  |  |  |   Result visit_ulong_long(fmt::ULongLong value) { return value; } | 
					
						
							|  |  |  |   Result visit_double(double value) { return value; } | 
					
						
							|  |  |  |   Result visit_long_double(long double value) { return value; } | 
					
						
							| 
									
										
										
										
											2014-07-14 07:17:58 -07:00
										 |  |  |   Result visit_char(int value) { return static_cast<char>(value); } | 
					
						
							| 
									
										
										
										
											2015-11-09 07:17:36 -08:00
										 |  |  |   Result visit_cstring(const char *s) { return s; } | 
					
						
							| 
									
										
										
										
											2016-04-20 09:11:33 -07:00
										 |  |  |   Result visit_string(fmt::internal::Arg::StringValue<char> s) { | 
					
						
							|  |  |  |     return s.value; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   Result visit_wstring(fmt::internal::Arg::StringValue<wchar_t> s) { | 
					
						
							|  |  |  |     return s.value; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-07-14 07:27:07 -07:00
										 |  |  |   Result visit_pointer(const void *p) { return p; } | 
					
						
							| 
									
										
										
										
											2016-04-20 09:11:33 -07:00
										 |  |  |   Result visit_custom(fmt::internal::Arg::CustomValue c) { | 
					
						
							| 
									
										
										
										
											2014-07-14 07:27:07 -07:00
										 |  |  |     return *static_cast<const ::Test*>(c.value); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-14 07:17:58 -07:00
										 |  |  | #define EXPECT_RESULT_(Char, type_code, value) { \
 | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  |   Arg arg = make_arg<Char>(value); \ | 
					
						
							|  |  |  |   Result result = TestVisitor().visit(arg); \ | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_EQ(Arg::type_code, result.arg.type); \ | 
					
						
							|  |  |  |   EXPECT_EQ(value, ArgInfo<Arg::type_code>::get(result.arg)); \ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-14 07:17:58 -07:00
										 |  |  | #define EXPECT_RESULT(type_code, value) \
 | 
					
						
							|  |  |  |   EXPECT_RESULT_(char, type_code, value) | 
					
						
							|  |  |  | #define EXPECT_RESULTW(type_code, value) \
 | 
					
						
							|  |  |  |   EXPECT_RESULT_(wchar_t, type_code, value) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-16 07:55:31 -07:00
										 |  |  | TEST(ArgVisitorTest, VisitAll) { | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  |   EXPECT_RESULT(INT, 42); | 
					
						
							|  |  |  |   EXPECT_RESULT(UINT, 42u); | 
					
						
							|  |  |  |   EXPECT_RESULT(LONG_LONG, 42ll); | 
					
						
							|  |  |  |   EXPECT_RESULT(ULONG_LONG, 42ull); | 
					
						
							|  |  |  |   EXPECT_RESULT(DOUBLE, 4.2); | 
					
						
							| 
									
										
										
										
											2014-07-14 07:17:58 -07:00
										 |  |  |   EXPECT_RESULT(LONG_DOUBLE, 4.2l); | 
					
						
							|  |  |  |   EXPECT_RESULT(CHAR, 'x'); | 
					
						
							| 
									
										
										
										
											2014-07-14 07:27:07 -07:00
										 |  |  |   const char STR[] = "abc"; | 
					
						
							| 
									
										
										
										
											2014-09-25 07:10:44 -07:00
										 |  |  |   EXPECT_RESULT(CSTRING, STR); | 
					
						
							| 
									
										
										
										
											2014-07-14 07:27:07 -07:00
										 |  |  |   const wchar_t WSTR[] = L"abc"; | 
					
						
							|  |  |  |   EXPECT_RESULTW(WSTRING, WSTR); | 
					
						
							|  |  |  |   const void *p = STR; | 
					
						
							|  |  |  |   EXPECT_RESULT(POINTER, p); | 
					
						
							|  |  |  |   ::Test t; | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  |   Result result = TestVisitor().visit(make_arg<char>(t)); | 
					
						
							| 
									
										
										
										
											2014-07-14 07:27:07 -07:00
										 |  |  |   EXPECT_EQ(Arg::CUSTOM, result.arg.type); | 
					
						
							|  |  |  |   EXPECT_EQ(&t, result.arg.custom.value); | 
					
						
							| 
									
										
										
										
											2014-07-14 06:55:29 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-20 09:11:33 -07:00
										 |  |  | struct TestAnyVisitor : fmt::ArgVisitor<TestAnyVisitor, Result> { | 
					
						
							| 
									
										
										
										
											2014-07-16 07:55:31 -07:00
										 |  |  |   template <typename T> | 
					
						
							|  |  |  |   Result visit_any_int(T value) { return value; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   template <typename T> | 
					
						
							|  |  |  |   Result visit_any_double(T value) { return value; } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #undef EXPECT_RESULT
 | 
					
						
							|  |  |  | #define EXPECT_RESULT(type_code, value) { \
 | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  |   Result result = TestAnyVisitor().visit(make_arg<char>(value)); \ | 
					
						
							| 
									
										
										
										
											2014-07-16 07:55:31 -07:00
										 |  |  |   EXPECT_EQ(Arg::type_code, result.arg.type); \ | 
					
						
							|  |  |  |   EXPECT_EQ(value, ArgInfo<Arg::type_code>::get(result.arg)); \ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArgVisitorTest, VisitAny) { | 
					
						
							|  |  |  |   EXPECT_RESULT(INT, 42); | 
					
						
							|  |  |  |   EXPECT_RESULT(UINT, 42u); | 
					
						
							|  |  |  |   EXPECT_RESULT(LONG_LONG, 42ll); | 
					
						
							|  |  |  |   EXPECT_RESULT(ULONG_LONG, 42ull); | 
					
						
							|  |  |  |   EXPECT_RESULT(DOUBLE, 4.2); | 
					
						
							|  |  |  |   EXPECT_RESULT(LONG_DOUBLE, 4.2l); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct TestUnhandledVisitor : | 
					
						
							| 
									
										
										
										
											2016-04-20 09:11:33 -07:00
										 |  |  |     fmt::ArgVisitor<TestUnhandledVisitor, const char *> { | 
					
						
							| 
									
										
										
										
											2014-07-16 07:55:31 -07:00
										 |  |  |   const char *visit_unhandled_arg() { return "test"; } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define EXPECT_UNHANDLED(value) \
 | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  |   EXPECT_STREQ("test", TestUnhandledVisitor().visit(make_arg<wchar_t>(value))); | 
					
						
							| 
									
										
										
										
											2014-07-16 07:55:31 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | TEST(ArgVisitorTest, VisitUnhandledArg) { | 
					
						
							|  |  |  |   EXPECT_UNHANDLED(42); | 
					
						
							|  |  |  |   EXPECT_UNHANDLED(42u); | 
					
						
							|  |  |  |   EXPECT_UNHANDLED(42ll); | 
					
						
							|  |  |  |   EXPECT_UNHANDLED(42ull); | 
					
						
							|  |  |  |   EXPECT_UNHANDLED(4.2); | 
					
						
							|  |  |  |   EXPECT_UNHANDLED(4.2l); | 
					
						
							|  |  |  |   EXPECT_UNHANDLED('x'); | 
					
						
							|  |  |  |   const char STR[] = "abc"; | 
					
						
							|  |  |  |   EXPECT_UNHANDLED(STR); | 
					
						
							|  |  |  |   const wchar_t WSTR[] = L"abc"; | 
					
						
							|  |  |  |   EXPECT_UNHANDLED(WSTR); | 
					
						
							|  |  |  |   const void *p = STR; | 
					
						
							|  |  |  |   EXPECT_UNHANDLED(p); | 
					
						
							|  |  |  |   EXPECT_UNHANDLED(::Test()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(ArgVisitorTest, VisitInvalidArg) { | 
					
						
							| 
									
										
										
										
											2014-09-23 07:59:43 -07:00
										 |  |  |   Arg arg = Arg(); | 
					
						
							| 
									
										
										
										
											2016-06-14 15:42:32 -07:00
										 |  |  |   arg.type = static_cast<Arg::Type>(Arg::NONE); | 
					
						
							| 
									
										
										
										
											2015-06-22 08:17:23 -07:00
										 |  |  |   EXPECT_ASSERT(TestVisitor().visit(arg), "invalid argument type"); | 
					
						
							| 
									
										
										
										
											2014-07-16 07:55:31 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-24 09:07:43 -07:00
										 |  |  | // Tests fmt::internal::count_digits for integer type Int.
 | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | template <typename Int> | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | void test_count_digits() { | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   for (Int i = 0; i < 10; ++i) | 
					
						
							| 
									
										
										
										
											2014-07-24 09:07:43 -07:00
										 |  |  |     EXPECT_EQ(1u, fmt::internal::count_digits(i)); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   for (Int i = 1, n = 1, | 
					
						
							| 
									
										
										
										
											2014-07-24 09:07:43 -07:00
										 |  |  |       end = std::numeric_limits<Int>::max() / 10; n <= end; ++i) { | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |     n *= 10; | 
					
						
							| 
									
										
										
										
											2014-07-24 09:07:43 -07:00
										 |  |  |     EXPECT_EQ(i, fmt::internal::count_digits(n - 1)); | 
					
						
							|  |  |  |     EXPECT_EQ(i + 1, fmt::internal::count_digits(n)); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-30 06:27:44 -07:00
										 |  |  | TEST(UtilTest, StringRef) { | 
					
						
							| 
									
										
										
										
											2015-02-17 06:45:45 -08:00
										 |  |  |   // Test that StringRef::size() returns string length, not buffer size.
 | 
					
						
							| 
									
										
										
										
											2015-02-24 09:52:16 -08:00
										 |  |  |   char str[100] = "some string"; | 
					
						
							| 
									
										
										
										
											2015-02-17 06:45:45 -08:00
										 |  |  |   EXPECT_EQ(std::strlen(str), StringRef(str).size()); | 
					
						
							| 
									
										
										
										
											2015-02-24 09:52:16 -08:00
										 |  |  |   EXPECT_LT(std::strlen(str), sizeof(str)); | 
					
						
							| 
									
										
										
										
											2014-10-30 06:27:44 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-22 08:41:42 -07:00
										 |  |  | // Check StringRef's comparison operator.
 | 
					
						
							|  |  |  | template <template <typename> class Op> | 
					
						
							|  |  |  | void CheckOp() { | 
					
						
							|  |  |  |   const char *inputs[] = {"foo", "fop", "fo"}; | 
					
						
							|  |  |  |   std::size_t num_inputs = sizeof(inputs) / sizeof(*inputs); | 
					
						
							|  |  |  |   for (std::size_t i = 0; i < num_inputs; ++i) { | 
					
						
							|  |  |  |     for (std::size_t j = 0; j < num_inputs; ++j) { | 
					
						
							|  |  |  |       StringRef lhs(inputs[i]), rhs(inputs[j]); | 
					
						
							|  |  |  |       EXPECT_EQ(Op<int>()(lhs.compare(rhs), 0), Op<StringRef>()(lhs, rhs)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, StringRefCompare) { | 
					
						
							|  |  |  |   EXPECT_EQ(0, StringRef("foo").compare(StringRef("foo"))); | 
					
						
							| 
									
										
										
										
											2015-11-10 06:40:20 -08:00
										 |  |  |   EXPECT_GT(StringRef("fop").compare(StringRef("foo")), 0); | 
					
						
							|  |  |  |   EXPECT_LT(StringRef("foo").compare(StringRef("fop")), 0); | 
					
						
							| 
									
										
										
										
											2015-11-11 06:44:57 -08:00
										 |  |  |   EXPECT_GT(StringRef("foo").compare(StringRef("fo")), 0); | 
					
						
							|  |  |  |   EXPECT_LT(StringRef("fo").compare(StringRef("foo")), 0); | 
					
						
							| 
									
										
										
										
											2015-10-22 08:41:42 -07:00
										 |  |  |   CheckOp<std::equal_to>(); | 
					
						
							|  |  |  |   CheckOp<std::not_equal_to>(); | 
					
						
							|  |  |  |   CheckOp<std::less>(); | 
					
						
							|  |  |  |   CheckOp<std::less_equal>(); | 
					
						
							|  |  |  |   CheckOp<std::greater>(); | 
					
						
							|  |  |  |   CheckOp<std::greater_equal>(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | TEST(UtilTest, CountDigits) { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   test_count_digits<uint32_t>(); | 
					
						
							|  |  |  |   test_count_digits<uint64_t>(); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | TEST(UtilTest, UTF16ToUTF8) { | 
					
						
							|  |  |  |   std::string s = "ёжик"; | 
					
						
							|  |  |  |   fmt::internal::UTF16ToUTF8 u(L"\x0451\x0436\x0438\x043A"); | 
					
						
							| 
									
										
										
										
											2014-06-30 18:12:57 -07:00
										 |  |  |   EXPECT_EQ(s, u.str()); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   EXPECT_EQ(s.size(), u.size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, UTF8ToUTF16) { | 
					
						
							|  |  |  |   std::string s = "лошадка"; | 
					
						
							|  |  |  |   fmt::internal::UTF8ToUTF16 u(s.c_str()); | 
					
						
							| 
									
										
										
										
											2014-06-30 18:12:57 -07:00
										 |  |  |   EXPECT_EQ(L"\x043B\x043E\x0448\x0430\x0434\x043A\x0430", u.str()); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   EXPECT_EQ(7, u.size()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-30 13:00:44 -07:00
										 |  |  | template <typename Converter, typename Char> | 
					
						
							| 
									
										
										
										
											2015-08-07 07:34:58 -07:00
										 |  |  | void check_utf_conversion_error( | 
					
						
							|  |  |  |         const char *message, | 
					
						
							|  |  |  |         fmt::BasicStringRef<Char> str = fmt::BasicStringRef<Char>(0, 0)) { | 
					
						
							| 
									
										
										
										
											2014-09-29 09:59:49 -07:00
										 |  |  |   fmt::MemoryWriter out; | 
					
						
							| 
									
										
										
										
											2014-07-27 15:09:05 -07:00
										 |  |  |   fmt::internal::format_windows_error(out, ERROR_INVALID_PARAMETER, message); | 
					
						
							| 
									
										
										
										
											2014-06-30 17:01:31 -07:00
										 |  |  |   fmt::SystemError error(0, ""); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   try { | 
					
						
							| 
									
										
										
										
											2015-08-07 07:34:58 -07:00
										 |  |  |     (Converter)(str); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   } catch (const fmt::SystemError &e) { | 
					
						
							|  |  |  |     error = e; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   EXPECT_EQ(ERROR_INVALID_PARAMETER, error.error_code()); | 
					
						
							|  |  |  |   EXPECT_EQ(out.str(), error.what()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, UTF16ToUTF8Error) { | 
					
						
							| 
									
										
										
										
											2014-10-30 13:00:44 -07:00
										 |  |  |   check_utf_conversion_error<fmt::internal::UTF16ToUTF8, wchar_t>( | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |       "cannot convert string from UTF-16 to UTF-8"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, UTF8ToUTF16Error) { | 
					
						
							| 
									
										
										
										
											2015-08-07 07:34:58 -07:00
										 |  |  |   const char *message = "cannot convert string from UTF-8 to UTF-16"; | 
					
						
							|  |  |  |   check_utf_conversion_error<fmt::internal::UTF8ToUTF16, char>(message); | 
					
						
							| 
									
										
										
										
											2014-10-30 13:00:44 -07:00
										 |  |  |   check_utf_conversion_error<fmt::internal::UTF8ToUTF16, char>( | 
					
						
							| 
									
										
										
										
											2015-08-07 07:34:58 -07:00
										 |  |  |     message, fmt::StringRef("foo", INT_MAX + 1u)); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, UTF16ToUTF8Convert) { | 
					
						
							|  |  |  |   fmt::internal::UTF16ToUTF8 u; | 
					
						
							| 
									
										
										
										
											2014-10-30 13:58:16 -07:00
										 |  |  |   EXPECT_EQ(ERROR_INVALID_PARAMETER, u.convert(fmt::WStringRef(0, 0))); | 
					
						
							| 
									
										
										
										
											2015-08-07 07:34:58 -07:00
										 |  |  |   EXPECT_EQ(ERROR_INVALID_PARAMETER, | 
					
						
							|  |  |  |             u.convert(fmt::WStringRef(L"foo", INT_MAX + 1u))); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | #endif  // _WIN32
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef void (*FormatErrorMessage)( | 
					
						
							|  |  |  |         fmt::Writer &out, int error_code, StringRef message); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-30 14:26:29 -07:00
										 |  |  | template <typename Error> | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  | void check_throw_error(int error_code, FormatErrorMessage format) { | 
					
						
							| 
									
										
										
										
											2014-06-30 14:26:29 -07:00
										 |  |  |   fmt::SystemError error(0, ""); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   try { | 
					
						
							| 
									
										
										
										
											2014-06-30 14:26:29 -07:00
										 |  |  |     throw Error(error_code, "test {}", "error"); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   } catch (const fmt::SystemError &e) { | 
					
						
							|  |  |  |     error = e; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   fmt::MemoryWriter message; | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   format(message, error_code, "test error"); | 
					
						
							| 
									
										
										
										
											2014-06-30 06:43:53 -07:00
										 |  |  |   EXPECT_EQ(message.str(), error.what()); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   EXPECT_EQ(error_code, error.error_code()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-27 15:09:05 -07:00
										 |  |  | TEST(UtilTest, FormatSystemError) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   fmt::MemoryWriter message; | 
					
						
							| 
									
										
										
										
											2016-05-11 21:36:22 -06:00
										 |  |  |   fmt::format_system_error(message, EDOM, "test"); | 
					
						
							| 
									
										
										
										
											2014-09-03 08:03:05 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("test: {}", get_system_error(EDOM)), message.str()); | 
					
						
							|  |  |  |   message.clear(); | 
					
						
							| 
									
										
										
										
											2016-05-11 21:36:22 -06:00
										 |  |  |   fmt::format_system_error( | 
					
						
							| 
									
										
										
										
											2015-11-13 15:16:10 -08:00
										 |  |  |         message, EDOM, fmt::StringRef(0, std::numeric_limits<size_t>::max())); | 
					
						
							| 
									
										
										
										
											2014-09-03 08:03:05 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("error {}", EDOM), message.str()); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-28 08:41:50 -07:00
										 |  |  | TEST(UtilTest, SystemError) { | 
					
						
							|  |  |  |   fmt::SystemError e(EDOM, "test"); | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("test: {}", get_system_error(EDOM)), e.what()); | 
					
						
							| 
									
										
										
										
											2014-07-28 08:41:50 -07:00
										 |  |  |   EXPECT_EQ(EDOM, e.error_code()); | 
					
						
							| 
									
										
										
										
											2016-05-11 21:36:22 -06:00
										 |  |  |   check_throw_error<fmt::SystemError>(EDOM, fmt::format_system_error); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, ReportSystemError) { | 
					
						
							| 
									
										
										
										
											2014-09-29 08:48:16 -07:00
										 |  |  |   fmt::MemoryWriter out; | 
					
						
							| 
									
										
										
										
											2016-05-11 21:36:22 -06:00
										 |  |  |   fmt::format_system_error(out, EDOM, "test error"); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   out << '\n'; | 
					
						
							| 
									
										
										
										
											2014-07-28 08:41:50 -07:00
										 |  |  |   EXPECT_WRITE(stderr, fmt::report_system_error(EDOM, "test error"), out.str()); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef _WIN32
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-28 08:41:50 -07:00
										 |  |  | TEST(UtilTest, FormatWindowsError) { | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -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-09-29 09:37:33 -07:00
										 |  |  |   fmt::MemoryWriter actual_message; | 
					
						
							| 
									
										
										
										
											2014-07-27 15:09:05 -07:00
										 |  |  |   fmt::internal::format_windows_error( | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |       actual_message, ERROR_FILE_EXISTS, "test"); | 
					
						
							| 
									
										
										
										
											2014-06-30 19:11:20 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("test: {}", utf8_message.str()), | 
					
						
							| 
									
										
										
										
											2014-06-30 18:38:45 -07:00
										 |  |  |       actual_message.str()); | 
					
						
							| 
									
										
										
										
											2014-09-03 08:03:05 -07:00
										 |  |  |   actual_message.clear(); | 
					
						
							|  |  |  |   fmt::internal::format_windows_error( | 
					
						
							|  |  |  |         actual_message, ERROR_FILE_EXISTS, | 
					
						
							| 
									
										
										
										
											2015-11-13 15:16:10 -08:00
										 |  |  |         fmt::StringRef(0, std::numeric_limits<size_t>::max())); | 
					
						
							| 
									
										
										
										
											2014-09-03 08:10:20 -07:00
										 |  |  |   EXPECT_EQ(fmt::format("error {}", ERROR_FILE_EXISTS), actual_message.str()); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-04 17:47:37 -08:00
										 |  |  | TEST(UtilTest, FormatLongWindowsError) { | 
					
						
							|  |  |  |   LPWSTR message = 0; | 
					
						
							|  |  |  |   // this error code is not available on all Windows platforms and
 | 
					
						
							|  |  |  |   // Windows SDKs, so do not fail the test if the error string cannot
 | 
					
						
							|  |  |  |   // be retrieved.
 | 
					
						
							|  |  |  |   const int provisioning_not_allowed = 0x80284013L /*TBS_E_PROVISIONING_NOT_ALLOWED*/; | 
					
						
							|  |  |  |   if (FormatMessageW(FORMAT_MESSAGE_ALLOCATE_BUFFER | | 
					
						
							|  |  |  |       FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, 0, | 
					
						
							|  |  |  |       provisioning_not_allowed, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), | 
					
						
							|  |  |  |       reinterpret_cast<LPWSTR>(&message), 0, 0) == 0) { | 
					
						
							|  |  |  |     return; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   fmt::internal::UTF16ToUTF8 utf8_message(message); | 
					
						
							|  |  |  |   LocalFree(message); | 
					
						
							|  |  |  |   fmt::MemoryWriter actual_message; | 
					
						
							|  |  |  |   fmt::internal::format_windows_error( | 
					
						
							|  |  |  |       actual_message, provisioning_not_allowed, "test"); | 
					
						
							|  |  |  |   EXPECT_EQ(fmt::format("test: {}", utf8_message.str()), | 
					
						
							|  |  |  |       actual_message.str()); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-28 08:41:50 -07:00
										 |  |  | TEST(UtilTest, WindowsError) { | 
					
						
							| 
									
										
										
										
											2014-07-29 07:50:05 -07:00
										 |  |  |   check_throw_error<fmt::WindowsError>( | 
					
						
							| 
									
										
										
										
											2014-07-27 15:09:05 -07:00
										 |  |  |       ERROR_FILE_EXISTS, fmt::internal::format_windows_error); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-28 08:41:50 -07:00
										 |  |  | TEST(UtilTest, ReportWindowsError) { | 
					
						
							| 
									
										
										
										
											2014-09-29 09:59:49 -07:00
										 |  |  |   fmt::MemoryWriter out; | 
					
						
							| 
									
										
										
										
											2014-07-27 15:09:05 -07:00
										 |  |  |   fmt::internal::format_windows_error(out, ERROR_FILE_EXISTS, "test error"); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  |   out << '\n'; | 
					
						
							|  |  |  |   EXPECT_WRITE(stderr, | 
					
						
							| 
									
										
										
										
											2014-07-28 08:41:50 -07:00
										 |  |  |       fmt::report_windows_error(ERROR_FILE_EXISTS, "test error"), out.str()); | 
					
						
							| 
									
										
										
										
											2014-06-06 06:38:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  // _WIN32
 | 
					
						
							| 
									
										
										
										
											2015-03-10 07:53:46 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-24 08:18:19 -08:00
										 |  |  | enum TestEnum2 {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, ConvertToInt) { | 
					
						
							|  |  |  |   EXPECT_TRUE(fmt::internal::ConvertToInt<char>::enable_conversion); | 
					
						
							|  |  |  |   EXPECT_FALSE(fmt::internal::ConvertToInt<const char *>::enable_conversion); | 
					
						
							|  |  |  |   EXPECT_TRUE(fmt::internal::ConvertToInt<TestEnum2>::value); | 
					
						
							| 
									
										
										
										
											2015-03-10 07:53:46 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-03-18 11:02:37 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if FMT_USE_ENUM_BASE
 | 
					
						
							|  |  |  | enum TestEnum : char {TestValue}; | 
					
						
							|  |  |  | TEST(UtilTest, IsEnumConvertibleToInt) { | 
					
						
							| 
									
										
										
										
											2015-11-24 08:18:19 -08:00
										 |  |  |   EXPECT_TRUE(fmt::internal::ConvertToInt<TestEnum>::enable_conversion); | 
					
						
							| 
									
										
										
										
											2015-03-18 11:02:37 -07:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-20 08:08:02 -07:00
										 |  |  | template <typename T> | 
					
						
							|  |  |  | bool check_enable_if( | 
					
						
							| 
									
										
										
										
											2015-04-20 10:02:41 -07:00
										 |  |  |     typename fmt::internal::EnableIf<sizeof(T) == sizeof(int), T>::type *) { | 
					
						
							| 
									
										
										
										
											2015-04-20 08:08:02 -07:00
										 |  |  |   return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | template <typename T> | 
					
						
							|  |  |  | bool check_enable_if( | 
					
						
							| 
									
										
										
										
											2015-04-20 10:02:41 -07:00
										 |  |  |     typename fmt::internal::EnableIf<sizeof(T) != sizeof(int), T>::type *) { | 
					
						
							| 
									
										
										
										
											2015-04-20 08:08:02 -07:00
										 |  |  |   return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, EnableIf) { | 
					
						
							| 
									
										
										
										
											2015-04-20 10:02:41 -07:00
										 |  |  |   int i = 0; | 
					
						
							|  |  |  |   EXPECT_TRUE(check_enable_if<int>(&i)); | 
					
						
							|  |  |  |   char c = 0; | 
					
						
							|  |  |  |   EXPECT_FALSE(check_enable_if<char>(&c)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, Conditional) { | 
					
						
							|  |  |  |   int i = 0; | 
					
						
							|  |  |  |   fmt::internal::Conditional<true, int, char>::type *pi = &i; | 
					
						
							|  |  |  |   (void)pi; | 
					
						
							|  |  |  |   char c = 0; | 
					
						
							|  |  |  |   fmt::internal::Conditional<false, int, char>::type *pc = &c; | 
					
						
							|  |  |  |   (void)pc; | 
					
						
							| 
									
										
										
										
											2015-04-20 08:08:02 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-05-19 18:12:56 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct TestLConv { | 
					
						
							|  |  |  |   char *thousands_sep; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct EmptyLConv {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TEST(UtilTest, ThousandsSep) { | 
					
						
							|  |  |  |   char foo[] = "foo"; | 
					
						
							|  |  |  |   TestLConv lc = {foo}; | 
					
						
							|  |  |  |   EXPECT_EQ("foo", fmt::internal::thousands_sep(&lc).to_string()); | 
					
						
							|  |  |  |   EmptyLConv empty_lc; | 
					
						
							|  |  |  |   EXPECT_EQ("", fmt::internal::thousands_sep(&empty_lc)); | 
					
						
							|  |  |  | } |