1 //===----------------------------------------------------------------------===//
2 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
3 // See https://llvm.org/LICENSE.txt for license information.
4 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //===----------------------------------------------------------------------===//
8 // UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
9 // UNSUPPORTED: no-filesystem
10 // UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME
12 // TODO PRINT Enable again
13 // https://reviews.llvm.org/D150044
14 // https://lab.llvm.org/buildbot/#/builders/237/builds/3578
15 // UNSUPPORTED: asan, hwasan, msan
17 // XFAIL: availability-fp_to_chars-missing
19 // The error exception has no system error string.
20 // XFAIL: LIBCXX-ANDROID-FIXME
24 // void vprint_nonunicode(FILE* stream, string_view fmt, format_args args);
34 #include <string_view>
36 #include "assert_macros.h"
37 #include "concat_macros.h"
38 #include "filesystem_test_helper.h"
39 #include "print_tests.h"
40 #include "test_macros.h"
43 std::string filename
= env
.create_file("output.txt");
45 auto test_file
= []<class... Args
>(std::string_view expected
, std::string_view fmt
, Args
&&... args
) {
46 FILE* file
= fopen(filename
.c_str(), "wb");
49 std::vprint_nonunicode(file
, fmt
, std::make_format_args(args
...));
52 std::ifstream stream
{filename
.c_str(), std::ios_base::in
| std::ios_base::binary
};
53 std::string
out(std::istreambuf_iterator
<char>{stream
}, {});
54 TEST_REQUIRE(out
== expected
,
55 TEST_WRITE_CONCATENATED(
56 "\nFormat string ", fmt
, "\nExpected output ", expected
, "\nActual output ", out
, '\n'));
59 auto test_exception
= []<class... Args
>([[maybe_unused
]] std::string_view what
,
60 [[maybe_unused
]] std::string_view fmt
,
61 [[maybe_unused
]] Args
&&... args
) {
62 FILE* file
= fopen(filename
.c_str(), "wb");
65 TEST_VALIDATE_EXCEPTION(
67 [&]([[maybe_unused
]] const std::format_error
& e
) {
70 TEST_WRITE_CONCATENATED(
71 "\nFormat string ", fmt
, "\nExpected exception ", what
, "\nActual exception ", e
.what(), '\n'));
73 std::vprint_nonunicode(file
, fmt
, std::make_format_args(args
...)));
78 // Glibc fails writing to a wide stream.
79 #if defined(TEST_HAS_GLIBC) && !defined(TEST_HAS_NO_WIDE_CHARACTERS)
80 static void test_wide_stream() {
81 FILE* file
= fopen(filename
.c_str(), "wb");
84 int mode
= std::fwide(file
, 1);
87 TEST_VALIDATE_EXCEPTION(
89 [&]([[maybe_unused
]] const std::system_error
& e
) {
90 [[maybe_unused
]] std::string_view what
{"failed to write formatted output"};
93 TEST_WRITE_CONCATENATED("\nExpected exception ", what
, "\nActual exception ", e
.what(), '\n'));
95 std::vprint_nonunicode(file
, "hello", std::make_format_args()));
97 #endif // defined(TEST_HAS_GLIBC) && !defined(TEST_HAS_NO_WIDE_CHARACTERS)
99 static void test_read_only() {
100 FILE* file
= fopen(filename
.c_str(), "r");
103 TEST_VALIDATE_EXCEPTION(
105 [&]([[maybe_unused
]] const std::system_error
& e
) {
107 [[maybe_unused
]] std::string_view what
{"failed to write formatted output: Broken pipe"};
109 [[maybe_unused
]] std::string_view what
{"failed to write formatted output: Operation not permitted"};
113 TEST_WRITE_CONCATENATED("\nExpected exception ", what
, "\nActual exception ", e
.what(), '\n'));
115 std::vprint_nonunicode(file
, "hello", std::make_format_args()));
118 static void test_new_line() {
119 // Text does newline translation.
121 FILE* file
= fopen(filename
.c_str(), "w");
124 std::vprint_nonunicode(file
, "\n", std::make_format_args());
126 assert(std::ftell(file
) == 1);
128 assert(std::ftell(file
) == 2);
131 // Binary no newline translation.
133 FILE* file
= fopen(filename
.c_str(), "wb");
136 std::vprint_nonunicode(file
, "\n", std::make_format_args());
137 assert(std::ftell(file
) == 1);
141 int main(int, char**) {
142 print_tests(test_file
, test_exception
);
144 #if defined(TEST_HAS_GLIBC) && !defined(TEST_HAS_NO_WIDE_CHARACTERS)