//===----------------------------------------------------------------------===// // // 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 // // template... Ts> // struct formatter, charT> // template // 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 #include #include #include #include #include #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 void test(StringViewT expected, Arg arg) { using CharT = typename StringViewT::value_type; using String = std::basic_string; using OutIt = std::back_insert_iterator; using FormatCtxT = std::basic_format_context; const std::formatter formatter; String result; OutIt out = std::back_inserter(result); FormatCtxT format_ctx = test_format_context_create(out, std::make_format_args(arg)); formatter.format(arg, format_ctx); assert(result == expected); } template void test_assure_parse_is_called(std::basic_string_view fmt) { using String = std::basic_string; using OutIt = std::back_insert_iterator; using FormatCtxT = std::basic_format_context; std::pair arg; String result; OutIt out = std::back_inserter(result); FormatCtxT format_ctx = test_format_context_create(out, std::make_format_args(arg)); std::formatter formatter; std::basic_format_parse_context ctx{fmt}; formatter.parse(ctx); formatter.format(arg, format_ctx); } template void test_assure_parse_is_called() { using String = std::basic_string; using OutIt = std::back_insert_iterator; using FormatCtxT = std::basic_format_context; std::pair arg; String result; OutIt out = std::back_inserter(result); [[maybe_unused]] FormatCtxT format_ctx = test_format_context_create(out, std::make_format_args(arg)); { // parse not called [[maybe_unused]] const std::formatter 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 void test() { test(SV("(1)"), std::tuple{1}); test(SV("(1, 1)"), std::tuple{1, CharT('1')}); test(SV("(1, 1)"), std::pair{1, CharT('1')}); test(SV("(1, 1, true)"), std::tuple{1, CharT('1'), true}); test_assure_parse_is_called(); } void test() { test(); #ifndef TEST_HAS_NO_WIDE_CHARACTERS test(); #endif } int main(int, char**) { test(); return 0; }