// Formatting library for C++ - core tests // // Copyright (c) 2012 - present, Victor Zverovich // All rights reserved. // // For the license information refer to format.h. #include #include #include #include #include #include #include #include #include #include "test-assert.h" #include "gmock.h" // Check if fmt/core.h compiles with windows.h included before it. #ifdef _WIN32 # include #endif #include "fmt/core.h" #undef min #undef max using fmt::basic_format_arg; using fmt::string_view; using fmt::internal::buffer; using fmt::internal::value; using testing::_; using testing::StrictMock; namespace { struct test_struct {}; template basic_format_arg make_arg(const T& value) { return fmt::internal::make_arg(value); } } // namespace FMT_BEGIN_NAMESPACE template struct formatter { template auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { return ctx.begin(); } typedef std::back_insert_iterator> iterator; auto format(test_struct, basic_format_context& ctx) -> decltype(ctx.out()) { const Char* test = "test"; return std::copy_n(test, std::strlen(test), ctx.out()); } }; FMT_END_NAMESPACE #if !FMT_GCC_VERSION || FMT_GCC_VERSION >= 470 TEST(BufferTest, Noncopyable) { EXPECT_FALSE(std::is_copy_constructible>::value); # if !FMT_MSC_VER // std::is_copy_assignable is broken in MSVC2013. EXPECT_FALSE(std::is_copy_assignable>::value); # endif } TEST(BufferTest, Nonmoveable) { EXPECT_FALSE(std::is_move_constructible>::value); # if !FMT_MSC_VER // std::is_move_assignable is broken in MSVC2013. EXPECT_FALSE(std::is_move_assignable>::value); # endif } #endif // A test buffer with a dummy grow method. template struct test_buffer : buffer { void grow(std::size_t capacity) { this->set(nullptr, capacity); } }; template struct mock_buffer : buffer { MOCK_METHOD1(do_grow, void(std::size_t capacity)); void grow(std::size_t capacity) { this->set(this->data(), capacity); do_grow(capacity); } mock_buffer() {} mock_buffer(T* data) { this->set(data, 0); } mock_buffer(T* data, std::size_t capacity) { this->set(data, capacity); } }; TEST(BufferTest, Ctor) { { mock_buffer buffer; EXPECT_EQ(nullptr, buffer.data()); EXPECT_EQ(static_cast(0), buffer.size()); EXPECT_EQ(static_cast(0), buffer.capacity()); } { int dummy; mock_buffer buffer(&dummy); EXPECT_EQ(&dummy, &buffer[0]); EXPECT_EQ(static_cast(0), buffer.size()); EXPECT_EQ(static_cast(0), buffer.capacity()); } { int dummy; std::size_t capacity = std::numeric_limits::max(); mock_buffer buffer(&dummy, capacity); EXPECT_EQ(&dummy, &buffer[0]); EXPECT_EQ(static_cast(0), buffer.size()); EXPECT_EQ(capacity, buffer.capacity()); } } struct dying_buffer : test_buffer { MOCK_METHOD0(die, void()); ~dying_buffer() { die(); } private: virtual void avoid_weak_vtable(); }; void dying_buffer::avoid_weak_vtable() {} TEST(BufferTest, VirtualDtor) { typedef StrictMock stict_mock_buffer; stict_mock_buffer* mock_buffer = new stict_mock_buffer(); EXPECT_CALL(*mock_buffer, die()); buffer* buffer = mock_buffer; delete buffer; } TEST(BufferTest, Access) { char data[10]; mock_buffer buffer(data, sizeof(data)); buffer[0] = 11; EXPECT_EQ(11, buffer[0]); buffer[3] = 42; EXPECT_EQ(42, *(&buffer[0] + 3)); const fmt::internal::buffer& const_buffer = buffer; EXPECT_EQ(42, const_buffer[3]); } TEST(BufferTest, Resize) { char data[123]; mock_buffer 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. EXPECT_CALL(buffer, do_grow(124)); buffer.resize(124); EXPECT_CALL(buffer, do_grow(200)); buffer.resize(200); } TEST(BufferTest, Clear) { test_buffer buffer; buffer.resize(20); buffer.resize(0); EXPECT_EQ(static_cast(0), buffer.size()); EXPECT_EQ(20u, buffer.capacity()); } TEST(BufferTest, Append) { char data[15]; mock_buffer 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); EXPECT_CALL(buffer, do_grow(12)); 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]; mock_buffer buffer(data, 10); const char* test = "abcdefgh"; buffer.resize(10); EXPECT_CALL(buffer, do_grow(19)); buffer.append(test, test + 9); } TEST(ArgTest, FormatArgs) { fmt::format_args args; EXPECT_FALSE(args.get(1)); } struct custom_context { typedef char char_type; template struct formatter_type { template auto parse(ParseContext& ctx) -> decltype(ctx.begin()) { return ctx.begin(); } const char* format(const T&, custom_context& ctx) { ctx.called = true; return nullptr; } }; bool called; fmt::format_parse_context ctx; fmt::format_parse_context& parse_context() { return ctx; } void advance_to(const char*) {} }; TEST(ArgTest, MakeValueWithCustomContext) { test_struct t; fmt::internal::value arg( fmt::internal::arg_mapper().map(t)); custom_context ctx = {false, fmt::format_parse_context("")}; arg.custom.format(&t, ctx.parse_context(), ctx); EXPECT_TRUE(ctx.called); } FMT_BEGIN_NAMESPACE namespace internal { template bool operator==(custom_value lhs, custom_value rhs) { return lhs.value == rhs.value; } } // namespace internal FMT_END_NAMESPACE // Use a unique result type to make sure that there are no undesirable // conversions. struct test_result {}; template struct mock_visitor { template struct result { typedef test_result type; }; mock_visitor() { ON_CALL(*this, visit(_)).WillByDefault(testing::Return(test_result())); } MOCK_METHOD1_T(visit, test_result(T value)); MOCK_METHOD0_T(unexpected, void()); test_result operator()(T value) { return visit(value); } template test_result operator()(U) { unexpected(); return test_result(); } }; template struct visit_type { typedef T Type; }; #define VISIT_TYPE(Type_, visit_type_) \ template <> struct visit_type { typedef visit_type_ Type; } VISIT_TYPE(signed char, int); VISIT_TYPE(unsigned char, unsigned); VISIT_TYPE(short, int); VISIT_TYPE(unsigned short, unsigned); #if LONG_MAX == INT_MAX VISIT_TYPE(long, int); VISIT_TYPE(unsigned long, unsigned); #else VISIT_TYPE(long, long long); VISIT_TYPE(unsigned long, unsigned long long); #endif #define CHECK_ARG_(Char, expected, value) \ { \ testing::StrictMock> visitor; \ EXPECT_CALL(visitor, visit(expected)); \ typedef std::back_insert_iterator> iterator; \ fmt::visit_format_arg( \ visitor, make_arg>(value)); \ } #define CHECK_ARG(value, typename_) \ { \ typedef decltype(value) value_type; \ typename_ visit_type::Type expected = value; \ CHECK_ARG_(char, expected, value) \ CHECK_ARG_(wchar_t, expected, value) \ } template class NumericArgTest : public testing::Test {}; typedef ::testing::Types Types; TYPED_TEST_CASE(NumericArgTest, Types); template typename std::enable_if::value, T>::type test_value() { return static_cast(42); } template typename std::enable_if::value, T>::type test_value() { return static_cast(4.2); } TYPED_TEST(NumericArgTest, MakeAndVisit) { CHECK_ARG(test_value(), typename); CHECK_ARG(std::numeric_limits::min(), typename); CHECK_ARG(std::numeric_limits::max(), typename); } TEST(ArgTest, CharArg) { CHECK_ARG_(char, 'a', 'a'); CHECK_ARG_(wchar_t, L'a', 'a'); CHECK_ARG_(wchar_t, L'a', L'a'); } TEST(ArgTest, StringArg) { char str_data[] = "test"; char* str = str_data; const char* cstr = str; CHECK_ARG_(char, cstr, str); string_view sref(str); CHECK_ARG_(char, sref, std::string(str)); } TEST(ArgTest, WStringArg) { wchar_t str_data[] = L"test"; wchar_t* str = str_data; const wchar_t* cstr = str; fmt::wstring_view sref(str); CHECK_ARG_(wchar_t, cstr, str); CHECK_ARG_(wchar_t, cstr, cstr); CHECK_ARG_(wchar_t, sref, std::wstring(str)); CHECK_ARG_(wchar_t, sref, fmt::wstring_view(str)); } TEST(ArgTest, PointerArg) { void* p = nullptr; const void* cp = nullptr; CHECK_ARG_(char, cp, p); CHECK_ARG_(wchar_t, cp, p); CHECK_ARG(cp, ); } struct check_custom { test_result operator()( fmt::basic_format_arg::handle h) const { struct test_buffer : fmt::internal::buffer { char data[10]; test_buffer() : fmt::internal::buffer(data, 0, 10) {} void grow(std::size_t) {} } buffer; fmt::internal::buffer& base = buffer; fmt::format_parse_context parse_ctx(""); fmt::format_context ctx(std::back_inserter(base), fmt::format_args()); h.format(parse_ctx, ctx); EXPECT_EQ("test", std::string(buffer.data, buffer.size())); return test_result(); } }; TEST(ArgTest, CustomArg) { test_struct test; typedef mock_visitor::handle> visitor; testing::StrictMock v; EXPECT_CALL(v, visit(_)).WillOnce(testing::Invoke(check_custom())); fmt::visit_format_arg(v, make_arg(test)); } TEST(ArgTest, VisitInvalidArg) { testing::StrictMock> visitor; EXPECT_CALL(visitor, visit(_)); fmt::basic_format_arg arg; fmt::visit_format_arg(visitor, arg); } TEST(StringViewTest, Length) { // Test that StringRef::size() returns string length, not buffer size. char str[100] = "some string"; EXPECT_EQ(std::strlen(str), string_view(str).size()); EXPECT_LT(std::strlen(str), sizeof(str)); } // Check string_view's comparison operator. template