2018-11-21 14:36:16 +00:00
|
|
|
// Formatting library for C++ - locale tests
|
2018-11-14 17:39:37 +00:00
|
|
|
//
|
|
|
|
// Copyright (c) 2012 - present, Victor Zverovich
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// For the license information refer to format.h.
|
|
|
|
|
|
|
|
#include "fmt/locale.h"
|
|
|
|
#include "gmock.h"
|
|
|
|
|
2019-01-19 15:16:05 +00:00
|
|
|
#ifndef FMT_STATIC_THOUSANDS_SEPARATOR
|
2019-01-13 02:27:38 +00:00
|
|
|
template <typename Char> struct numpunct : std::numpunct<Char> {
|
2018-11-14 17:39:37 +00:00
|
|
|
protected:
|
2019-07-04 00:25:57 +00:00
|
|
|
Char do_decimal_point() const FMT_OVERRIDE { return '?'; }
|
2018-11-14 23:35:24 +00:00
|
|
|
Char do_thousands_sep() const FMT_OVERRIDE { return '~'; }
|
2018-11-14 17:39:37 +00:00
|
|
|
};
|
|
|
|
|
2019-07-04 00:25:57 +00:00
|
|
|
TEST(LocaleTest, DoubleDecimalPoint) {
|
|
|
|
std::locale loc(std::locale(), new numpunct<char>());
|
|
|
|
EXPECT_EQ("1?23", fmt::format(loc, "{:n}", 1.23));
|
2019-07-04 22:15:14 +00:00
|
|
|
// Test with Grisu disabled.
|
|
|
|
fmt::memory_buffer buf;
|
|
|
|
fmt::internal::writer w(buf, fmt::internal::locale_ref(loc));
|
|
|
|
auto specs = fmt::format_specs();
|
|
|
|
specs.type = 'n';
|
2019-10-12 03:38:31 +00:00
|
|
|
w.write_fp<double, false>(1.23, specs);
|
2019-07-04 22:15:14 +00:00
|
|
|
EXPECT_EQ(fmt::to_string(buf), "1?23");
|
2019-07-04 00:25:57 +00:00
|
|
|
}
|
|
|
|
|
2018-11-14 17:39:37 +00:00
|
|
|
TEST(LocaleTest, Format) {
|
2018-11-14 23:35:24 +00:00
|
|
|
std::locale loc(std::locale(), new numpunct<char>());
|
|
|
|
EXPECT_EQ("1,234,567", fmt::format(std::locale(), "{:n}", 1234567));
|
|
|
|
EXPECT_EQ("1~234~567", fmt::format(loc, "{:n}", 1234567));
|
|
|
|
fmt::format_arg_store<fmt::format_context, int> as{1234567};
|
|
|
|
EXPECT_EQ("1~234~567", fmt::vformat(loc, "{:n}", fmt::format_args(as)));
|
|
|
|
std::string s;
|
|
|
|
fmt::format_to(std::back_inserter(s), loc, "{:n}", 1234567);
|
|
|
|
EXPECT_EQ("1~234~567", s);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(LocaleTest, WFormat) {
|
|
|
|
std::locale loc(std::locale(), new numpunct<wchar_t>());
|
|
|
|
EXPECT_EQ(L"1,234,567", fmt::format(std::locale(), L"{:n}", 1234567));
|
|
|
|
EXPECT_EQ(L"1~234~567", fmt::format(loc, L"{:n}", 1234567));
|
|
|
|
fmt::format_arg_store<fmt::wformat_context, int> as{1234567};
|
|
|
|
EXPECT_EQ(L"1~234~567", fmt::vformat(loc, L"{:n}", fmt::wformat_args(as)));
|
2019-07-25 06:53:55 +00:00
|
|
|
auto sep =
|
|
|
|
std::use_facet<std::numpunct<wchar_t>>(std::locale("C")).thousands_sep();
|
|
|
|
auto result = sep == ',' ? L"1,234,567" : L"1234567";
|
|
|
|
EXPECT_EQ(result, fmt::format(std::locale("C"), L"{:n}", 1234567));
|
2018-11-14 17:39:37 +00:00
|
|
|
}
|
2019-01-19 15:16:05 +00:00
|
|
|
#endif // FMT_STATIC_THOUSANDS_SEPARATOR
|