mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
1956 lines
70 KiB
C++
1956 lines
70 KiB
C++
/*
|
|
Formatting library 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.
|
|
*/
|
|
|
|
#include <cctype>
|
|
#include <cfloat>
|
|
#include <climits>
|
|
#include <cmath>
|
|
#include <cstring>
|
|
#include <list>
|
|
#include <memory>
|
|
#include <stdint.h>
|
|
|
|
#include "gmock/gmock.h"
|
|
|
|
// Test that the library compiles if None is defined to 0 as done by xlib.h.
|
|
#define None 0
|
|
|
|
#include "fmt/format.h"
|
|
|
|
#include "util.h"
|
|
#include "mock-allocator.h"
|
|
#include "gtest-extra.h"
|
|
|
|
#undef min
|
|
#undef max
|
|
|
|
using std::size_t;
|
|
|
|
using fmt::basic_writer;
|
|
using fmt::format;
|
|
using fmt::format_error;
|
|
using fmt::string_view;
|
|
using fmt::memory_buffer;
|
|
using fmt::wmemory_buffer;
|
|
using fmt::fill;
|
|
using fmt::type;
|
|
using fmt::width;
|
|
|
|
namespace {
|
|
|
|
// Format value using the standard library.
|
|
template <typename Char, typename T>
|
|
void std_format(const T &value, std::basic_string<Char> &result) {
|
|
std::basic_ostringstream<Char> os;
|
|
os << value;
|
|
result = os.str();
|
|
}
|
|
|
|
#ifdef __MINGW32__
|
|
// Workaround a bug in formatting long double in MinGW.
|
|
void std_format(long double value, std::string &result) {
|
|
char buffer[100];
|
|
safe_sprintf(buffer, "%Lg", value);
|
|
result = buffer;
|
|
}
|
|
void std_format(long double value, std::wstring &result) {
|
|
wchar_t buffer[100];
|
|
swprintf(buffer, L"%Lg", value);
|
|
result = buffer;
|
|
}
|
|
#endif
|
|
|
|
// Checks if writing value to BasicWriter<Char> produces the same result
|
|
// as writing it to std::basic_ostringstream<Char>.
|
|
template <typename Char, typename T>
|
|
::testing::AssertionResult check_write(const T &value, const char *type) {
|
|
fmt::basic_memory_buffer<Char> buffer;
|
|
using range = fmt::back_insert_range<fmt::internal::basic_buffer<Char>>;
|
|
fmt::basic_writer<range> writer(buffer);
|
|
writer.write(value);
|
|
std::basic_string<Char> actual = to_string(buffer);
|
|
std::basic_string<Char> expected;
|
|
std_format(value, expected);
|
|
if (expected == actual)
|
|
return ::testing::AssertionSuccess();
|
|
return ::testing::AssertionFailure()
|
|
<< "Value of: (Writer<" << type << ">() << value).str()\n"
|
|
<< " Actual: " << actual << "\n"
|
|
<< "Expected: " << expected << "\n";
|
|
}
|
|
|
|
struct AnyWriteChecker {
|
|
template <typename T>
|
|
::testing::AssertionResult operator()(const char *, const T &value) const {
|
|
::testing::AssertionResult result = check_write<char>(value, "char");
|
|
return result ? check_write<wchar_t>(value, "wchar_t") : result;
|
|
}
|
|
};
|
|
|
|
template <typename Char>
|
|
struct WriteChecker {
|
|
template <typename T>
|
|
::testing::AssertionResult operator()(const char *, const T &value) const {
|
|
return check_write<Char>(value, "char");
|
|
}
|
|
};
|
|
|
|
// Checks if writing value to BasicWriter produces the same result
|
|
// as writing it to std::ostringstream both for char and wchar_t.
|
|
#define CHECK_WRITE(value) EXPECT_PRED_FORMAT1(AnyWriteChecker(), value)
|
|
|
|
#define CHECK_WRITE_CHAR(value) \
|
|
EXPECT_PRED_FORMAT1(WriteChecker<char>(), value)
|
|
#define CHECK_WRITE_WCHAR(value) \
|
|
EXPECT_PRED_FORMAT1(WriteChecker<wchar_t>(), value)
|
|
} // namespace
|
|
|
|
TEST(StringViewTest, Ctor) {
|
|
EXPECT_STREQ("abc", string_view("abc").data());
|
|
EXPECT_EQ(3u, string_view("abc").size());
|
|
|
|
EXPECT_STREQ("defg", string_view(std::string("defg")).data());
|
|
EXPECT_EQ(4u, string_view(std::string("defg")).size());
|
|
}
|
|
|
|
TEST(StringViewTest, ConvertToString) {
|
|
std::string s = string_view("abc").to_string();
|
|
EXPECT_EQ("abc", s);
|
|
}
|
|
|
|
TEST(WriterTest, NotCopyConstructible) {
|
|
EXPECT_FALSE(std::is_copy_constructible<fmt::writer>::value);
|
|
}
|
|
|
|
TEST(WriterTest, NotCopyAssignable) {
|
|
EXPECT_FALSE(std::is_copy_assignable<fmt::writer>::value);
|
|
}
|
|
|
|
TEST(WriterTest, Data) {
|
|
memory_buffer buf;
|
|
fmt::writer w(buf);
|
|
w.write(42);
|
|
EXPECT_EQ("42", to_string(buf));
|
|
}
|
|
|
|
TEST(WriterTest, WriteInt) {
|
|
CHECK_WRITE(42);
|
|
CHECK_WRITE(-42);
|
|
CHECK_WRITE(static_cast<short>(12));
|
|
CHECK_WRITE(34u);
|
|
CHECK_WRITE(std::numeric_limits<int>::min());
|
|
CHECK_WRITE(std::numeric_limits<int>::max());
|
|
CHECK_WRITE(std::numeric_limits<unsigned>::max());
|
|
}
|
|
|
|
TEST(WriterTest, WriteLong) {
|
|
CHECK_WRITE(56l);
|
|
CHECK_WRITE(78ul);
|
|
CHECK_WRITE(std::numeric_limits<long>::min());
|
|
CHECK_WRITE(std::numeric_limits<long>::max());
|
|
CHECK_WRITE(std::numeric_limits<unsigned long>::max());
|
|
}
|
|
|
|
TEST(WriterTest, WriteLongLong) {
|
|
CHECK_WRITE(56ll);
|
|
CHECK_WRITE(78ull);
|
|
CHECK_WRITE(std::numeric_limits<long long>::min());
|
|
CHECK_WRITE(std::numeric_limits<long long>::max());
|
|
CHECK_WRITE(std::numeric_limits<unsigned long long>::max());
|
|
}
|
|
|
|
TEST(WriterTest, WriteDouble) {
|
|
CHECK_WRITE(4.2);
|
|
CHECK_WRITE(-4.2);
|
|
CHECK_WRITE(std::numeric_limits<double>::min());
|
|
CHECK_WRITE(std::numeric_limits<double>::max());
|
|
}
|
|
|
|
TEST(WriterTest, WriteLongDouble) {
|
|
CHECK_WRITE(4.2l);
|
|
CHECK_WRITE_CHAR(-4.2l);
|
|
std::wstring str;
|
|
std_format(4.2l, str);
|
|
if (str[0] != '-')
|
|
CHECK_WRITE_WCHAR(-4.2l);
|
|
else
|
|
fmt::print("warning: long double formatting with std::swprintf is broken");
|
|
CHECK_WRITE(std::numeric_limits<long double>::min());
|
|
CHECK_WRITE(std::numeric_limits<long double>::max());
|
|
}
|
|
|
|
TEST(WriterTest, WriteDoubleAtBufferBoundary) {
|
|
memory_buffer buf;
|
|
fmt::writer writer(buf);
|
|
for (int i = 0; i < 100; ++i)
|
|
writer.write(1.23456789);
|
|
}
|
|
|
|
TEST(WriterTest, WriteDoubleWithFilledBuffer) {
|
|
memory_buffer buf;
|
|
fmt::writer writer(buf);
|
|
// Fill the buffer.
|
|
for (int i = 0; i < fmt::internal::INLINE_BUFFER_SIZE; ++i)
|
|
writer.write(' ');
|
|
writer.write(1.2);
|
|
fmt::string_view sv(buf.data(), buf.size());
|
|
sv.remove_prefix(fmt::internal::INLINE_BUFFER_SIZE);
|
|
EXPECT_EQ("1.2", sv);
|
|
}
|
|
|
|
TEST(WriterTest, WriteChar) {
|
|
CHECK_WRITE('a');
|
|
}
|
|
|
|
TEST(WriterTest, WriteWideChar) {
|
|
CHECK_WRITE_WCHAR(L'a');
|
|
}
|
|
|
|
TEST(WriterTest, WriteString) {
|
|
CHECK_WRITE_CHAR("abc");
|
|
CHECK_WRITE_WCHAR("abc");
|
|
// The following line shouldn't compile:
|
|
//std::declval<fmt::basic_writer<fmt::buffer>>().write(L"abc");
|
|
}
|
|
|
|
TEST(WriterTest, WriteWideString) {
|
|
CHECK_WRITE_WCHAR(L"abc");
|
|
// The following line shouldn't compile:
|
|
//std::declval<fmt::basic_writer<fmt::wbuffer>>().write("abc");
|
|
}
|
|
|
|
template <typename... T>
|
|
std::string write_str(T... args) {
|
|
memory_buffer buf;
|
|
fmt::writer writer(buf);
|
|
writer.write(args...);
|
|
return to_string(buf);
|
|
}
|
|
|
|
template <typename... T>
|
|
std::wstring write_wstr(T... args) {
|
|
wmemory_buffer buf;
|
|
fmt::wwriter writer(buf);
|
|
writer.write(args...);
|
|
return to_string(buf);
|
|
}
|
|
|
|
TEST(WriterTest, bin) {
|
|
EXPECT_EQ("1100101011111110", write_str(0xcafe, type='b'));
|
|
EXPECT_EQ("1011101010111110", write_str(0xbabeu, type='b'));
|
|
EXPECT_EQ("1101111010101101", write_str(0xdeadl, type='b'));
|
|
EXPECT_EQ("1011111011101111", write_str(0xbeeful, type='b'));
|
|
EXPECT_EQ("11001010111111101011101010111110",
|
|
write_str(0xcafebabell, type='b'));
|
|
EXPECT_EQ("11011110101011011011111011101111",
|
|
write_str(0xdeadbeefull, type='b'));
|
|
}
|
|
|
|
TEST(WriterTest, oct) {
|
|
EXPECT_EQ("12", write_str(static_cast<short>(012), type='o'));
|
|
EXPECT_EQ("12", write_str(012, type='o'));
|
|
EXPECT_EQ("34", write_str(034u, type='o'));
|
|
EXPECT_EQ("56", write_str(056l, type='o'));
|
|
EXPECT_EQ("70", write_str(070ul, type='o'));
|
|
EXPECT_EQ("1234", write_str(01234ll, type='o'));
|
|
EXPECT_EQ("5670", write_str(05670ull, type='o'));
|
|
}
|
|
|
|
TEST(WriterTest, hex) {
|
|
EXPECT_EQ("cafe", write_str(0xcafe, type='x'));
|
|
EXPECT_EQ("babe", write_str(0xbabeu, type='x'));
|
|
EXPECT_EQ("dead", write_str(0xdeadl, type='x'));
|
|
EXPECT_EQ("beef", write_str(0xbeeful, type='x'));
|
|
EXPECT_EQ("cafebabe", write_str(0xcafebabell, type='x'));
|
|
EXPECT_EQ("deadbeef", write_str(0xdeadbeefull, type='x'));
|
|
}
|
|
|
|
TEST(WriterTest, hexu) {
|
|
EXPECT_EQ("CAFE", write_str(0xcafe, type='X'));
|
|
EXPECT_EQ("BABE", write_str(0xbabeu, type='X'));
|
|
EXPECT_EQ("DEAD", write_str(0xdeadl, type='X'));
|
|
EXPECT_EQ("BEEF", write_str(0xbeeful, type='X'));
|
|
EXPECT_EQ("CAFEBABE", write_str(0xcafebabell, type='X'));
|
|
EXPECT_EQ("DEADBEEF", write_str(0xdeadbeefull, type='X'));
|
|
}
|
|
|
|
template <typename Range>
|
|
basic_writer<Range> &operator<<(basic_writer<Range> &w, const Date &d) {
|
|
w.write(d.year());
|
|
w.write('-');
|
|
w.write(d.month());
|
|
w.write('-');
|
|
w.write(d.day());
|
|
return w;
|
|
}
|
|
|
|
class ISO8601DateFormatter {
|
|
const Date *date_;
|
|
|
|
public:
|
|
ISO8601DateFormatter(const Date &d) : date_(&d) {}
|
|
|
|
template <typename Range>
|
|
friend basic_writer<Range> &operator<<(
|
|
basic_writer<Range> &w, const ISO8601DateFormatter &d) {
|
|
w.write(d.date_->year(), width=4, fill='0');
|
|
w.write('-');
|
|
w.write(d.date_->month(), width=2, fill='0');
|
|
w.write('-');
|
|
w.write(d.date_->day(), width=2, fill='0');
|
|
return w;
|
|
}
|
|
};
|
|
|
|
ISO8601DateFormatter iso8601(const Date &d) { return ISO8601DateFormatter(d); }
|
|
|
|
TEST(WriterTest, pad) {
|
|
EXPECT_EQ(" cafe", write_str(0xcafe, width=8, type='x'));
|
|
EXPECT_EQ(" babe", write_str(0xbabeu, width=8, type='x'));
|
|
EXPECT_EQ(" dead", write_str(0xdeadl, width=8, type='x'));
|
|
EXPECT_EQ(" beef", write_str(0xbeeful, width=8, type='x'));
|
|
EXPECT_EQ(" dead", write_str(0xdeadll, width=8, type='x'));
|
|
EXPECT_EQ(" beef", write_str(0xbeefull, width=8, type='x'));
|
|
|
|
EXPECT_EQ(" 11", write_str(11, width=7));
|
|
EXPECT_EQ(" 22", write_str(22u, width=7));
|
|
EXPECT_EQ(" 33", write_str(33l, width=7));
|
|
EXPECT_EQ(" 44", write_str(44ul, width=7));
|
|
EXPECT_EQ(" 33", write_str(33ll, width=7));
|
|
EXPECT_EQ(" 44", write_str(44ull, width=7));
|
|
|
|
EXPECT_EQ("00042", write_str(42, fmt::width=5, fmt::fill='0'));
|
|
|
|
{
|
|
memory_buffer buf;
|
|
fmt::writer w(buf);
|
|
w << Date(2012, 12, 9);
|
|
EXPECT_EQ("2012-12-9", to_string(buf));
|
|
}
|
|
{
|
|
memory_buffer buf;
|
|
fmt::writer w(buf);
|
|
w << iso8601(Date(2012, 1, 9));
|
|
EXPECT_EQ("2012-01-09", to_string(buf));
|
|
}
|
|
}
|
|
|
|
TEST(WriterTest, PadString) {
|
|
EXPECT_EQ("test ", write_str("test", width=8));
|
|
EXPECT_EQ("test******", write_str("test", width=10, fill='*'));
|
|
}
|
|
|
|
TEST(WriterTest, PadWString) {
|
|
EXPECT_EQ(L"test ", write_wstr(L"test", width=8));
|
|
EXPECT_EQ(L"test******", write_wstr(L"test", width=10, fill='*'));
|
|
EXPECT_EQ(L"test******", write_wstr(L"test", width=10, fill=L'*'));
|
|
}
|
|
|
|
TEST(WriterTest, WWriter) {
|
|
EXPECT_EQ(L"cafe", write_wstr(0xcafe, type='x'));
|
|
}
|
|
|
|
TEST(FormatToTest, FormatWithoutArgs) {
|
|
std::string s;
|
|
fmt::format_to(std::back_inserter(s), "test");
|
|
EXPECT_EQ("test", s);
|
|
}
|
|
|
|
TEST(FormatToTest, Format) {
|
|
std::string s;
|
|
fmt::format_to(std::back_inserter(s), "part{0}", 1);
|
|
EXPECT_EQ("part1", s);
|
|
fmt::format_to(std::back_inserter(s), "part{0}", 2);
|
|
EXPECT_EQ("part1part2", s);
|
|
}
|
|
|
|
TEST(FormatterTest, Escape) {
|
|
EXPECT_EQ("{", format("{{"));
|
|
EXPECT_EQ("before {", format("before {{"));
|
|
EXPECT_EQ("{ after", format("{{ after"));
|
|
EXPECT_EQ("before { after", format("before {{ after"));
|
|
|
|
EXPECT_EQ("}", format("}}"));
|
|
EXPECT_EQ("before }", format("before }}"));
|
|
EXPECT_EQ("} after", format("}} after"));
|
|
EXPECT_EQ("before } after", format("before }} after"));
|
|
|
|
EXPECT_EQ("{}", format("{{}}"));
|
|
EXPECT_EQ("{42}", format("{{{0}}}", 42));
|
|
}
|
|
|
|
TEST(FormatterTest, UnmatchedBraces) {
|
|
EXPECT_THROW_MSG(format("{"), format_error, "invalid format string");
|
|
EXPECT_THROW_MSG(format("}"), format_error, "unmatched '}' in format string");
|
|
EXPECT_THROW_MSG(format("{0{}"), format_error, "invalid format string");
|
|
}
|
|
|
|
TEST(FormatterTest, NoArgs) {
|
|
EXPECT_EQ("test", format("test"));
|
|
}
|
|
|
|
TEST(FormatterTest, ArgsInDifferentPositions) {
|
|
EXPECT_EQ("42", format("{0}", 42));
|
|
EXPECT_EQ("before 42", format("before {0}", 42));
|
|
EXPECT_EQ("42 after", format("{0} after", 42));
|
|
EXPECT_EQ("before 42 after", format("before {0} after", 42));
|
|
EXPECT_EQ("answer = 42", format("{0} = {1}", "answer", 42));
|
|
EXPECT_EQ("42 is the answer", format("{1} is the {0}", "answer", 42));
|
|
EXPECT_EQ("abracadabra", format("{0}{1}{0}", "abra", "cad"));
|
|
}
|
|
|
|
TEST(FormatterTest, ArgErrors) {
|
|
EXPECT_THROW_MSG(format("{"), format_error, "invalid format string");
|
|
EXPECT_THROW_MSG(format("{?}"), format_error, "invalid format string");
|
|
EXPECT_THROW_MSG(format("{0"), format_error, "invalid format string");
|
|
EXPECT_THROW_MSG(format("{0}"), format_error, "argument index out of range");
|
|
|
|
char format_str[BUFFER_SIZE];
|
|
safe_sprintf(format_str, "{%u", INT_MAX);
|
|
EXPECT_THROW_MSG(format(format_str), format_error, "invalid format string");
|
|
safe_sprintf(format_str, "{%u}", INT_MAX);
|
|
EXPECT_THROW_MSG(format(format_str), format_error,
|
|
"argument index out of range");
|
|
|
|
safe_sprintf(format_str, "{%u", INT_MAX + 1u);
|
|
EXPECT_THROW_MSG(format(format_str), format_error, "number is too big");
|
|
safe_sprintf(format_str, "{%u}", INT_MAX + 1u);
|
|
EXPECT_THROW_MSG(format(format_str), format_error, "number is too big");
|
|
}
|
|
|
|
template <int N>
|
|
struct TestFormat {
|
|
template <typename... Args>
|
|
static std::string format(fmt::string_view format_str, const Args & ... args) {
|
|
return TestFormat<N - 1>::format(format_str, N - 1, args...);
|
|
}
|
|
};
|
|
|
|
template <>
|
|
struct TestFormat<0> {
|
|
template <typename... Args>
|
|
static std::string format(fmt::string_view format_str, const Args & ... args) {
|
|
return fmt::format(format_str, args...);
|
|
}
|
|
};
|
|
|
|
TEST(FormatterTest, ManyArgs) {
|
|
EXPECT_EQ("19", TestFormat<20>::format("{19}"));
|
|
EXPECT_THROW_MSG(TestFormat<20>::format("{20}"),
|
|
format_error, "argument index out of range");
|
|
EXPECT_THROW_MSG(TestFormat<21>::format("{21}"),
|
|
format_error, "argument index out of range");
|
|
enum { MAX_PACKED_ARGS = fmt::internal::MAX_PACKED_ARGS };
|
|
std::string format_str = fmt::format("{{{}}}", MAX_PACKED_ARGS + 1);
|
|
EXPECT_THROW_MSG(TestFormat<MAX_PACKED_ARGS>::format(format_str),
|
|
format_error, "argument index out of range");
|
|
}
|
|
|
|
TEST(FormatterTest, NamedArg) {
|
|
EXPECT_EQ("1/a/A", format("{_1}/{a_}/{A_}", fmt::arg("a_", 'a'),
|
|
fmt::arg("A_", "A"), fmt::arg("_1", 1)));
|
|
EXPECT_THROW_MSG(format("{a}"), format_error, "argument not found");
|
|
EXPECT_EQ(" -42", format("{0:{width}}", -42, fmt::arg("width", 4)));
|
|
EXPECT_EQ("st", format("{0:.{precision}}", "str", fmt::arg("precision", 2)));
|
|
EXPECT_EQ("1 2", format("{} {two}", 1, fmt::arg("two", 2)));
|
|
}
|
|
|
|
TEST(FormatterTest, AutoArgIndex) {
|
|
EXPECT_EQ("abc", format("{}{}{}", 'a', 'b', 'c'));
|
|
EXPECT_THROW_MSG(format("{0}{}", 'a', 'b'),
|
|
format_error, "cannot switch from manual to automatic argument indexing");
|
|
EXPECT_THROW_MSG(format("{}{0}", 'a', 'b'),
|
|
format_error, "cannot switch from automatic to manual argument indexing");
|
|
EXPECT_EQ("1.2", format("{:.{}}", 1.2345, 2));
|
|
EXPECT_THROW_MSG(format("{0}:.{}", 1.2345, 2),
|
|
format_error, "cannot switch from manual to automatic argument indexing");
|
|
EXPECT_THROW_MSG(format("{:.{0}}", 1.2345, 2),
|
|
format_error, "cannot switch from automatic to manual argument indexing");
|
|
EXPECT_THROW_MSG(format("{}"), format_error, "argument index out of range");
|
|
}
|
|
|
|
TEST(FormatterTest, EmptySpecs) {
|
|
EXPECT_EQ("42", format("{0:}", 42));
|
|
}
|
|
|
|
TEST(FormatterTest, LeftAlign) {
|
|
EXPECT_EQ("42 ", format("{0:<4}", 42));
|
|
EXPECT_EQ("42 ", format("{0:<4o}", 042));
|
|
EXPECT_EQ("42 ", format("{0:<4x}", 0x42));
|
|
EXPECT_EQ("-42 ", format("{0:<5}", -42));
|
|
EXPECT_EQ("42 ", format("{0:<5}", 42u));
|
|
EXPECT_EQ("-42 ", format("{0:<5}", -42l));
|
|
EXPECT_EQ("42 ", format("{0:<5}", 42ul));
|
|
EXPECT_EQ("-42 ", format("{0:<5}", -42ll));
|
|
EXPECT_EQ("42 ", format("{0:<5}", 42ull));
|
|
EXPECT_EQ("-42 ", format("{0:<5}", -42.0));
|
|
EXPECT_EQ("-42 ", format("{0:<5}", -42.0l));
|
|
EXPECT_EQ("c ", format("{0:<5}", 'c'));
|
|
EXPECT_EQ("abc ", format("{0:<5}", "abc"));
|
|
EXPECT_EQ("0xface ", format("{0:<8}", reinterpret_cast<void*>(0xface)));
|
|
}
|
|
|
|
TEST(FormatterTest, RightAlign) {
|
|
EXPECT_EQ(" 42", format("{0:>4}", 42));
|
|
EXPECT_EQ(" 42", format("{0:>4o}", 042));
|
|
EXPECT_EQ(" 42", format("{0:>4x}", 0x42));
|
|
EXPECT_EQ(" -42", format("{0:>5}", -42));
|
|
EXPECT_EQ(" 42", format("{0:>5}", 42u));
|
|
EXPECT_EQ(" -42", format("{0:>5}", -42l));
|
|
EXPECT_EQ(" 42", format("{0:>5}", 42ul));
|
|
EXPECT_EQ(" -42", format("{0:>5}", -42ll));
|
|
EXPECT_EQ(" 42", format("{0:>5}", 42ull));
|
|
EXPECT_EQ(" -42", format("{0:>5}", -42.0));
|
|
EXPECT_EQ(" -42", format("{0:>5}", -42.0l));
|
|
EXPECT_EQ(" c", format("{0:>5}", 'c'));
|
|
EXPECT_EQ(" abc", format("{0:>5}", "abc"));
|
|
EXPECT_EQ(" 0xface", format("{0:>8}", reinterpret_cast<void*>(0xface)));
|
|
}
|
|
|
|
TEST(FormatterTest, NumericAlign) {
|
|
EXPECT_EQ(" 42", format("{0:=4}", 42));
|
|
EXPECT_EQ("+ 42", format("{0:=+4}", 42));
|
|
EXPECT_EQ(" 42", format("{0:=4o}", 042));
|
|
EXPECT_EQ("+ 42", format("{0:=+4o}", 042));
|
|
EXPECT_EQ(" 42", format("{0:=4x}", 0x42));
|
|
EXPECT_EQ("+ 42", format("{0:=+4x}", 0x42));
|
|
EXPECT_EQ("- 42", format("{0:=5}", -42));
|
|
EXPECT_EQ(" 42", format("{0:=5}", 42u));
|
|
EXPECT_EQ("- 42", format("{0:=5}", -42l));
|
|
EXPECT_EQ(" 42", format("{0:=5}", 42ul));
|
|
EXPECT_EQ("- 42", format("{0:=5}", -42ll));
|
|
EXPECT_EQ(" 42", format("{0:=5}", 42ull));
|
|
EXPECT_EQ("- 42", format("{0:=5}", -42.0));
|
|
EXPECT_EQ("- 42", format("{0:=5}", -42.0l));
|
|
EXPECT_THROW_MSG(format("{0:=5", 'c'),
|
|
format_error, "missing '}' in format string");
|
|
EXPECT_THROW_MSG(format("{0:=5}", 'c'),
|
|
format_error, "invalid format specifier for char");
|
|
EXPECT_THROW_MSG(format("{0:=5}", "abc"),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{0:=8}", reinterpret_cast<void*>(0xface)),
|
|
format_error, "format specifier requires numeric argument");
|
|
}
|
|
|
|
TEST(FormatterTest, CenterAlign) {
|
|
EXPECT_EQ(" 42 ", format("{0:^5}", 42));
|
|
EXPECT_EQ(" 42 ", format("{0:^5o}", 042));
|
|
EXPECT_EQ(" 42 ", format("{0:^5x}", 0x42));
|
|
EXPECT_EQ(" -42 ", format("{0:^5}", -42));
|
|
EXPECT_EQ(" 42 ", format("{0:^5}", 42u));
|
|
EXPECT_EQ(" -42 ", format("{0:^5}", -42l));
|
|
EXPECT_EQ(" 42 ", format("{0:^5}", 42ul));
|
|
EXPECT_EQ(" -42 ", format("{0:^5}", -42ll));
|
|
EXPECT_EQ(" 42 ", format("{0:^5}", 42ull));
|
|
EXPECT_EQ(" -42 ", format("{0:^6}", -42.0));
|
|
EXPECT_EQ(" -42 ", format("{0:^5}", -42.0l));
|
|
EXPECT_EQ(" c ", format("{0:^5}", 'c'));
|
|
EXPECT_EQ(" abc ", format("{0:^6}", "abc"));
|
|
EXPECT_EQ(" 0xface ", format("{0:^8}", reinterpret_cast<void*>(0xface)));
|
|
}
|
|
|
|
TEST(FormatterTest, Fill) {
|
|
EXPECT_THROW_MSG(format("{0:{<5}", 'c'),
|
|
format_error, "invalid fill character '{'");
|
|
EXPECT_THROW_MSG(format("{0:{<5}}", 'c'),
|
|
format_error, "invalid fill character '{'");
|
|
EXPECT_EQ("**42", format("{0:*>4}", 42));
|
|
EXPECT_EQ("**-42", format("{0:*>5}", -42));
|
|
EXPECT_EQ("***42", format("{0:*>5}", 42u));
|
|
EXPECT_EQ("**-42", format("{0:*>5}", -42l));
|
|
EXPECT_EQ("***42", format("{0:*>5}", 42ul));
|
|
EXPECT_EQ("**-42", format("{0:*>5}", -42ll));
|
|
EXPECT_EQ("***42", format("{0:*>5}", 42ull));
|
|
EXPECT_EQ("**-42", format("{0:*>5}", -42.0));
|
|
EXPECT_EQ("**-42", format("{0:*>5}", -42.0l));
|
|
EXPECT_EQ("c****", format("{0:*<5}", 'c'));
|
|
EXPECT_EQ("abc**", format("{0:*<5}", "abc"));
|
|
EXPECT_EQ("**0xface", format("{0:*>8}", reinterpret_cast<void*>(0xface)));
|
|
}
|
|
|
|
TEST(FormatterTest, PlusSign) {
|
|
EXPECT_EQ("+42", format("{0:+}", 42));
|
|
EXPECT_EQ("-42", format("{0:+}", -42));
|
|
EXPECT_EQ("+42", format("{0:+}", 42));
|
|
EXPECT_THROW_MSG(format("{0:+}", 42u),
|
|
format_error, "format specifier requires signed argument");
|
|
EXPECT_EQ("+42", format("{0:+}", 42l));
|
|
EXPECT_THROW_MSG(format("{0:+}", 42ul),
|
|
format_error, "format specifier requires signed argument");
|
|
EXPECT_EQ("+42", format("{0:+}", 42ll));
|
|
EXPECT_THROW_MSG(format("{0:+}", 42ull),
|
|
format_error, "format specifier requires signed argument");
|
|
EXPECT_EQ("+42", format("{0:+}", 42.0));
|
|
EXPECT_EQ("+42", format("{0:+}", 42.0l));
|
|
EXPECT_THROW_MSG(format("{0:+", 'c'),
|
|
format_error, "missing '}' in format string");
|
|
EXPECT_THROW_MSG(format("{0:+}", 'c'),
|
|
format_error, "invalid format specifier for char");
|
|
EXPECT_THROW_MSG(format("{0:+}", "abc"),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{0:+}", reinterpret_cast<void*>(0x42)),
|
|
format_error, "format specifier requires numeric argument");
|
|
}
|
|
|
|
TEST(FormatterTest, MinusSign) {
|
|
EXPECT_EQ("42", format("{0:-}", 42));
|
|
EXPECT_EQ("-42", format("{0:-}", -42));
|
|
EXPECT_EQ("42", format("{0:-}", 42));
|
|
EXPECT_THROW_MSG(format("{0:-}", 42u),
|
|
format_error, "format specifier requires signed argument");
|
|
EXPECT_EQ("42", format("{0:-}", 42l));
|
|
EXPECT_THROW_MSG(format("{0:-}", 42ul),
|
|
format_error, "format specifier requires signed argument");
|
|
EXPECT_EQ("42", format("{0:-}", 42ll));
|
|
EXPECT_THROW_MSG(format("{0:-}", 42ull),
|
|
format_error, "format specifier requires signed argument");
|
|
EXPECT_EQ("42", format("{0:-}", 42.0));
|
|
EXPECT_EQ("42", format("{0:-}", 42.0l));
|
|
EXPECT_THROW_MSG(format("{0:-", 'c'),
|
|
format_error, "missing '}' in format string");
|
|
EXPECT_THROW_MSG(format("{0:-}", 'c'),
|
|
format_error, "invalid format specifier for char");
|
|
EXPECT_THROW_MSG(format("{0:-}", "abc"),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{0:-}", reinterpret_cast<void*>(0x42)),
|
|
format_error, "format specifier requires numeric argument");
|
|
}
|
|
|
|
TEST(FormatterTest, SpaceSign) {
|
|
EXPECT_EQ(" 42", format("{0: }", 42));
|
|
EXPECT_EQ("-42", format("{0: }", -42));
|
|
EXPECT_EQ(" 42", format("{0: }", 42));
|
|
EXPECT_THROW_MSG(format("{0: }", 42u),
|
|
format_error, "format specifier requires signed argument");
|
|
EXPECT_EQ(" 42", format("{0: }", 42l));
|
|
EXPECT_THROW_MSG(format("{0: }", 42ul),
|
|
format_error, "format specifier requires signed argument");
|
|
EXPECT_EQ(" 42", format("{0: }", 42ll));
|
|
EXPECT_THROW_MSG(format("{0: }", 42ull),
|
|
format_error, "format specifier requires signed argument");
|
|
EXPECT_EQ(" 42", format("{0: }", 42.0));
|
|
EXPECT_EQ(" 42", format("{0: }", 42.0l));
|
|
EXPECT_THROW_MSG(format("{0: ", 'c'),
|
|
format_error, "missing '}' in format string");
|
|
EXPECT_THROW_MSG(format("{0: }", 'c'),
|
|
format_error, "invalid format specifier for char");
|
|
EXPECT_THROW_MSG(format("{0: }", "abc"),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{0: }", reinterpret_cast<void*>(0x42)),
|
|
format_error, "format specifier requires numeric argument");
|
|
}
|
|
|
|
TEST(FormatterTest, HashFlag) {
|
|
EXPECT_EQ("42", format("{0:#}", 42));
|
|
EXPECT_EQ("-42", format("{0:#}", -42));
|
|
EXPECT_EQ("0b101010", format("{0:#b}", 42));
|
|
EXPECT_EQ("0B101010", format("{0:#B}", 42));
|
|
EXPECT_EQ("-0b101010", format("{0:#b}", -42));
|
|
EXPECT_EQ("0x42", format("{0:#x}", 0x42));
|
|
EXPECT_EQ("0X42", format("{0:#X}", 0x42));
|
|
EXPECT_EQ("-0x42", format("{0:#x}", -0x42));
|
|
EXPECT_EQ("042", format("{0:#o}", 042));
|
|
EXPECT_EQ("-042", format("{0:#o}", -042));
|
|
EXPECT_EQ("42", format("{0:#}", 42u));
|
|
EXPECT_EQ("0x42", format("{0:#x}", 0x42u));
|
|
EXPECT_EQ("042", format("{0:#o}", 042u));
|
|
|
|
EXPECT_EQ("-42", format("{0:#}", -42l));
|
|
EXPECT_EQ("0x42", format("{0:#x}", 0x42l));
|
|
EXPECT_EQ("-0x42", format("{0:#x}", -0x42l));
|
|
EXPECT_EQ("042", format("{0:#o}", 042l));
|
|
EXPECT_EQ("-042", format("{0:#o}", -042l));
|
|
EXPECT_EQ("42", format("{0:#}", 42ul));
|
|
EXPECT_EQ("0x42", format("{0:#x}", 0x42ul));
|
|
EXPECT_EQ("042", format("{0:#o}", 042ul));
|
|
|
|
EXPECT_EQ("-42", format("{0:#}", -42ll));
|
|
EXPECT_EQ("0x42", format("{0:#x}", 0x42ll));
|
|
EXPECT_EQ("-0x42", format("{0:#x}", -0x42ll));
|
|
EXPECT_EQ("042", format("{0:#o}", 042ll));
|
|
EXPECT_EQ("-042", format("{0:#o}", -042ll));
|
|
EXPECT_EQ("42", format("{0:#}", 42ull));
|
|
EXPECT_EQ("0x42", format("{0:#x}", 0x42ull));
|
|
EXPECT_EQ("042", format("{0:#o}", 042ull));
|
|
|
|
EXPECT_EQ("-42.0000", format("{0:#}", -42.0));
|
|
EXPECT_EQ("-42.0000", format("{0:#}", -42.0l));
|
|
EXPECT_THROW_MSG(format("{0:#", 'c'),
|
|
format_error, "missing '}' in format string");
|
|
EXPECT_THROW_MSG(format("{0:#}", 'c'),
|
|
format_error, "invalid format specifier for char");
|
|
EXPECT_THROW_MSG(format("{0:#}", "abc"),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{0:#}", reinterpret_cast<void*>(0x42)),
|
|
format_error, "format specifier requires numeric argument");
|
|
}
|
|
|
|
TEST(FormatterTest, ZeroFlag) {
|
|
EXPECT_EQ("42", format("{0:0}", 42));
|
|
EXPECT_EQ("-0042", format("{0:05}", -42));
|
|
EXPECT_EQ("00042", format("{0:05}", 42u));
|
|
EXPECT_EQ("-0042", format("{0:05}", -42l));
|
|
EXPECT_EQ("00042", format("{0:05}", 42ul));
|
|
EXPECT_EQ("-0042", format("{0:05}", -42ll));
|
|
EXPECT_EQ("00042", format("{0:05}", 42ull));
|
|
EXPECT_EQ("-0042", format("{0:05}", -42.0));
|
|
EXPECT_EQ("-0042", format("{0:05}", -42.0l));
|
|
EXPECT_THROW_MSG(format("{0:0", 'c'),
|
|
format_error, "missing '}' in format string");
|
|
EXPECT_THROW_MSG(format("{0:05}", 'c'),
|
|
format_error, "invalid format specifier for char");
|
|
EXPECT_THROW_MSG(format("{0:05}", "abc"),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{0:05}", reinterpret_cast<void*>(0x42)),
|
|
format_error, "format specifier requires numeric argument");
|
|
}
|
|
|
|
TEST(FormatterTest, Width) {
|
|
char format_str[BUFFER_SIZE];
|
|
safe_sprintf(format_str, "{0:%u", UINT_MAX);
|
|
increment(format_str + 3);
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
std::size_t size = std::strlen(format_str);
|
|
format_str[size] = '}';
|
|
format_str[size + 1] = 0;
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
|
|
safe_sprintf(format_str, "{0:%u", INT_MAX + 1u);
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
safe_sprintf(format_str, "{0:%u}", INT_MAX + 1u);
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
EXPECT_EQ(" -42", format("{0:4}", -42));
|
|
EXPECT_EQ(" 42", format("{0:5}", 42u));
|
|
EXPECT_EQ(" -42", format("{0:6}", -42l));
|
|
EXPECT_EQ(" 42", format("{0:7}", 42ul));
|
|
EXPECT_EQ(" -42", format("{0:6}", -42ll));
|
|
EXPECT_EQ(" 42", format("{0:7}", 42ull));
|
|
EXPECT_EQ(" -1.23", format("{0:8}", -1.23));
|
|
EXPECT_EQ(" -1.23", format("{0:9}", -1.23l));
|
|
EXPECT_EQ(" 0xcafe", format("{0:10}", reinterpret_cast<void*>(0xcafe)));
|
|
EXPECT_EQ("x ", format("{0:11}", 'x'));
|
|
EXPECT_EQ("str ", format("{0:12}", "str"));
|
|
}
|
|
|
|
TEST(FormatterTest, RuntimeWidth) {
|
|
char format_str[BUFFER_SIZE];
|
|
safe_sprintf(format_str, "{0:{%u", UINT_MAX);
|
|
increment(format_str + 4);
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
std::size_t size = std::strlen(format_str);
|
|
format_str[size] = '}';
|
|
format_str[size + 1] = 0;
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
format_str[size + 1] = '}';
|
|
format_str[size + 2] = 0;
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
|
|
EXPECT_THROW_MSG(format("{0:{", 0),
|
|
format_error, "invalid format string");
|
|
EXPECT_THROW_MSG(format("{0:{}", 0),
|
|
format_error, "cannot switch from manual to automatic argument indexing");
|
|
EXPECT_THROW_MSG(format("{0:{?}}", 0),
|
|
format_error, "invalid format string");
|
|
EXPECT_THROW_MSG(format("{0:{1}}", 0),
|
|
format_error, "argument index out of range");
|
|
|
|
EXPECT_THROW_MSG(format("{0:{0:}}", 0),
|
|
format_error, "invalid format string");
|
|
|
|
EXPECT_THROW_MSG(format("{0:{1}}", 0, -1),
|
|
format_error, "negative width");
|
|
EXPECT_THROW_MSG(format("{0:{1}}", 0, (INT_MAX + 1u)),
|
|
format_error, "number is too big");
|
|
EXPECT_THROW_MSG(format("{0:{1}}", 0, -1l),
|
|
format_error, "negative width");
|
|
if (fmt::internal::const_check(sizeof(long) > sizeof(int))) {
|
|
long value = INT_MAX;
|
|
EXPECT_THROW_MSG(format("{0:{1}}", 0, (value + 1)),
|
|
format_error, "number is too big");
|
|
}
|
|
EXPECT_THROW_MSG(format("{0:{1}}", 0, (INT_MAX + 1ul)),
|
|
format_error, "number is too big");
|
|
|
|
EXPECT_THROW_MSG(format("{0:{1}}", 0, '0'),
|
|
format_error, "width is not integer");
|
|
EXPECT_THROW_MSG(format("{0:{1}}", 0, 0.0),
|
|
format_error, "width is not integer");
|
|
|
|
EXPECT_EQ(" -42", format("{0:{1}}", -42, 4));
|
|
EXPECT_EQ(" 42", format("{0:{1}}", 42u, 5));
|
|
EXPECT_EQ(" -42", format("{0:{1}}", -42l, 6));
|
|
EXPECT_EQ(" 42", format("{0:{1}}", 42ul, 7));
|
|
EXPECT_EQ(" -42", format("{0:{1}}", -42ll, 6));
|
|
EXPECT_EQ(" 42", format("{0:{1}}", 42ull, 7));
|
|
EXPECT_EQ(" -1.23", format("{0:{1}}", -1.23, 8));
|
|
EXPECT_EQ(" -1.23", format("{0:{1}}", -1.23l, 9));
|
|
EXPECT_EQ(" 0xcafe",
|
|
format("{0:{1}}", reinterpret_cast<void*>(0xcafe), 10));
|
|
EXPECT_EQ("x ", format("{0:{1}}", 'x', 11));
|
|
EXPECT_EQ("str ", format("{0:{1}}", "str", 12));
|
|
}
|
|
|
|
TEST(FormatterTest, Precision) {
|
|
char format_str[BUFFER_SIZE];
|
|
safe_sprintf(format_str, "{0:.%u", UINT_MAX);
|
|
increment(format_str + 4);
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
std::size_t size = std::strlen(format_str);
|
|
format_str[size] = '}';
|
|
format_str[size + 1] = 0;
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
|
|
safe_sprintf(format_str, "{0:.%u", INT_MAX + 1u);
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
safe_sprintf(format_str, "{0:.%u}", INT_MAX + 1u);
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
|
|
EXPECT_THROW_MSG(format("{0:.", 0),
|
|
format_error, "missing precision specifier");
|
|
EXPECT_THROW_MSG(format("{0:.}", 0),
|
|
format_error, "missing precision specifier");
|
|
|
|
EXPECT_THROW_MSG(format("{0:.2", 0),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2}", 42),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2f}", 42),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2}", 42u),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2f}", 42u),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2}", 42l),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2f}", 42l),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2}", 42ul),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2f}", 42ul),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2}", 42ll),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2f}", 42ll),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2}", 42ull),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2f}", 42ull),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:3.0}", 'x'),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_EQ("1.2", format("{0:.2}", 1.2345));
|
|
EXPECT_EQ("1.2", format("{0:.2}", 1.2345l));
|
|
|
|
EXPECT_THROW_MSG(format("{0:.2}", reinterpret_cast<void*>(0xcafe)),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.2f}", reinterpret_cast<void*>(0xcafe)),
|
|
format_error, "precision not allowed for this argument type");
|
|
|
|
EXPECT_EQ("st", format("{0:.2}", "str"));
|
|
}
|
|
|
|
TEST(FormatterTest, RuntimePrecision) {
|
|
char format_str[BUFFER_SIZE];
|
|
safe_sprintf(format_str, "{0:.{%u", UINT_MAX);
|
|
increment(format_str + 5);
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
std::size_t size = std::strlen(format_str);
|
|
format_str[size] = '}';
|
|
format_str[size + 1] = 0;
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
format_str[size + 1] = '}';
|
|
format_str[size + 2] = 0;
|
|
EXPECT_THROW_MSG(format(format_str, 0), format_error, "number is too big");
|
|
|
|
EXPECT_THROW_MSG(format("{0:.{", 0),
|
|
format_error, "invalid format string");
|
|
EXPECT_THROW_MSG(format("{0:.{}", 0),
|
|
format_error, "cannot switch from manual to automatic argument indexing");
|
|
EXPECT_THROW_MSG(format("{0:.{?}}", 0),
|
|
format_error, "invalid format string");
|
|
EXPECT_THROW_MSG(format("{0:.{1}", 0, 0),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 0),
|
|
format_error, "argument index out of range");
|
|
|
|
EXPECT_THROW_MSG(format("{0:.{0:}}", 0),
|
|
format_error, "invalid format string");
|
|
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 0, -1),
|
|
format_error, "negative precision");
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 0, (INT_MAX + 1u)),
|
|
format_error, "number is too big");
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 0, -1l),
|
|
format_error, "negative precision");
|
|
if (fmt::internal::const_check(sizeof(long) > sizeof(int))) {
|
|
long value = INT_MAX;
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 0, (value + 1)),
|
|
format_error, "number is too big");
|
|
}
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 0, (INT_MAX + 1ul)),
|
|
format_error, "number is too big");
|
|
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 0, '0'),
|
|
format_error, "precision is not integer");
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 0, 0.0),
|
|
format_error, "precision is not integer");
|
|
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 42, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}f}", 42, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 42u, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}f}", 42u, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 42l, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}f}", 42l, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 42ul, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}f}", 42ul, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 42ll, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}f}", 42ll, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", 42ull, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}f}", 42ull, 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:3.{1}}", 'x', 0),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_EQ("1.2", format("{0:.{1}}", 1.2345, 2));
|
|
EXPECT_EQ("1.2", format("{1:.{0}}", 2, 1.2345l));
|
|
|
|
EXPECT_THROW_MSG(format("{0:.{1}}", reinterpret_cast<void*>(0xcafe), 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
EXPECT_THROW_MSG(format("{0:.{1}f}", reinterpret_cast<void*>(0xcafe), 2),
|
|
format_error, "precision not allowed for this argument type");
|
|
|
|
EXPECT_EQ("st", format("{0:.{1}}", "str", 2));
|
|
}
|
|
|
|
template <typename T>
|
|
void check_unknown_types(const T &value, const char *types, const char *) {
|
|
char format_str[BUFFER_SIZE];
|
|
const char *special = ".0123456789}";
|
|
for (int i = CHAR_MIN; i <= CHAR_MAX; ++i) {
|
|
char c = static_cast<char>(i);
|
|
if (std::strchr(types, c) || std::strchr(special, c) || !c) continue;
|
|
safe_sprintf(format_str, "{0:10%c}", c);
|
|
const char *message = "invalid type specifier";
|
|
EXPECT_THROW_MSG(format(format_str, value), format_error, message)
|
|
<< format_str << " " << message;
|
|
}
|
|
}
|
|
|
|
TEST(BoolTest, FormatBool) {
|
|
EXPECT_EQ("true", format("{}", true));
|
|
EXPECT_EQ("false", format("{}", false));
|
|
EXPECT_EQ("1", format("{:d}", true));
|
|
EXPECT_EQ("true ", format("{:5}", true));
|
|
EXPECT_EQ(L"true", format(L"{}", true));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatShort) {
|
|
short s = 42;
|
|
EXPECT_EQ("42", format("{0:d}", s));
|
|
unsigned short us = 42;
|
|
EXPECT_EQ("42", format("{0:d}", us));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatInt) {
|
|
EXPECT_THROW_MSG(format("{0:v", 42),
|
|
format_error, "missing '}' in format string");
|
|
check_unknown_types(42, "bBdoxXn", "integer");
|
|
}
|
|
|
|
TEST(FormatterTest, FormatBin) {
|
|
EXPECT_EQ("0", format("{0:b}", 0));
|
|
EXPECT_EQ("101010", format("{0:b}", 42));
|
|
EXPECT_EQ("101010", format("{0:b}", 42u));
|
|
EXPECT_EQ("-101010", format("{0:b}", -42));
|
|
EXPECT_EQ("11000000111001", format("{0:b}", 12345));
|
|
EXPECT_EQ("10010001101000101011001111000", format("{0:b}", 0x12345678));
|
|
EXPECT_EQ("10010000101010111100110111101111", format("{0:b}", 0x90ABCDEF));
|
|
EXPECT_EQ("11111111111111111111111111111111",
|
|
format("{0:b}", std::numeric_limits<uint32_t>::max()));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatDec) {
|
|
EXPECT_EQ("0", format("{0}", 0));
|
|
EXPECT_EQ("42", format("{0}", 42));
|
|
EXPECT_EQ("42", format("{0:d}", 42));
|
|
EXPECT_EQ("42", format("{0}", 42u));
|
|
EXPECT_EQ("-42", format("{0}", -42));
|
|
EXPECT_EQ("12345", format("{0}", 12345));
|
|
EXPECT_EQ("67890", format("{0}", 67890));
|
|
char buffer[BUFFER_SIZE];
|
|
safe_sprintf(buffer, "%d", INT_MIN);
|
|
EXPECT_EQ(buffer, format("{0}", INT_MIN));
|
|
safe_sprintf(buffer, "%d", INT_MAX);
|
|
EXPECT_EQ(buffer, format("{0}", INT_MAX));
|
|
safe_sprintf(buffer, "%u", UINT_MAX);
|
|
EXPECT_EQ(buffer, format("{0}", UINT_MAX));
|
|
safe_sprintf(buffer, "%ld", 0 - static_cast<unsigned long>(LONG_MIN));
|
|
EXPECT_EQ(buffer, format("{0}", LONG_MIN));
|
|
safe_sprintf(buffer, "%ld", LONG_MAX);
|
|
EXPECT_EQ(buffer, format("{0}", LONG_MAX));
|
|
safe_sprintf(buffer, "%lu", ULONG_MAX);
|
|
EXPECT_EQ(buffer, format("{0}", ULONG_MAX));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatHex) {
|
|
EXPECT_EQ("0", format("{0:x}", 0));
|
|
EXPECT_EQ("42", format("{0:x}", 0x42));
|
|
EXPECT_EQ("42", format("{0:x}", 0x42u));
|
|
EXPECT_EQ("-42", format("{0:x}", -0x42));
|
|
EXPECT_EQ("12345678", format("{0:x}", 0x12345678));
|
|
EXPECT_EQ("90abcdef", format("{0:x}", 0x90abcdef));
|
|
EXPECT_EQ("12345678", format("{0:X}", 0x12345678));
|
|
EXPECT_EQ("90ABCDEF", format("{0:X}", 0x90ABCDEF));
|
|
|
|
char buffer[BUFFER_SIZE];
|
|
safe_sprintf(buffer, "-%x", 0 - static_cast<unsigned>(INT_MIN));
|
|
EXPECT_EQ(buffer, format("{0:x}", INT_MIN));
|
|
safe_sprintf(buffer, "%x", INT_MAX);
|
|
EXPECT_EQ(buffer, format("{0:x}", INT_MAX));
|
|
safe_sprintf(buffer, "%x", UINT_MAX);
|
|
EXPECT_EQ(buffer, format("{0:x}", UINT_MAX));
|
|
safe_sprintf(buffer, "-%lx", 0 - static_cast<unsigned long>(LONG_MIN));
|
|
EXPECT_EQ(buffer, format("{0:x}", LONG_MIN));
|
|
safe_sprintf(buffer, "%lx", LONG_MAX);
|
|
EXPECT_EQ(buffer, format("{0:x}", LONG_MAX));
|
|
safe_sprintf(buffer, "%lx", ULONG_MAX);
|
|
EXPECT_EQ(buffer, format("{0:x}", ULONG_MAX));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatOct) {
|
|
EXPECT_EQ("0", format("{0:o}", 0));
|
|
EXPECT_EQ("42", format("{0:o}", 042));
|
|
EXPECT_EQ("42", format("{0:o}", 042u));
|
|
EXPECT_EQ("-42", format("{0:o}", -042));
|
|
EXPECT_EQ("12345670", format("{0:o}", 012345670));
|
|
char buffer[BUFFER_SIZE];
|
|
safe_sprintf(buffer, "-%o", 0 - static_cast<unsigned>(INT_MIN));
|
|
EXPECT_EQ(buffer, format("{0:o}", INT_MIN));
|
|
safe_sprintf(buffer, "%o", INT_MAX);
|
|
EXPECT_EQ(buffer, format("{0:o}", INT_MAX));
|
|
safe_sprintf(buffer, "%o", UINT_MAX);
|
|
EXPECT_EQ(buffer, format("{0:o}", UINT_MAX));
|
|
safe_sprintf(buffer, "-%lo", 0 - static_cast<unsigned long>(LONG_MIN));
|
|
EXPECT_EQ(buffer, format("{0:o}", LONG_MIN));
|
|
safe_sprintf(buffer, "%lo", LONG_MAX);
|
|
EXPECT_EQ(buffer, format("{0:o}", LONG_MAX));
|
|
safe_sprintf(buffer, "%lo", ULONG_MAX);
|
|
EXPECT_EQ(buffer, format("{0:o}", ULONG_MAX));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatIntLocale) {
|
|
EXPECT_EQ("123", format("{:n}", 123));
|
|
EXPECT_EQ("1,234", format("{:n}", 1234));
|
|
EXPECT_EQ("1,234,567", format("{:n}", 1234567));
|
|
}
|
|
|
|
struct ConvertibleToLongLong {
|
|
operator long long() const { return 1LL << 32; }
|
|
};
|
|
|
|
TEST(FormatterTest, FormatConvertibleToLongLong) {
|
|
EXPECT_EQ("100000000", format("{:x}", ConvertibleToLongLong()));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatFloat) {
|
|
EXPECT_EQ("392.500000", format("{0:f}", 392.5f));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatDouble) {
|
|
check_unknown_types(1.2, "eEfFgGaA", "double");
|
|
EXPECT_EQ("0", format("{0:}", 0.0));
|
|
EXPECT_EQ("0.000000", format("{0:f}", 0.0));
|
|
EXPECT_EQ("392.65", format("{0:}", 392.65));
|
|
EXPECT_EQ("392.65", format("{0:g}", 392.65));
|
|
EXPECT_EQ("392.65", format("{0:G}", 392.65));
|
|
EXPECT_EQ("392.650000", format("{0:f}", 392.65));
|
|
EXPECT_EQ("392.650000", format("{0:F}", 392.65));
|
|
char buffer[BUFFER_SIZE];
|
|
safe_sprintf(buffer, "%e", 392.65);
|
|
EXPECT_EQ(buffer, format("{0:e}", 392.65));
|
|
safe_sprintf(buffer, "%E", 392.65);
|
|
EXPECT_EQ(buffer, format("{0:E}", 392.65));
|
|
EXPECT_EQ("+0000392.6", format("{0:+010.4g}", 392.65));
|
|
safe_sprintf(buffer, "%a", -42.0);
|
|
EXPECT_EQ(buffer, format("{:a}", -42.0));
|
|
safe_sprintf(buffer, "%A", -42.0);
|
|
EXPECT_EQ(buffer, format("{:A}", -42.0));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatNaN) {
|
|
double nan = std::numeric_limits<double>::quiet_NaN();
|
|
EXPECT_EQ("nan", format("{}", nan));
|
|
EXPECT_EQ("+nan", format("{:+}", nan));
|
|
EXPECT_EQ(" nan", format("{: }", nan));
|
|
EXPECT_EQ("NAN", format("{:F}", nan));
|
|
EXPECT_EQ("nan ", format("{:<7}", nan));
|
|
EXPECT_EQ(" nan ", format("{:^7}", nan));
|
|
EXPECT_EQ(" nan", format("{:>7}", nan));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatInfinity) {
|
|
double inf = std::numeric_limits<double>::infinity();
|
|
EXPECT_EQ("inf", format("{}", inf));
|
|
EXPECT_EQ("+inf", format("{:+}", inf));
|
|
EXPECT_EQ("-inf", format("{}", -inf));
|
|
EXPECT_EQ(" inf", format("{: }", inf));
|
|
EXPECT_EQ("INF", format("{:F}", inf));
|
|
EXPECT_EQ("inf ", format("{:<7}", inf));
|
|
EXPECT_EQ(" inf ", format("{:^7}", inf));
|
|
EXPECT_EQ(" inf", format("{:>7}", inf));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatLongDouble) {
|
|
EXPECT_EQ("0", format("{0:}", 0.0l));
|
|
EXPECT_EQ("0.000000", format("{0:f}", 0.0l));
|
|
EXPECT_EQ("392.65", format("{0:}", 392.65l));
|
|
EXPECT_EQ("392.65", format("{0:g}", 392.65l));
|
|
EXPECT_EQ("392.65", format("{0:G}", 392.65l));
|
|
EXPECT_EQ("392.650000", format("{0:f}", 392.65l));
|
|
EXPECT_EQ("392.650000", format("{0:F}", 392.65l));
|
|
char buffer[BUFFER_SIZE];
|
|
safe_sprintf(buffer, "%Le", 392.65l);
|
|
EXPECT_EQ(buffer, format("{0:e}", 392.65l));
|
|
EXPECT_EQ("+0000392.6", format("{0:+010.4g}", 392.64l));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatChar) {
|
|
const char types[] = "cbBdoxXn";
|
|
check_unknown_types('a', types, "char");
|
|
EXPECT_EQ("a", format("{0}", 'a'));
|
|
EXPECT_EQ("z", format("{0:c}", 'z'));
|
|
EXPECT_EQ(L"a", format(L"{0}", 'a'));
|
|
int n = 'x';
|
|
for (const char *type = types + 1; *type; ++type) {
|
|
std::string format_str = fmt::format("{{:{}}}", *type);
|
|
EXPECT_EQ(fmt::format(format_str, n), fmt::format(format_str, 'x'));
|
|
}
|
|
EXPECT_EQ(fmt::format("{:02X}", n), fmt::format("{:02X}", 'x'));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatUnsignedChar) {
|
|
EXPECT_EQ("42", format("{}", static_cast<unsigned char>(42)));
|
|
EXPECT_EQ("42", format("{}", static_cast<uint8_t>(42)));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatWChar) {
|
|
EXPECT_EQ(L"a", format(L"{0}", L'a'));
|
|
// This shouldn't compile:
|
|
//format("{}", L'a');
|
|
}
|
|
|
|
TEST(FormatterTest, FormatCString) {
|
|
check_unknown_types("test", "sp", "string");
|
|
EXPECT_EQ("test", format("{0}", "test"));
|
|
EXPECT_EQ("test", format("{0:s}", "test"));
|
|
char nonconst[] = "nonconst";
|
|
EXPECT_EQ("nonconst", format("{0}", nonconst));
|
|
EXPECT_THROW_MSG(format("{0}", reinterpret_cast<const char*>(0)),
|
|
format_error, "string pointer is null");
|
|
}
|
|
|
|
TEST(FormatterTest, FormatSCharString) {
|
|
signed char str[] = "test";
|
|
EXPECT_EQ("test", format("{0:s}", str));
|
|
const signed char *const_str = str;
|
|
EXPECT_EQ("test", format("{0:s}", const_str));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatUCharString) {
|
|
unsigned char str[] = "test";
|
|
EXPECT_EQ("test", format("{0:s}", str));
|
|
const unsigned char *const_str = str;
|
|
EXPECT_EQ("test", format("{0:s}", const_str));
|
|
unsigned char *ptr = str;
|
|
EXPECT_EQ("test", format("{0:s}", ptr));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatPointer) {
|
|
check_unknown_types(reinterpret_cast<void*>(0x1234), "p", "pointer");
|
|
EXPECT_EQ("0x0", format("{0}", reinterpret_cast<void*>(0)));
|
|
EXPECT_EQ("0x1234", format("{0}", reinterpret_cast<void*>(0x1234)));
|
|
EXPECT_EQ("0x1234", format("{0:p}", reinterpret_cast<void*>(0x1234)));
|
|
EXPECT_EQ("0x" + std::string(sizeof(void*) * CHAR_BIT / 4, 'f'),
|
|
format("{0}", reinterpret_cast<void*>(~uintptr_t())));
|
|
EXPECT_EQ("0x1234", format("{}", fmt::ptr(reinterpret_cast<int*>(0x1234))));
|
|
EXPECT_EQ("0x0", format("{}", nullptr));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatString) {
|
|
EXPECT_EQ("test", format("{0}", std::string("test")));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatStringView) {
|
|
EXPECT_EQ("test", format("{0}", string_view("test")));
|
|
}
|
|
|
|
namespace fmt {
|
|
template <>
|
|
struct formatter<Date> {
|
|
template <typename ParseContext>
|
|
constexpr auto parse(ParseContext &ctx) -> decltype(ctx.begin()) {
|
|
auto it = ctx.begin();
|
|
if (*it == 'd')
|
|
++it;
|
|
return it;
|
|
}
|
|
|
|
auto format(const Date &d, context &ctx) {
|
|
format_to(ctx.begin(), "{}-{}-{}", d.year(), d.month(), d.day());
|
|
return ctx.begin();
|
|
}
|
|
};
|
|
}
|
|
|
|
TEST(FormatterTest, FormatCustom) {
|
|
Date date(2012, 12, 9);
|
|
EXPECT_THROW_MSG(fmt::format("{:s}", date), format_error,
|
|
"unknown format specifier");
|
|
}
|
|
|
|
class Answer {};
|
|
|
|
namespace fmt {
|
|
template <>
|
|
struct formatter<Answer> : formatter<int> {
|
|
auto format(Answer, fmt::context &ctx) {
|
|
return formatter<int>::format(42, ctx);
|
|
}
|
|
};
|
|
}
|
|
|
|
TEST(FormatterTest, CustomFormat) {
|
|
EXPECT_EQ("42", format("{0}", Answer()));
|
|
EXPECT_EQ("0042", format("{:04}", Answer()));
|
|
}
|
|
|
|
TEST(FormatterTest, WideFormatString) {
|
|
EXPECT_EQ(L"42", format(L"{}", 42));
|
|
EXPECT_EQ(L"4.2", format(L"{}", 4.2));
|
|
EXPECT_EQ(L"abc", format(L"{}", L"abc"));
|
|
EXPECT_EQ(L"z", format(L"{}", L'z'));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatStringFromSpeedTest) {
|
|
EXPECT_EQ("1.2340000000:0042:+3.13:str:0x3e8:X:%",
|
|
format("{0:0.10f}:{1:04}:{2:+g}:{3}:{4}:{5}:%",
|
|
1.234, 42, 3.13, "str", reinterpret_cast<void*>(1000), 'X'));
|
|
}
|
|
|
|
TEST(FormatterTest, FormatExamples) {
|
|
EXPECT_EQ("0000cafe", write_str(0xcafe, width=8, fill='0', type='x'));
|
|
|
|
std::string message = format("The answer is {}", 42);
|
|
EXPECT_EQ("The answer is 42", message);
|
|
|
|
EXPECT_EQ("42", format("{}", 42));
|
|
EXPECT_EQ("42", format(std::string("{}"), 42));
|
|
|
|
memory_buffer out;
|
|
format_to(out, "The answer is {}.", 42);
|
|
EXPECT_EQ("The answer is 42.", to_string(out));
|
|
|
|
const char *filename = "nonexistent";
|
|
FILE *ftest = safe_fopen(filename, "r");
|
|
if (ftest) fclose(ftest);
|
|
int error_code = errno;
|
|
EXPECT_TRUE(ftest == 0);
|
|
EXPECT_SYSTEM_ERROR({
|
|
FILE *f = safe_fopen(filename, "r");
|
|
if (!f)
|
|
throw fmt::system_error(errno, "Cannot open file '{}'", filename);
|
|
fclose(f);
|
|
}, error_code, "Cannot open file 'nonexistent'");
|
|
}
|
|
|
|
TEST(FormatterTest, Examples) {
|
|
EXPECT_EQ("First, thou shalt count to three",
|
|
format("First, thou shalt count to {0}", "three"));
|
|
EXPECT_EQ("Bring me a shrubbery",
|
|
format("Bring me a {}", "shrubbery"));
|
|
EXPECT_EQ("From 1 to 3", format("From {} to {}", 1, 3));
|
|
|
|
char buffer[BUFFER_SIZE];
|
|
safe_sprintf(buffer, "%03.2f", -1.2);
|
|
EXPECT_EQ(buffer, format("{:03.2f}", -1.2));
|
|
|
|
EXPECT_EQ("a, b, c", format("{0}, {1}, {2}", 'a', 'b', 'c'));
|
|
EXPECT_EQ("a, b, c", format("{}, {}, {}", 'a', 'b', 'c'));
|
|
EXPECT_EQ("c, b, a", format("{2}, {1}, {0}", 'a', 'b', 'c'));
|
|
EXPECT_EQ("abracadabra", format("{0}{1}{0}", "abra", "cad"));
|
|
|
|
EXPECT_EQ("left aligned ",
|
|
format("{:<30}", "left aligned"));
|
|
EXPECT_EQ(" right aligned",
|
|
format("{:>30}", "right aligned"));
|
|
EXPECT_EQ(" centered ",
|
|
format("{:^30}", "centered"));
|
|
EXPECT_EQ("***********centered***********",
|
|
format("{:*^30}", "centered"));
|
|
|
|
EXPECT_EQ("+3.140000; -3.140000",
|
|
format("{:+f}; {:+f}", 3.14, -3.14));
|
|
EXPECT_EQ(" 3.140000; -3.140000",
|
|
format("{: f}; {: f}", 3.14, -3.14));
|
|
EXPECT_EQ("3.140000; -3.140000",
|
|
format("{:-f}; {:-f}", 3.14, -3.14));
|
|
|
|
EXPECT_EQ("int: 42; hex: 2a; oct: 52",
|
|
format("int: {0:d}; hex: {0:x}; oct: {0:o}", 42));
|
|
EXPECT_EQ("int: 42; hex: 0x2a; oct: 052",
|
|
format("int: {0:d}; hex: {0:#x}; oct: {0:#o}", 42));
|
|
|
|
EXPECT_EQ("The answer is 42", format("The answer is {}", 42));
|
|
EXPECT_THROW_MSG(
|
|
format("The answer is {:d}", "forty-two"), format_error,
|
|
"invalid type specifier");
|
|
|
|
EXPECT_EQ(L"Cyrillic letter \x42e",
|
|
format(L"Cyrillic letter {}", L'\x42e'));
|
|
|
|
EXPECT_WRITE(stdout,
|
|
fmt::print("{}", std::numeric_limits<double>::infinity()), "inf");
|
|
}
|
|
|
|
TEST(FormatIntTest, Data) {
|
|
fmt::FormatInt format_int(42);
|
|
EXPECT_EQ("42", std::string(format_int.data(), format_int.size()));
|
|
}
|
|
|
|
TEST(FormatIntTest, FormatInt) {
|
|
EXPECT_EQ("42", fmt::FormatInt(42).str());
|
|
EXPECT_EQ(2u, fmt::FormatInt(42).size());
|
|
EXPECT_EQ("-42", fmt::FormatInt(-42).str());
|
|
EXPECT_EQ(3u, fmt::FormatInt(-42).size());
|
|
EXPECT_EQ("42", fmt::FormatInt(42ul).str());
|
|
EXPECT_EQ("-42", fmt::FormatInt(-42l).str());
|
|
EXPECT_EQ("42", fmt::FormatInt(42ull).str());
|
|
EXPECT_EQ("-42", fmt::FormatInt(-42ll).str());
|
|
std::ostringstream os;
|
|
os << std::numeric_limits<int64_t>::max();
|
|
EXPECT_EQ(os.str(),
|
|
fmt::FormatInt(std::numeric_limits<int64_t>::max()).str());
|
|
}
|
|
|
|
template <typename T>
|
|
std::string format_decimal(T value) {
|
|
char buffer[10];
|
|
char *ptr = buffer;
|
|
fmt::format_decimal(ptr, value);
|
|
return std::string(buffer, ptr);
|
|
}
|
|
|
|
TEST(FormatIntTest, FormatDec) {
|
|
EXPECT_EQ("-42", format_decimal(static_cast<signed char>(-42)));
|
|
EXPECT_EQ("-42", format_decimal(static_cast<short>(-42)));
|
|
std::ostringstream os;
|
|
os << std::numeric_limits<unsigned short>::max();
|
|
EXPECT_EQ(os.str(),
|
|
format_decimal(std::numeric_limits<unsigned short>::max()));
|
|
EXPECT_EQ("1", format_decimal(1));
|
|
EXPECT_EQ("-1", format_decimal(-1));
|
|
EXPECT_EQ("42", format_decimal(42));
|
|
EXPECT_EQ("-42", format_decimal(-42));
|
|
EXPECT_EQ("42", format_decimal(42l));
|
|
EXPECT_EQ("42", format_decimal(42ul));
|
|
EXPECT_EQ("42", format_decimal(42ll));
|
|
EXPECT_EQ("42", format_decimal(42ull));
|
|
}
|
|
|
|
TEST(FormatTest, Print) {
|
|
#if FMT_USE_FILE_DESCRIPTORS
|
|
EXPECT_WRITE(stdout, fmt::print("Don't {}!", "panic"), "Don't panic!");
|
|
EXPECT_WRITE(stderr,
|
|
fmt::print(stderr, "Don't {}!", "panic"), "Don't panic!");
|
|
#endif
|
|
}
|
|
|
|
#if FMT_USE_FILE_DESCRIPTORS
|
|
TEST(FormatTest, PrintColored) {
|
|
EXPECT_WRITE(stdout, fmt::print_colored(fmt::RED, "Hello, {}!\n", "world"),
|
|
"\x1b[31mHello, world!\n\x1b[0m");
|
|
}
|
|
#endif
|
|
|
|
TEST(FormatTest, Variadic) {
|
|
EXPECT_EQ("abc1", format("{}c{}", "ab", 1));
|
|
EXPECT_EQ(L"abc1", format(L"{}c{}", L"ab", 1));
|
|
}
|
|
|
|
TEST(FormatTest, JoinArg) {
|
|
using fmt::join;
|
|
int v1[3] = { 1, 2, 3 };
|
|
std::vector<float> v2;
|
|
v2.push_back(1.2f);
|
|
v2.push_back(3.4f);
|
|
|
|
EXPECT_EQ("(1, 2, 3)", format("({})", join(v1, v1 + 3, ", ")));
|
|
EXPECT_EQ("(1)", format("({})", join(v1, v1 + 1, ", ")));
|
|
EXPECT_EQ("()", format("({})", join(v1, v1, ", ")));
|
|
EXPECT_EQ("(001, 002, 003)", format("({:03})", join(v1, v1 + 3, ", ")));
|
|
EXPECT_EQ("(+01.20, +03.40)",
|
|
format("({:+06.2f})", join(v2.begin(), v2.end(), ", ")));
|
|
|
|
EXPECT_EQ(L"(1, 2, 3)", format(L"({})", join(v1, v1 + 3, L", ")));
|
|
EXPECT_EQ("1, 2, 3", format("{0:{1}}", join(v1, v1 + 3, ", "), 1));
|
|
|
|
#if FMT_HAS_GXX_CXX11
|
|
EXPECT_EQ("(1, 2, 3)", format("({})", join(v1, ", ")));
|
|
EXPECT_EQ("(+01.20, +03.40)", format("({:+06.2f})", join(v2, ", ")));
|
|
#endif
|
|
}
|
|
|
|
template <typename T>
|
|
std::string str(const T &value) {
|
|
return fmt::format("{}", value);
|
|
}
|
|
|
|
TEST(StrTest, Convert) {
|
|
EXPECT_EQ("42", str(42));
|
|
std::string s = str(Date(2012, 12, 9));
|
|
EXPECT_EQ("2012-12-9", s);
|
|
}
|
|
|
|
std::string vformat_message(int id, const char *format, fmt::format_args args) {
|
|
fmt::memory_buffer buffer;
|
|
format_to(buffer, "[{}] ", id);
|
|
vformat_to(buffer, format, args);
|
|
return to_string(buffer);
|
|
}
|
|
|
|
template <typename... Args>
|
|
std::string format_message(int id, const char *format, const Args & ... args) {
|
|
auto va = fmt::make_args(args...);
|
|
return vformat_message(id, format, va);
|
|
}
|
|
|
|
TEST(FormatTest, FormatMessageExample) {
|
|
EXPECT_EQ("[42] something happened",
|
|
format_message(42, "{} happened", "something"));
|
|
}
|
|
|
|
template<typename... Args>
|
|
void print_error(const char *file, int line, const char *format,
|
|
const Args & ... args) {
|
|
fmt::print("{}: {}: ", file, line);
|
|
fmt::print(format, args...);
|
|
}
|
|
|
|
TEST(FormatTest, UnpackedArgs) {
|
|
EXPECT_EQ("0123456789abcdefg",
|
|
fmt::format("{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}{}",
|
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'a', 'b', 'c', 'd', 'e',
|
|
'f', 'g'));
|
|
}
|
|
|
|
#if FMT_USE_USER_DEFINED_LITERALS
|
|
// Passing user-defined literals directly to EXPECT_EQ causes problems
|
|
// with macro argument stringification (#) on some versions of GCC.
|
|
// Workaround: Assing the UDL result to a variable before the macro.
|
|
|
|
using namespace fmt::literals;
|
|
|
|
TEST(LiteralsTest, Format) {
|
|
auto udl_format = "{}c{}"_format("ab", 1);
|
|
EXPECT_EQ(format("{}c{}", "ab", 1), udl_format);
|
|
auto udl_format_w = L"{}c{}"_format(L"ab", 1);
|
|
EXPECT_EQ(format(L"{}c{}", L"ab", 1), udl_format_w);
|
|
}
|
|
|
|
TEST(LiteralsTest, NamedArg) {
|
|
auto udl_a = format("{first}{second}{first}{third}",
|
|
"first"_a="abra", "second"_a="cad", "third"_a=99);
|
|
EXPECT_EQ(format("{first}{second}{first}{third}",
|
|
fmt::arg("first", "abra"), fmt::arg("second", "cad"),
|
|
fmt::arg("third", 99)),
|
|
udl_a);
|
|
auto udl_a_w = format(L"{first}{second}{first}{third}",
|
|
L"first"_a=L"abra", L"second"_a=L"cad", L"third"_a=99);
|
|
EXPECT_EQ(format(L"{first}{second}{first}{third}",
|
|
fmt::arg(L"first", L"abra"), fmt::arg(L"second", L"cad"),
|
|
fmt::arg(L"third", 99)),
|
|
udl_a_w);
|
|
}
|
|
#endif // FMT_USE_USER_DEFINED_LITERALS
|
|
|
|
enum TestEnum { A };
|
|
|
|
TEST(FormatTest, Enum) {
|
|
EXPECT_EQ("0", fmt::format("{}", A));
|
|
}
|
|
|
|
using buffer_range = fmt::back_insert_range<fmt::internal::buffer>;
|
|
|
|
class mock_arg_formatter :
|
|
public fmt::internal::arg_formatter_base<buffer_range> {
|
|
private:
|
|
MOCK_METHOD1(call, void (int value));
|
|
|
|
public:
|
|
using base = fmt::internal::arg_formatter_base<buffer_range>;
|
|
using range = buffer_range;
|
|
|
|
mock_arg_formatter(fmt::context &ctx, fmt::format_specs &s)
|
|
: base(fmt::internal::get_container(ctx.begin()), s) {
|
|
EXPECT_CALL(*this, call(42));
|
|
}
|
|
|
|
using base::operator();
|
|
|
|
void operator()(int value) { call(value); }
|
|
|
|
void operator()(fmt::basic_arg<fmt::context>::handle) {}
|
|
};
|
|
|
|
void custom_vformat(fmt::string_view format_str, fmt::format_args args) {
|
|
fmt::memory_buffer buffer;
|
|
fmt::do_vformat_to<mock_arg_formatter>(buffer, format_str, args);
|
|
}
|
|
|
|
template <typename... Args>
|
|
void custom_format(const char *format_str, const Args & ... args) {
|
|
auto va = fmt::make_args(args...);
|
|
return custom_vformat(format_str, va);
|
|
}
|
|
|
|
TEST(FormatTest, CustomArgFormatter) {
|
|
custom_format("{}", 42);
|
|
}
|
|
|
|
TEST(FormatTest, NonNullTerminatedFormatString) {
|
|
EXPECT_EQ("42", format(string_view("{}foo", 2), 42));
|
|
}
|
|
|
|
struct variant {
|
|
enum {INT, STRING} type;
|
|
explicit variant(int) : type(INT) {}
|
|
explicit variant(const char *) : type(STRING) {}
|
|
};
|
|
|
|
namespace fmt {
|
|
template <>
|
|
struct formatter<variant> : dynamic_formatter<> {
|
|
auto format(variant value, context& ctx) {
|
|
if (value.type == variant::INT)
|
|
return dynamic_formatter::format(42, ctx);
|
|
return dynamic_formatter::format("foo", ctx);
|
|
}
|
|
};
|
|
}
|
|
|
|
TEST(FormatTest, DynamicFormatter) {
|
|
auto num = variant(42);
|
|
auto str = variant("foo");
|
|
EXPECT_EQ("42", format("{:d}", num));
|
|
EXPECT_EQ("foo", format("{:s}", str));
|
|
EXPECT_EQ(" 42 foo ", format("{:{}} {:{}}", num, 3, str, 4));
|
|
EXPECT_THROW_MSG(format("{0:{}}", num),
|
|
format_error, "cannot switch from manual to automatic argument indexing");
|
|
EXPECT_THROW_MSG(format("{:{0}}", num),
|
|
format_error, "cannot switch from automatic to manual argument indexing");
|
|
EXPECT_THROW_MSG(format("{:=}", str),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{:+}", str),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{:-}", str),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{: }", str),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{:#}", str),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{:0}", str),
|
|
format_error, "format specifier requires numeric argument");
|
|
EXPECT_THROW_MSG(format("{:.2}", num),
|
|
format_error, "precision not allowed for this argument type");
|
|
}
|
|
|
|
struct test_arg_id_handler {
|
|
enum result { NONE, EMPTY, INDEX, NAME, ERROR };
|
|
result res = NONE;
|
|
unsigned index = 0;
|
|
string_view name;
|
|
|
|
constexpr void operator()() { res = EMPTY; }
|
|
|
|
constexpr void operator()(unsigned index) {
|
|
res = INDEX;
|
|
this->index = index;
|
|
}
|
|
|
|
constexpr void operator()(string_view name) {
|
|
res = NAME;
|
|
this->name = name;
|
|
}
|
|
|
|
constexpr void on_error(const char *) { res = ERROR; }
|
|
};
|
|
|
|
constexpr test_arg_id_handler parse_arg_id(const char* s) {
|
|
test_arg_id_handler h;
|
|
fmt::internal::parse_arg_id(s, h);
|
|
return h;
|
|
}
|
|
|
|
TEST(FormatTest, ConstexprParseArgID) {
|
|
static_assert(parse_arg_id(":").res == test_arg_id_handler::EMPTY, "");
|
|
static_assert(parse_arg_id("}").res == test_arg_id_handler::EMPTY, "");
|
|
static_assert(parse_arg_id("42:").res == test_arg_id_handler::INDEX, "");
|
|
static_assert(parse_arg_id("42:").index == 42, "");
|
|
static_assert(parse_arg_id("foo:").res == test_arg_id_handler::NAME, "");
|
|
static_assert(parse_arg_id("foo:").name.size() == 3, "");
|
|
static_assert(parse_arg_id("!").res == test_arg_id_handler::ERROR, "");
|
|
}
|
|
|
|
struct test_format_specs_handler {
|
|
enum Result { NONE, PLUS, MINUS, SPACE, HASH, ZERO, ERROR };
|
|
Result res = NONE;
|
|
|
|
fmt::alignment align = fmt::ALIGN_DEFAULT;
|
|
char fill = 0;
|
|
unsigned width = 0;
|
|
fmt::internal::arg_ref<char> width_ref;
|
|
unsigned precision = 0;
|
|
fmt::internal::arg_ref<char> precision_ref;
|
|
char type = 0;
|
|
|
|
// Workaround for MSVC2017 bug that results in "expression did not evaluate
|
|
// to a constant" with compiler-generated copy ctor.
|
|
constexpr test_format_specs_handler() {}
|
|
constexpr test_format_specs_handler(const test_format_specs_handler &other)
|
|
: res(other.res), align(other.align), fill(other.fill),
|
|
width(other.width), width_ref(other.width_ref),
|
|
precision(other.precision), precision_ref(other.precision_ref),
|
|
type(other.type) {}
|
|
|
|
constexpr void on_align(fmt::alignment align) { this->align = align; }
|
|
constexpr void on_fill(char fill) { this->fill = fill; }
|
|
constexpr void on_plus() { res = PLUS; }
|
|
constexpr void on_minus() { res = MINUS; }
|
|
constexpr void on_space() { res = SPACE; }
|
|
constexpr void on_hash() { res = HASH; }
|
|
constexpr void on_zero() { res = ZERO; }
|
|
|
|
constexpr void on_width(unsigned width) { this->width = width; }
|
|
constexpr void on_dynamic_width(fmt::internal::auto_id) {}
|
|
constexpr void on_dynamic_width(unsigned index) { width_ref = index; }
|
|
constexpr void on_dynamic_width(string_view) {}
|
|
|
|
constexpr void on_precision(unsigned precision) {
|
|
this->precision = precision;
|
|
}
|
|
constexpr void on_dynamic_precision(fmt::internal::auto_id) {}
|
|
constexpr void on_dynamic_precision(unsigned index) { precision_ref = index; }
|
|
constexpr void on_dynamic_precision(string_view) {}
|
|
|
|
constexpr void end_precision() {}
|
|
constexpr void on_type(char type) { this->type = type; }
|
|
constexpr void on_error(const char *) { res = ERROR; }
|
|
};
|
|
|
|
constexpr test_format_specs_handler parse_test_specs(const char *s) {
|
|
test_format_specs_handler h;
|
|
fmt::internal::parse_format_specs(s, h);
|
|
return h;
|
|
}
|
|
|
|
TEST(FormatTest, ConstexprParseFormatSpecs) {
|
|
using handler = test_format_specs_handler;
|
|
static_assert(parse_test_specs("<").align == fmt::ALIGN_LEFT, "");
|
|
static_assert(parse_test_specs("*^").fill == '*', "");
|
|
static_assert(parse_test_specs("+").res == handler::PLUS, "");
|
|
static_assert(parse_test_specs("-").res == handler::MINUS, "");
|
|
static_assert(parse_test_specs(" ").res == handler::SPACE, "");
|
|
static_assert(parse_test_specs("#").res == handler::HASH, "");
|
|
static_assert(parse_test_specs("0").res == handler::ZERO, "");
|
|
static_assert(parse_test_specs("42").width == 42, "");
|
|
static_assert(parse_test_specs("{42}").width_ref.index == 42, "");
|
|
static_assert(parse_test_specs(".42").precision == 42, "");
|
|
static_assert(parse_test_specs(".{42}").precision_ref.index == 42, "");
|
|
static_assert(parse_test_specs("d").type == 'd', "");
|
|
static_assert(parse_test_specs("{<").res == handler::ERROR, "");
|
|
}
|
|
|
|
struct test_context {
|
|
using char_type = char;
|
|
|
|
constexpr fmt::basic_arg<test_context> next_arg() {
|
|
return fmt::internal::make_arg<test_context>(11);
|
|
}
|
|
|
|
template <typename Id>
|
|
constexpr fmt::basic_arg<test_context> get_arg(Id) {
|
|
return fmt::internal::make_arg<test_context>(22);
|
|
}
|
|
|
|
template <typename Id>
|
|
constexpr void check_arg_id(Id) {}
|
|
|
|
constexpr unsigned next_arg_id() { return 33; }
|
|
|
|
void on_error(const char *) {}
|
|
|
|
constexpr test_context &parse_context() { return *this; }
|
|
constexpr test_context error_handler() { return *this; }
|
|
};
|
|
|
|
constexpr fmt::format_specs parse_specs(const char *s) {
|
|
fmt::format_specs specs;
|
|
test_context ctx;
|
|
fmt::internal::specs_handler<test_context> h(specs, ctx);
|
|
parse_format_specs(s, h);
|
|
return specs;
|
|
}
|
|
|
|
TEST(FormatTest, ConstexprSpecsHandler) {
|
|
static_assert(parse_specs("<").align() == fmt::ALIGN_LEFT, "");
|
|
static_assert(parse_specs("*^").fill() == '*', "");
|
|
static_assert(parse_specs("+").flag(fmt::PLUS_FLAG), "");
|
|
static_assert(parse_specs("-").flag(fmt::MINUS_FLAG), "");
|
|
static_assert(parse_specs(" ").flag(fmt::SIGN_FLAG), "");
|
|
static_assert(parse_specs("#").flag(fmt::HASH_FLAG), "");
|
|
static_assert(parse_specs("0").align() == fmt::ALIGN_NUMERIC, "");
|
|
static_assert(parse_specs("42").width() == 42, "");
|
|
static_assert(parse_specs("{}").width() == 11, "");
|
|
static_assert(parse_specs("{0}").width() == 22, "");
|
|
static_assert(parse_specs(".42").precision() == 42, "");
|
|
static_assert(parse_specs(".{}").precision() == 11, "");
|
|
static_assert(parse_specs(".{0}").precision() == 22, "");
|
|
static_assert(parse_specs("d").type() == 'd', "");
|
|
}
|
|
|
|
constexpr fmt::internal::dynamic_format_specs<char>
|
|
parse_dynamic_specs(const char *s) {
|
|
fmt::internal::dynamic_format_specs<char> specs;
|
|
test_context ctx;
|
|
fmt::internal::dynamic_specs_handler<test_context> h(specs, ctx);
|
|
parse_format_specs(s, h);
|
|
return specs;
|
|
}
|
|
|
|
TEST(FormatTest, ConstexprDynamicSpecsHandler) {
|
|
static_assert(parse_dynamic_specs("<").align() == fmt::ALIGN_LEFT, "");
|
|
static_assert(parse_dynamic_specs("*^").fill() == '*', "");
|
|
static_assert(parse_dynamic_specs("+").flag(fmt::PLUS_FLAG), "");
|
|
static_assert(parse_dynamic_specs("-").flag(fmt::MINUS_FLAG), "");
|
|
static_assert(parse_dynamic_specs(" ").flag(fmt::SIGN_FLAG), "");
|
|
static_assert(parse_dynamic_specs("#").flag(fmt::HASH_FLAG), "");
|
|
static_assert(parse_dynamic_specs("0").align() == fmt::ALIGN_NUMERIC, "");
|
|
static_assert(parse_dynamic_specs("42").width() == 42, "");
|
|
static_assert(parse_dynamic_specs("{}").width_ref.index == 33, "");
|
|
static_assert(parse_dynamic_specs("{42}").width_ref.index == 42, "");
|
|
static_assert(parse_dynamic_specs(".42").precision() == 42, "");
|
|
static_assert(parse_dynamic_specs(".{}").precision_ref.index == 33, "");
|
|
static_assert(parse_dynamic_specs(".{42}").precision_ref.index == 42, "");
|
|
static_assert(parse_dynamic_specs("d").type() == 'd', "");
|
|
}
|
|
|
|
constexpr test_format_specs_handler check_specs(const char *s) {
|
|
fmt::internal::specs_checker<test_format_specs_handler>
|
|
checker(test_format_specs_handler(), fmt::internal::DOUBLE);
|
|
parse_format_specs(s, checker);
|
|
return checker;
|
|
}
|
|
|
|
TEST(FormatTest, ConstexprSpecsChecker) {
|
|
using handler = test_format_specs_handler;
|
|
static_assert(check_specs("<").align == fmt::ALIGN_LEFT, "");
|
|
static_assert(check_specs("*^").fill == '*', "");
|
|
static_assert(check_specs("+").res == handler::PLUS, "");
|
|
static_assert(check_specs("-").res == handler::MINUS, "");
|
|
static_assert(check_specs(" ").res == handler::SPACE, "");
|
|
static_assert(check_specs("#").res == handler::HASH, "");
|
|
static_assert(check_specs("0").res == handler::ZERO, "");
|
|
static_assert(check_specs("42").width == 42, "");
|
|
static_assert(check_specs("{42}").width_ref.index == 42, "");
|
|
static_assert(check_specs(".42").precision == 42, "");
|
|
static_assert(check_specs(".{42}").precision_ref.index == 42, "");
|
|
static_assert(check_specs("d").type == 'd', "");
|
|
static_assert(check_specs("{<").res == handler::ERROR, "");
|
|
}
|
|
|
|
struct test_format_string_handler {
|
|
constexpr void on_text(const char *, const char *) {}
|
|
|
|
constexpr void on_arg_id() {}
|
|
|
|
template <typename T>
|
|
constexpr void on_arg_id(T) {}
|
|
|
|
constexpr void on_replacement_field(const char *) {}
|
|
|
|
constexpr const char *on_format_specs(const char *s) { return s; }
|
|
|
|
constexpr void on_error(const char *) { error = true; }
|
|
|
|
bool error = false;
|
|
};
|
|
|
|
constexpr bool parse_string(const char *s) {
|
|
test_format_string_handler h;
|
|
fmt::internal::parse_format_string(s, h);
|
|
return !h.error;
|
|
}
|
|
|
|
TEST(FormatTest, ConstexprParseFormatString) {
|
|
static_assert(parse_string("foo"), "");
|
|
static_assert(!parse_string("}"), "");
|
|
static_assert(parse_string("{}"), "");
|
|
static_assert(parse_string("{42}"), "");
|
|
static_assert(parse_string("{foo}"), "");
|
|
static_assert(parse_string("{:}"), "");
|
|
}
|
|
|
|
TEST(FormatTest, UdlTemplate) {
|
|
EXPECT_EQ("foo", "foo"_format());
|
|
EXPECT_EQ(" 42", "{0:10}"_format(42));
|
|
EXPECT_EQ("42", fmt::format(FMT_STRING("{}"), 42));
|
|
}
|
|
|
|
struct test_error_handler {
|
|
const char *&error;
|
|
|
|
constexpr test_error_handler(const char *&err): error(err) {}
|
|
|
|
constexpr test_error_handler(const test_error_handler &other)
|
|
: error(other.error) {}
|
|
|
|
constexpr void on_error(const char *message) {
|
|
if (!error)
|
|
error = message;
|
|
}
|
|
};
|
|
|
|
constexpr size_t len(const char *s) {
|
|
size_t len = 0;
|
|
while (*s++)
|
|
++len;
|
|
return len;
|
|
}
|
|
|
|
constexpr bool equal(const char *s1, const char *s2) {
|
|
if (!s1 || !s2)
|
|
return s1 == s2;
|
|
while (*s1 && *s1 == *s2) {
|
|
++s1;
|
|
++s2;
|
|
}
|
|
return *s1 == *s2;
|
|
}
|
|
|
|
template <typename... Args>
|
|
constexpr bool test_error(const char *fmt, const char *expected_error) {
|
|
const char *actual_error = nullptr;
|
|
fmt::internal::check_format_string<char, test_error_handler, Args...>(
|
|
string_view(fmt, len(fmt)), test_error_handler(actual_error));
|
|
return equal(actual_error, expected_error);
|
|
}
|
|
|
|
#define EXPECT_ERROR(fmt, error, ...) \
|
|
static_assert(test_error<__VA_ARGS__>(fmt, error), "")
|
|
|
|
TEST(FormatTest, FormatStringErrors) {
|
|
EXPECT_ERROR("foo", nullptr);
|
|
EXPECT_ERROR("}", "unmatched '}' in format string");
|
|
EXPECT_ERROR("{0:s", "unknown format specifier", Date);
|
|
#ifndef _MSC_VER
|
|
// This causes an internal compiler error in MSVC2017.
|
|
EXPECT_ERROR("{0:=5", "unknown format specifier", int);
|
|
EXPECT_ERROR("{:{<}", "invalid fill character '{'", int);
|
|
EXPECT_ERROR("{:10000000000}", "number is too big", int);
|
|
EXPECT_ERROR("{:.10000000000}", "number is too big", int);
|
|
EXPECT_ERROR("{:x}", "argument index out of range");
|
|
EXPECT_ERROR("{:=}", "format specifier requires numeric argument",
|
|
const char *);
|
|
EXPECT_ERROR("{:+}", "format specifier requires numeric argument",
|
|
const char *);
|
|
EXPECT_ERROR("{:-}", "format specifier requires numeric argument",
|
|
const char *);
|
|
EXPECT_ERROR("{:#}", "format specifier requires numeric argument",
|
|
const char *);
|
|
EXPECT_ERROR("{: }", "format specifier requires numeric argument",
|
|
const char *);
|
|
EXPECT_ERROR("{:0}", "format specifier requires numeric argument",
|
|
const char *);
|
|
EXPECT_ERROR("{:+}", "format specifier requires signed argument", unsigned);
|
|
EXPECT_ERROR("{:-}", "format specifier requires signed argument", unsigned);
|
|
EXPECT_ERROR("{: }", "format specifier requires signed argument", unsigned);
|
|
EXPECT_ERROR("{:.2}", "precision not allowed for this argument type", int);
|
|
EXPECT_ERROR("{:s}", "invalid type specifier", int);
|
|
EXPECT_ERROR("{:s}", "invalid type specifier", bool);
|
|
EXPECT_ERROR("{:s}", "invalid type specifier", char);
|
|
EXPECT_ERROR("{:+}", "invalid format specifier for char", char);
|
|
EXPECT_ERROR("{:s}", "invalid type specifier", double);
|
|
EXPECT_ERROR("{:d}", "invalid type specifier", const char *);
|
|
EXPECT_ERROR("{:d}", "invalid type specifier", std::string);
|
|
EXPECT_ERROR("{:s}", "invalid type specifier", void *);
|
|
#endif
|
|
EXPECT_ERROR("{foo", "missing '}' in format string", int);
|
|
EXPECT_ERROR("{10000000000}", "number is too big");
|
|
EXPECT_ERROR("{0x}", "invalid format string");
|
|
EXPECT_ERROR("{-}", "invalid format string");
|
|
EXPECT_ERROR("{:{0x}}", "invalid format string", int);
|
|
EXPECT_ERROR("{:{-}}", "invalid format string", int);
|
|
EXPECT_ERROR("{:.{0x}}", "invalid format string", int);
|
|
EXPECT_ERROR("{:.{-}}", "invalid format string", int);
|
|
EXPECT_ERROR("{:.x}", "missing precision specifier", int);
|
|
EXPECT_ERROR("{}", "argument index out of range");
|
|
EXPECT_ERROR("{1}", "argument index out of range", int);
|
|
EXPECT_ERROR("{1}{}",
|
|
"cannot switch from manual to automatic argument indexing",
|
|
int, int);
|
|
EXPECT_ERROR("{}{1}",
|
|
"cannot switch from automatic to manual argument indexing",
|
|
int, int);
|
|
}
|
|
|
|
TEST(FormatTest, ToString) {
|
|
EXPECT_EQ("42", fmt::to_string(42));
|
|
}
|
|
|
|
TEST(FormatTest, OutputIterators) {
|
|
std::list<char> out;
|
|
fmt::format_to(std::back_inserter(out), "{}", 42);
|
|
EXPECT_EQ("42", std::string(out.begin(), out.end()));
|
|
std::stringstream s;
|
|
fmt::format_to(std::ostream_iterator<char>(s), "{}", 42);
|
|
EXPECT_EQ("42", s.str());
|
|
}
|
|
|
|
TEST(FormatTest, OutputSize) {
|
|
EXPECT_EQ(2, fmt::count("{}", 42));
|
|
}
|