fmt/test/custom-formatter-test.cc

58 lines
1.7 KiB
C++
Raw Normal View History

2018-03-04 09:16:51 -08:00
// Formatting library for C++ - custom argument formatter tests
//
// Copyright (c) 2012 - present, Victor Zverovich
// All rights reserved.
//
// For the license information refer to format.h.
#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#endif
2018-03-04 09:16:51 -08:00
#include "fmt/format.h"
#include "gtest-extra.h"
2018-07-04 13:17:03 -07:00
// MSVC 2013 is known to be broken.
#if !FMT_MSC_VER || FMT_MSC_VER > 1800
// A custom argument formatter that doesn't print `-` for floating-point values
// rounded to 0.
2019-01-12 18:27:38 -08:00
class custom_arg_formatter
2020-05-29 16:51:45 -07:00
: public fmt::arg_formatter<fmt::format_context::iterator, char> {
public:
2020-05-29 16:51:45 -07:00
using base = fmt::arg_formatter<fmt::format_context::iterator, char>;
2018-01-14 07:19:23 -08:00
2019-01-12 18:27:38 -08:00
custom_arg_formatter(fmt::format_context& ctx,
2019-02-09 19:34:42 -08:00
fmt::format_parse_context* parse_ctx,
fmt::format_specs* s = nullptr)
2019-02-09 19:34:42 -08:00
: base(ctx, parse_ctx, s) {}
2018-01-14 07:19:23 -08:00
using base::operator();
2016-11-20 08:47:24 -08:00
iterator operator()(double value) {
// Comparing a float to 0.0 is safe.
2019-07-07 06:39:20 -07:00
if (round(value * pow(10, specs()->precision)) == 0.0) value = 0;
return base::operator()(value);
}
};
2018-07-04 13:17:03 -07:00
std::string custom_vformat(fmt::string_view format_str, fmt::format_args args) {
fmt::memory_buffer buffer;
2020-05-29 16:51:45 -07:00
fmt::internal::buffer<char>& base = buffer;
// Pass custom argument formatter as a template arg to vwrite.
2020-05-29 16:51:45 -07:00
fmt::vformat_to<custom_arg_formatter>(std::back_inserter(base), format_str,
args);
return std::string(buffer.data(), buffer.size());
}
2016-08-26 17:23:13 -07:00
template <typename... Args>
2019-01-12 18:27:38 -08:00
std::string custom_format(const char* format_str, const Args&... args) {
2018-04-08 07:21:26 -07:00
auto va = fmt::make_format_args(args...);
2016-08-27 07:57:48 -07:00
return custom_vformat(format_str, va);
2016-08-26 17:23:13 -07:00
}
TEST(CustomFormatterTest, Format) {
EXPECT_EQ("0.00", custom_format("{:.2f}", -.00001));
}
2018-07-04 13:17:03 -07:00
#endif