fmt/test/core-test.cc

605 lines
18 KiB
C++
Raw Normal View History

// Formatting library for C++ - core tests
2018-03-04 17:16:51 +00:00
//
// Copyright (c) 2012 - present, Victor Zverovich
// All rights reserved.
//
// For the license information refer to format.h.
#include <algorithm>
#include <climits>
#include <cstring>
2015-10-22 15:56:52 +00:00
#include <functional>
#include <iterator>
2014-06-06 15:07:05 +00:00
#include <limits>
2019-01-13 02:27:38 +00:00
#include <memory>
#include <string>
#include <type_traits>
#include "test-assert.h"
#include "gmock.h"
// Check if fmt/core.h compiles with windows.h included before it.
2014-06-06 14:29:57 +00:00
#ifdef _WIN32
2019-01-13 02:27:38 +00:00
# include <windows.h>
2014-06-06 14:29:57 +00:00
#endif
#include "fmt/core.h"
2014-06-06 14:29:57 +00:00
#undef min
2014-06-06 15:18:53 +00:00
#undef max
using fmt::basic_format_arg;
2019-01-13 02:27:38 +00:00
using fmt::string_view;
2018-01-14 20:25:03 +00:00
using fmt::internal::basic_buffer;
2016-12-30 16:05:26 +00:00
using fmt::internal::value;
using testing::_;
2014-09-30 14:30:27 +00:00
using testing::StrictMock;
namespace {
2014-07-04 14:18:44 +00:00
struct test_struct {};
2016-05-06 14:37:20 +00:00
template <typename Context, typename T>
2019-01-13 02:27:38 +00:00
basic_format_arg<Context> make_arg(const T& value) {
return fmt::internal::make_arg<Context>(value);
2014-09-23 14:59:43 +00:00
}
} // namespace
2018-05-12 15:33:51 +00:00
FMT_BEGIN_NAMESPACE
2019-01-13 02:27:38 +00:00
template <typename Char> struct formatter<test_struct, Char> {
template <typename ParseContext>
2019-01-13 02:27:38 +00:00
auto parse(ParseContext& ctx) -> decltype(ctx.begin()) {
return ctx.begin();
2017-08-13 20:09:02 +00:00
}
typedef std::back_insert_iterator<basic_buffer<Char>> iterator;
2018-01-14 15:19:23 +00:00
2019-01-13 02:27:38 +00:00
auto format(test_struct, basic_format_context<iterator, char>& ctx)
2018-04-22 16:16:32 +00:00
-> decltype(ctx.out()) {
2019-01-13 02:27:38 +00:00
const Char* test = "test";
2018-04-22 16:16:32 +00:00
return std::copy_n(test, std::strlen(test), ctx.out());
2017-08-13 20:09:02 +00:00
}
};
2018-05-12 15:33:51 +00:00
FMT_END_NAMESPACE
2017-08-13 20:09:02 +00:00
2018-10-24 13:34:28 +00:00
#if !FMT_GCC_VERSION || FMT_GCC_VERSION >= 470
2014-10-01 15:12:10 +00:00
TEST(BufferTest, Noncopyable) {
2019-01-13 02:27:38 +00:00
EXPECT_FALSE(std::is_copy_constructible<basic_buffer<char>>::value);
# if !FMT_MSC_VER
// std::is_copy_assignable is broken in MSVC2013.
2019-01-13 02:27:38 +00:00
EXPECT_FALSE(std::is_copy_assignable<basic_buffer<char>>::value);
# endif
}
2014-10-01 15:12:10 +00:00
TEST(BufferTest, Nonmoveable) {
2019-01-13 02:27:38 +00:00
EXPECT_FALSE(std::is_move_constructible<basic_buffer<char>>::value);
# if !FMT_MSC_VER
// std::is_move_assignable is broken in MSVC2013.
2019-01-13 02:27:38 +00:00
EXPECT_FALSE(std::is_move_assignable<basic_buffer<char>>::value);
# endif
}
2018-10-24 13:34:28 +00:00
#endif
2014-10-01 15:12:10 +00:00
// A test buffer with a dummy grow method.
2019-01-13 02:27:38 +00:00
template <typename T> struct test_buffer : basic_buffer<T> {
2018-10-24 13:34:28 +00:00
void grow(std::size_t capacity) { this->set(FMT_NULL, capacity); }
2014-10-01 15:12:10 +00:00
};
2014-09-30 14:30:27 +00:00
2019-01-13 02:27:38 +00:00
template <typename T> struct mock_buffer : basic_buffer<T> {
MOCK_METHOD1(do_grow, void(std::size_t capacity));
2014-10-01 16:32:31 +00:00
2017-03-12 14:30:20 +00:00
void grow(std::size_t capacity) {
this->set(this->data(), capacity);
do_grow(capacity);
2014-10-01 16:32:31 +00:00
}
2014-09-30 14:30:27 +00:00
mock_buffer() {}
2019-01-13 02:27:38 +00:00
mock_buffer(T* data) { this->set(data, 0); }
mock_buffer(T* data, std::size_t capacity) { this->set(data, capacity); }
2014-09-30 14:30:27 +00:00
};
TEST(BufferTest, Ctor) {
{
mock_buffer<int> buffer;
2018-10-24 13:34:28 +00:00
EXPECT_EQ(FMT_NULL, &buffer[0]);
EXPECT_EQ(static_cast<size_t>(0), buffer.size());
EXPECT_EQ(static_cast<size_t>(0), buffer.capacity());
2014-09-30 14:30:27 +00:00
}
{
int dummy;
mock_buffer<int> buffer(&dummy);
2014-09-30 14:30:27 +00:00
EXPECT_EQ(&dummy, &buffer[0]);
EXPECT_EQ(static_cast<size_t>(0), buffer.size());
EXPECT_EQ(static_cast<size_t>(0), buffer.capacity());
2014-09-30 14:30:27 +00:00
}
{
int dummy;
std::size_t capacity = std::numeric_limits<std::size_t>::max();
mock_buffer<int> buffer(&dummy, capacity);
2014-09-30 14:30:27 +00:00
EXPECT_EQ(&dummy, &buffer[0]);
EXPECT_EQ(static_cast<size_t>(0), buffer.size());
2014-09-30 14:30:27 +00:00
EXPECT_EQ(capacity, buffer.capacity());
}
}
struct dying_buffer : test_buffer<int> {
2014-10-01 15:24:47 +00:00
MOCK_METHOD0(die, void());
~dying_buffer() { die(); }
2014-10-01 15:24:47 +00:00
};
2014-09-30 14:30:27 +00:00
TEST(BufferTest, VirtualDtor) {
typedef StrictMock<dying_buffer> stict_mock_buffer;
2019-01-13 02:27:38 +00:00
stict_mock_buffer* mock_buffer = new stict_mock_buffer();
2014-10-01 15:12:10 +00:00
EXPECT_CALL(*mock_buffer, die());
2019-01-13 02:27:38 +00:00
basic_buffer<int>* buffer = mock_buffer;
2014-09-30 14:30:27 +00:00
delete buffer;
}
TEST(BufferTest, Access) {
char data[10];
mock_buffer<char> buffer(data, sizeof(data));
2014-09-30 14:30:27 +00:00
buffer[0] = 11;
EXPECT_EQ(11, buffer[0]);
buffer[3] = 42;
EXPECT_EQ(42, *(&buffer[0] + 3));
2019-01-13 02:27:38 +00:00
const basic_buffer<char>& const_buffer = buffer;
2014-09-30 14:30:27 +00:00
EXPECT_EQ(42, const_buffer[3]);
}
2014-10-01 15:12:10 +00:00
TEST(BufferTest, Resize) {
char data[123];
mock_buffer<char> buffer(data, sizeof(data));
2014-10-01 15:12:10 +00:00
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 16:32:31 +00:00
EXPECT_CALL(buffer, do_grow(124));
2014-10-01 15:12:10 +00:00
buffer.resize(124);
2014-10-01 16:32:31 +00:00
EXPECT_CALL(buffer, do_grow(200));
2014-10-01 15:12:10 +00:00
buffer.resize(200);
}
TEST(BufferTest, Clear) {
test_buffer<char> buffer;
2014-10-01 15:12:10 +00:00
buffer.resize(20);
buffer.resize(0);
EXPECT_EQ(static_cast<size_t>(0), buffer.size());
2014-10-01 15:12:10 +00:00
EXPECT_EQ(20u, buffer.capacity());
}
TEST(BufferTest, Append) {
char data[15];
mock_buffer<char> buffer(data, 10);
2019-01-13 02:27:38 +00:00
const char* test = "test";
2014-10-01 15:12:10 +00:00
buffer.append(test, test + 5);
EXPECT_STREQ(test, &buffer[0]);
EXPECT_EQ(5u, buffer.size());
buffer.resize(10);
2014-10-01 16:32:31 +00:00
EXPECT_CALL(buffer, do_grow(12));
2014-10-01 15:12:10 +00: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];
mock_buffer<char> buffer(data, 10);
2019-01-13 02:27:38 +00:00
const char* test = "abcdefgh";
2014-10-01 15:12:10 +00:00
buffer.resize(10);
2014-10-01 16:32:31 +00:00
EXPECT_CALL(buffer, do_grow(19));
2014-10-01 15:12:10 +00:00
buffer.append(test, test + 9);
}
TEST(ArgTest, FormatArgs) {
2017-12-03 15:32:04 +00:00
fmt::format_args args;
2018-04-21 21:29:24 +00:00
EXPECT_FALSE(args.get(1));
2014-09-25 16:11:51 +00:00
}
2018-01-14 19:00:27 +00:00
struct custom_context {
typedef char char_type;
2017-08-13 20:09:02 +00:00
2019-01-13 02:27:38 +00:00
template <typename T> struct formatter_type {
struct type {
template <typename ParseContext>
2019-01-13 02:27:38 +00:00
auto parse(ParseContext& ctx) -> decltype(ctx.begin()) {
return ctx.begin();
}
2019-01-13 02:27:38 +00:00
const char* format(const T&, custom_context& ctx) {
ctx.called = true;
2018-10-24 13:34:28 +00:00
return FMT_NULL;
}
};
2017-08-13 20:09:02 +00:00
};
2016-11-07 00:11:24 +00:00
bool called;
fmt::format_parse_context ctx;
2015-12-02 16:41:05 +00:00
fmt::format_parse_context& parse_context() { return ctx; }
2019-01-13 02:27:38 +00:00
void advance_to(const char*) {}
2017-08-13 20:09:02 +00:00
};
2015-12-02 16:41:05 +00:00
TEST(ArgTest, MakeValueWithCustomContext) {
test_struct t;
2018-02-03 14:14:10 +00:00
fmt::internal::value<custom_context> arg =
2018-09-08 20:09:44 +00:00
fmt::internal::make_value<custom_context>(t);
custom_context ctx = {false, fmt::format_parse_context("")};
arg.custom.format(&t, ctx.parse_context(), ctx);
2016-11-07 00:11:24 +00:00
EXPECT_TRUE(ctx.called);
2015-12-02 16:41:05 +00:00
}
2018-05-12 15:33:51 +00:00
FMT_BEGIN_NAMESPACE
namespace internal {
2016-12-28 15:55:33 +00:00
template <typename Char>
2017-02-19 14:46:51 +00:00
bool operator==(custom_value<Char> lhs, custom_value<Char> rhs) {
return lhs.value == rhs.value;
}
2019-01-13 02:27:38 +00:00
} // namespace internal
2018-05-12 15:33:51 +00:00
FMT_END_NAMESPACE
2014-07-14 13:55:29 +00:00
2018-03-03 22:04:59 +00:00
// Use a unique result type to make sure that there are no undesirable
// conversions.
struct test_result {};
2019-01-13 02:27:38 +00:00
template <typename T> struct mock_visitor {
template <typename U> struct result { typedef test_result type; };
mock_visitor() {
ON_CALL(*this, visit(_)).WillByDefault(testing::Return(test_result()));
}
2019-01-13 02:27:38 +00:00
MOCK_METHOD1_T(visit, test_result(T value));
MOCK_METHOD0_T(unexpected, void());
test_result operator()(T value) { return visit(value); }
2019-01-13 02:27:38 +00:00
template <typename U> test_result operator()(U) {
unexpected();
return test_result();
2014-07-14 14:27:07 +00:00
}
2014-07-14 13:55:29 +00:00
};
2019-01-13 02:27:38 +00:00
template <typename T> struct visit_type { typedef T Type; };
#define VISIT_TYPE(Type_, visit_type_) \
2019-01-13 02:27:38 +00:00
template <> struct visit_type<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
2017-08-26 16:09:43 +00:00
VISIT_TYPE(long, long long);
VISIT_TYPE(unsigned long, unsigned long long);
#endif
VISIT_TYPE(float, double);
#define CHECK_ARG_(Char, expected, value) \
{ \
testing::StrictMock<mock_visitor<decltype(expected)>> visitor; \
EXPECT_CALL(visitor, visit(expected)); \
typedef std::back_insert_iterator<basic_buffer<Char>> iterator; \
fmt::visit_format_arg( \
visitor, make_arg<fmt::basic_format_context<iterator, Char>>(value)); \
2019-01-13 02:27:38 +00:00
}
2019-01-13 02:27:38 +00:00
#define CHECK_ARG(value, typename_) \
{ \
typedef decltype(value) value_type; \
typename_ visit_type<value_type>::Type expected = value; \
CHECK_ARG_(char, expected, value) \
CHECK_ARG_(wchar_t, expected, value) \
}
2019-01-13 02:27:38 +00:00
template <typename T> class NumericArgTest : public testing::Test {};
2019-01-13 02:27:38 +00:00
typedef ::testing::Types<bool, signed char, unsigned char, signed,
unsigned short, int, unsigned, long, unsigned long,
long long, unsigned long long, float, double,
long double>
Types;
TYPED_TEST_CASE(NumericArgTest, Types);
template <typename T>
typename std::enable_if<std::is_integral<T>::value, T>::type test_value() {
return static_cast<T>(42);
}
template <typename T>
typename std::enable_if<std::is_floating_point<T>::value, T>::type
2019-01-13 02:27:38 +00:00
test_value() {
return static_cast<T>(4.2);
}
TYPED_TEST(NumericArgTest, MakeAndVisit) {
2018-03-03 22:04:59 +00:00
CHECK_ARG(test_value<TypeParam>(), typename);
CHECK_ARG(std::numeric_limits<TypeParam>::min(), typename);
CHECK_ARG(std::numeric_limits<TypeParam>::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";
2019-01-13 02:27:38 +00:00
char* str = str_data;
const char* cstr = str;
CHECK_ARG_(char, cstr, str);
string_view sref(str);
2016-12-12 05:13:54 +00:00
CHECK_ARG_(char, sref, std::string(str));
}
TEST(ArgTest, WStringArg) {
wchar_t str_data[] = L"test";
2019-01-13 02:27:38 +00:00
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);
2016-12-12 05:13:54 +00:00
CHECK_ARG_(wchar_t, sref, std::wstring(str));
CHECK_ARG_(wchar_t, sref, fmt::wstring_view(str));
}
TEST(ArgTest, PointerArg) {
2019-01-13 02:27:38 +00:00
void* p = FMT_NULL;
const void* cp = FMT_NULL;
CHECK_ARG_(char, cp, p);
CHECK_ARG_(wchar_t, cp, p);
2018-03-03 22:04:59 +00:00
CHECK_ARG(cp, );
}
2018-03-03 22:04:59 +00:00
struct check_custom {
test_result operator()(
fmt::basic_format_arg<fmt::format_context>::handle h) const {
struct test_buffer : fmt::internal::basic_buffer<char> {
char data[10];
2018-10-24 13:34:28 +00:00
test_buffer() : fmt::internal::basic_buffer<char>(data, 0, 10) {}
void grow(std::size_t) {}
} buffer;
2019-01-13 02:27:38 +00:00
fmt::internal::basic_buffer<char>& base = buffer;
2019-02-10 03:34:42 +00:00
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();
2018-03-03 22:04:59 +00:00
}
};
TEST(ArgTest, CustomArg) {
test_struct test;
typedef mock_visitor<fmt::basic_format_arg<fmt::format_context>::handle>
2019-01-13 02:27:38 +00:00
visitor;
2018-03-03 22:04:59 +00:00
testing::StrictMock<visitor> v;
EXPECT_CALL(v, visit(_)).WillOnce(testing::Invoke(check_custom()));
fmt::visit_format_arg(v, make_arg<fmt::format_context>(test));
2014-07-14 13:55:29 +00:00
}
TEST(ArgTest, VisitInvalidArg) {
2019-01-13 02:27:38 +00:00
testing::StrictMock<mock_visitor<fmt::monostate>> visitor;
2016-12-27 15:43:25 +00:00
EXPECT_CALL(visitor, visit(_));
2018-04-08 14:03:44 +00:00
fmt::basic_format_arg<fmt::format_context> arg;
fmt::visit_format_arg(visitor, arg);
2014-07-16 14:55:31 +00:00
}
TEST(StringViewTest, Length) {
2015-02-17 14:45:45 +00:00
// Test that StringRef::size() returns string length, not buffer size.
2015-02-24 17:52:16 +00:00
char str[100] = "some string";
EXPECT_EQ(std::strlen(str), string_view(str).size());
2015-02-24 17:52:16 +00:00
EXPECT_LT(std::strlen(str), sizeof(str));
2014-10-30 13:27:44 +00:00
}
// Check string_view's comparison operator.
2019-01-13 02:27:38 +00:00
template <template <typename> class Op> void check_op() {
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) {
string_view lhs(inputs[i]), rhs(inputs[j]);
EXPECT_EQ(Op<int>()(lhs.compare(rhs), 0), Op<string_view>()(lhs, rhs));
}
}
}
TEST(StringViewTest, Compare) {
EXPECT_EQ(string_view("foo").compare(string_view("foo")), 0);
EXPECT_GT(string_view("fop").compare(string_view("foo")), 0);
EXPECT_LT(string_view("foo").compare(string_view("fop")), 0);
EXPECT_GT(string_view("foo").compare(string_view("fo")), 0);
EXPECT_LT(string_view("fo").compare(string_view("foo")), 0);
check_op<std::equal_to>();
check_op<std::not_equal_to>();
check_op<std::less>();
check_op<std::less_equal>();
check_op<std::greater>();
check_op<std::greater_equal>();
}
enum basic_enum {};
TEST(CoreTest, ConvertToInt) {
2018-08-22 14:40:06 +00:00
EXPECT_FALSE((fmt::convert_to_int<char, char>::value));
2019-01-13 02:27:38 +00:00
EXPECT_FALSE((fmt::convert_to_int<const char*, char>::value));
EXPECT_TRUE((fmt::convert_to_int<basic_enum, char>::value));
}
2018-09-21 14:21:49 +00:00
enum enum_with_underlying_type : char {};
2018-04-22 00:26:24 +00:00
TEST(CoreTest, IsEnumConvertibleToInt) {
EXPECT_TRUE((fmt::convert_to_int<enum_with_underlying_type, char>::value));
}
namespace my_ns {
2019-01-13 02:27:38 +00:00
template <typename Char> class my_string {
public:
2019-01-13 02:27:38 +00:00
my_string(const Char* s) : s_(s) {}
const Char* data() const FMT_NOEXCEPT { return s_.data(); }
std::size_t length() const FMT_NOEXCEPT { return s_.size(); }
operator const Char*() const { return s_.c_str(); }
2019-01-13 02:27:38 +00:00
private:
std::basic_string<Char> s_;
};
template <typename Char>
2019-01-13 02:27:38 +00:00
inline fmt::basic_string_view<Char> to_string_view(const my_string<Char>& s)
FMT_NOEXCEPT {
return {s.data(), s.length()};
}
struct non_string {};
2019-01-13 02:27:38 +00:00
} // namespace my_ns
namespace FakeQt {
class QString {
public:
2019-01-13 02:27:38 +00:00
QString(const wchar_t* s) : s_(std::make_shared<std::wstring>(s)) {}
const wchar_t* utf16() const FMT_NOEXCEPT { return s_->data(); }
int size() const FMT_NOEXCEPT { return static_cast<int>(s_->size()); }
#ifdef FMT_STRING_VIEW
operator FMT_STRING_VIEW<wchar_t>() const FMT_NOEXCEPT { return *s_; }
#endif
private:
std::shared_ptr<std::wstring> s_;
};
2019-01-13 02:27:38 +00:00
inline fmt::basic_string_view<wchar_t> to_string_view(const QString& s)
FMT_NOEXCEPT {
return {s.utf16(), static_cast<std::size_t>(s.size())};
}
2019-01-13 02:27:38 +00:00
} // namespace FakeQt
2019-01-13 02:27:38 +00:00
template <typename T> class IsStringTest : public testing::Test {};
typedef ::testing::Types<char, wchar_t, char16_t, char32_t> StringCharTypes;
TYPED_TEST_CASE(IsStringTest, StringCharTypes);
namespace {
template <typename Char>
struct derived_from_string_view : fmt::basic_string_view<Char> {};
2019-01-13 02:27:38 +00:00
} // namespace
TYPED_TEST(IsStringTest, IsString) {
2019-01-13 02:27:38 +00:00
EXPECT_TRUE((fmt::internal::is_string<TypeParam*>::value));
EXPECT_TRUE((fmt::internal::is_string<const TypeParam*>::value));
EXPECT_TRUE((fmt::internal::is_string<TypeParam[2]>::value));
EXPECT_TRUE((fmt::internal::is_string<const TypeParam[2]>::value));
EXPECT_TRUE((fmt::internal::is_string<std::basic_string<TypeParam>>::value));
EXPECT_TRUE(
2019-01-13 02:27:38 +00:00
(fmt::internal::is_string<fmt::basic_string_view<TypeParam>>::value));
EXPECT_TRUE(
2019-01-13 02:27:38 +00:00
(fmt::internal::is_string<derived_from_string_view<TypeParam>>::value));
#ifdef FMT_STRING_VIEW
EXPECT_TRUE((fmt::internal::is_string<FMT_STRING_VIEW<TypeParam>>::value));
#endif
EXPECT_TRUE((fmt::internal::is_string<my_ns::my_string<TypeParam>>::value));
EXPECT_FALSE((fmt::internal::is_string<my_ns::non_string>::value));
EXPECT_TRUE((fmt::internal::is_string<FakeQt::QString>::value));
}
TEST(CoreTest, Format) {
// This should work without including fmt/format.h.
#ifdef FMT_FORMAT_H_
2019-01-13 02:27:38 +00:00
# error fmt/format.h must not be included in the core test
#endif
EXPECT_EQ(fmt::format("{}", 42), "42");
}
2018-10-25 01:42:42 +00:00
TEST(CoreTest, FormatTo) {
// This should work without including fmt/format.h.
#ifdef FMT_FORMAT_H_
2019-01-13 02:27:38 +00:00
# error fmt/format.h must not be included in the core test
2018-10-25 01:42:42 +00:00
#endif
std::string s;
fmt::format_to(std::back_inserter(s), "{}", 42);
EXPECT_EQ(s, "42");
}
TEST(CoreTest, ToStringViewForeignStrings) {
using namespace my_ns;
using namespace FakeQt;
EXPECT_EQ(to_string_view(my_string<char>("42")), "42");
EXPECT_EQ(to_string_view(my_string<wchar_t>(L"42")), L"42");
EXPECT_EQ(to_string_view(QString(L"42")), L"42");
fmt::internal::type type =
fmt::internal::get_type<fmt::format_context, my_string<char>>::value;
EXPECT_EQ(type, fmt::internal::string_type);
type =
fmt::internal::get_type<fmt::wformat_context, my_string<wchar_t>>::value;
EXPECT_EQ(type, fmt::internal::string_type);
type = fmt::internal::get_type<fmt::wformat_context, QString>::value;
EXPECT_EQ(type, fmt::internal::string_type);
// Does not compile: only wide format contexts are compatible with QString!
// type = fmt::internal::get_type<fmt::format_context, QString>::value;
}
TEST(CoreTest, FormatForeignStrings) {
using namespace my_ns;
using namespace FakeQt;
EXPECT_EQ(fmt::format(my_string<char>("{}"), 42), "42");
EXPECT_EQ(fmt::format(my_string<wchar_t>(L"{}"), 42), L"42");
EXPECT_EQ(fmt::format(QString(L"{}"), 42), L"42");
EXPECT_EQ(fmt::format(QString(L"{}"), my_string<wchar_t>(L"42")), L"42");
EXPECT_EQ(fmt::format(my_string<wchar_t>(L"{}"), QString(L"42")), L"42");
}
2018-10-28 00:10:19 +00:00
struct implicitly_convertible_to_string_view {
operator fmt::string_view() const { return "foo"; }
};
TEST(FormatterTest, FormatImplicitlyConvertibleToStringView) {
EXPECT_EQ("foo", fmt::format("{}", implicitly_convertible_to_string_view()));
}
// std::is_constructible is broken in MSVC until version 2015.
#if FMT_USE_EXPLICIT && (!FMT_MSC_VER || FMT_MSC_VER >= 1900)
struct explicitly_convertible_to_string_view {
explicit operator fmt::string_view() const { return "foo"; }
};
TEST(FormatterTest, FormatExplicitlyConvertibleToStringView) {
EXPECT_EQ("foo", fmt::format("{}", explicitly_convertible_to_string_view()));
}
struct explicitly_convertible_to_wstring_view {
explicit operator fmt::wstring_view() const { return L"foo"; }
};
TEST(FormatterTest, FormatExplicitlyConvertibleToWStringView) {
EXPECT_EQ(L"foo",
fmt::format(L"{}", explicitly_convertible_to_wstring_view()));
}
struct explicitly_convertible_to_string_like {
2019-01-13 02:27:38 +00:00
template <typename String,
typename = typename std::enable_if<std::is_constructible<
String, const char*, std::size_t>::value>::type>
FMT_EXPLICIT operator String() const {
return String("foo", 3u);
}
2018-10-28 00:10:19 +00:00
};
TEST(FormatterTest, FormatExplicitlyConvertibleToStringLike) {
EXPECT_EQ("foo", fmt::format("{}", explicitly_convertible_to_string_like()));
}
#endif