1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
//===----------------------------------------------------------------------===//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME
// <format>
// template<class charT, formattable<charT>... Ts>
// struct formatter<pair-or-tuple<Ts...>, charT>
// template<class FormatContext>
// typename FormatContext::iterator
// format(see below& elems, FormatContext& ctx) const;
// Note this tests the basics of this function. It's tested in more detail in
// the format functions tests.
#include <cassert>
#include <concepts>
#include <format>
#include <iterator>
#include <tuple>
#include <utility>
#include "assert_macros.h"
#include "format.functions.common.h"
#include "make_string.h"
#include "test_format_context.h"
#include "test_macros.h"
#define SV(S) MAKE_STRING_VIEW(CharT, S)
template <class StringViewT, class Arg>
void test(StringViewT expected, Arg arg) {
using CharT = typename StringViewT::value_type;
using String = std::basic_string<CharT>;
using OutIt = std::back_insert_iterator<String>;
using FormatCtxT = std::basic_format_context<OutIt, CharT>;
const std::formatter<Arg, CharT> formatter;
String result;
OutIt out = std::back_inserter(result);
FormatCtxT format_ctx = test_format_context_create<OutIt, CharT>(out, std::make_format_args<FormatCtxT>(arg));
formatter.format(arg, format_ctx);
assert(result == expected);
}
template <class CharT>
void test_assure_parse_is_called(std::basic_string_view<CharT> fmt) {
using String = std::basic_string<CharT>;
using OutIt = std::back_insert_iterator<String>;
using FormatCtxT = std::basic_format_context<OutIt, CharT>;
std::pair<parse_call_validator, parse_call_validator> arg;
String result;
OutIt out = std::back_inserter(result);
FormatCtxT format_ctx = test_format_context_create<OutIt, CharT>(out, std::make_format_args<FormatCtxT>(arg));
std::formatter<decltype(arg), CharT> formatter;
std::basic_format_parse_context<CharT> ctx{fmt};
formatter.parse(ctx);
formatter.format(arg, format_ctx);
}
template <class CharT>
void test_assure_parse_is_called() {
using String = std::basic_string<CharT>;
using OutIt = std::back_insert_iterator<String>;
using FormatCtxT = std::basic_format_context<OutIt, CharT>;
std::pair<parse_call_validator, parse_call_validator> arg;
String result;
OutIt out = std::back_inserter(result);
[[maybe_unused]] FormatCtxT format_ctx =
test_format_context_create<OutIt, CharT>(out, std::make_format_args<FormatCtxT>(arg));
{ // parse not called
[[maybe_unused]] const std::formatter<decltype(arg), CharT> formatter;
TEST_THROWS_TYPE(parse_call_validator::parse_function_not_called, formatter.format(arg, format_ctx));
}
test_assure_parse_is_called(SV("5"));
test_assure_parse_is_called(SV("n"));
test_assure_parse_is_called(SV("m"));
test_assure_parse_is_called(SV("5n"));
test_assure_parse_is_called(SV("5m"));
}
template <class CharT>
void test() {
test(SV("(1)"), std::tuple<int>{1});
test(SV("(1, 1)"), std::tuple<int, CharT>{1, CharT('1')});
test(SV("(1, 1)"), std::pair<int, CharT>{1, CharT('1')});
test(SV("(1, 1, true)"), std::tuple<int, CharT, bool>{1, CharT('1'), true});
test_assure_parse_is_called<CharT>();
}
void test() {
test<char>();
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
test<wchar_t>();
#endif
}
int main(int, char**) {
test();
return 0;
}
|