fmt/test/custom-formatter-test.cc

48 lines
1.3 KiB
C++
Raw Normal View History

/*
Custom argument formatter tests
Copyright (c) 2016, Victor Zverovich
All rights reserved.
For the license information refer to format.h.
*/
#include "fmt/printf.h"
#include "gtest-extra.h"
2017-02-18 15:46:32 +00:00
using fmt::printf_arg_formatter;
// A custom argument formatter that doesn't print `-` for floating-point values
// rounded to 0.
2017-02-18 15:46:32 +00:00
class CustomArgFormatter : public fmt::arg_formatter<char> {
public:
CustomArgFormatter(fmt::buffer &buf, fmt::basic_context<char> &ctx,
2017-01-28 12:51:35 +00:00
fmt::format_specs &s)
2017-02-18 15:46:32 +00:00
: fmt::arg_formatter<char>(buf, ctx, s) {}
2017-02-18 15:46:32 +00:00
using fmt::arg_formatter<char>::operator();
2016-11-20 16:47:24 +00:00
void operator()(double value) {
if (round(value * pow(10, spec().precision())) == 0)
value = 0;
2017-02-18 15:46:32 +00:00
fmt::arg_formatter<char>::operator()(value);
}
};
std::string custom_vformat(fmt::string_view format_str, fmt::args args) {
fmt::memory_buffer buffer;
// Pass custom argument formatter as a template arg to vwrite.
fmt::vformat_to<CustomArgFormatter>(buffer, format_str, args);
return std::string(buffer.data(), buffer.size());
}
2016-08-27 00:23:13 +00:00
template <typename... Args>
std::string custom_format(const char *format_str, const Args & ... args) {
2017-02-05 14:41:39 +00:00
auto va = fmt::make_args(args...);
2016-08-27 14:57:48 +00:00
return custom_vformat(format_str, va);
2016-08-27 00:23:13 +00:00
}
TEST(CustomFormatterTest, Format) {
EXPECT_EQ("0.00", custom_format("{:.2f}", -.00001));
}