1 //===- llvm/unittest/Support/raw_ostream_test.cpp - raw_ostream tests -----===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "llvm/ADT/SmallString.h"
10 #include "llvm/Support/Errc.h"
11 #include "llvm/Support/FileSystem.h"
12 #include "llvm/Support/FileUtilities.h"
13 #include "llvm/Support/Format.h"
14 #include "llvm/Support/MemoryBuffer.h"
15 #include "llvm/Support/raw_ostream.h"
16 #include "llvm/Testing/Support/Error.h"
17 #include "gtest/gtest.h"
24 template<typename T
> std::string
printToString(const T
&Value
) {
26 llvm::raw_string_ostream
OS(res
);
33 /// printToString - Print the given value to a stream which only has \arg
34 /// BytesLeftInBuffer bytes left in the buffer. This is useful for testing edge
35 /// cases in the buffer handling logic.
36 template<typename T
> std::string
printToString(const T
&Value
,
37 unsigned BytesLeftInBuffer
) {
38 // FIXME: This is relying on internal knowledge of how raw_ostream works to
39 // get the buffer position right.
40 SmallString
<256> SVec
;
41 assert(BytesLeftInBuffer
< 256 && "Invalid buffer count!");
42 llvm::raw_svector_ostream
OS(SVec
);
43 unsigned StartIndex
= 256 - BytesLeftInBuffer
;
44 for (unsigned i
= 0; i
!= StartIndex
; ++i
)
47 return std::string(OS
.str().substr(StartIndex
));
50 template<typename T
> std::string
printToStringUnbuffered(const T
&Value
) {
52 llvm::raw_string_ostream
OS(res
);
60 raw_ostream
&operator<<(raw_ostream
&OS
, const X
&) { return OS
<< 'X'; }
62 TEST(raw_ostreamTest
, Types_Buffered
) {
64 EXPECT_EQ("c", printToString('c'));
67 EXPECT_EQ("hello", printToString("hello"));
68 EXPECT_EQ("hello", printToString(std::string("hello")));
71 EXPECT_EQ("0", printToString(0));
72 EXPECT_EQ("2425", printToString(2425));
73 EXPECT_EQ("-2425", printToString(-2425));
76 EXPECT_EQ("0", printToString(0LL));
77 EXPECT_EQ("257257257235709", printToString(257257257235709LL));
78 EXPECT_EQ("-257257257235709", printToString(-257257257235709LL));
81 EXPECT_EQ("1.100000e+00", printToString(1.1));
84 EXPECT_EQ("0x0", printToString((void*) nullptr));
85 EXPECT_EQ("0xbeef", printToString((void*) 0xbeefLL
));
86 EXPECT_EQ("0xdeadbeef", printToString((void*) 0xdeadbeefLL
));
89 EXPECT_EQ("18446744073709551615", printToString(UINT64_MAX
));
90 EXPECT_EQ("-9223372036854775808", printToString(INT64_MIN
));
92 // X, checking free operator<<().
93 EXPECT_EQ("X", printToString(X
{}));
96 TEST(raw_ostreamTest
, Types_Unbuffered
) {
98 EXPECT_EQ("c", printToStringUnbuffered('c'));
101 EXPECT_EQ("hello", printToStringUnbuffered("hello"));
102 EXPECT_EQ("hello", printToStringUnbuffered(std::string("hello")));
105 EXPECT_EQ("0", printToStringUnbuffered(0));
106 EXPECT_EQ("2425", printToStringUnbuffered(2425));
107 EXPECT_EQ("-2425", printToStringUnbuffered(-2425));
110 EXPECT_EQ("0", printToStringUnbuffered(0LL));
111 EXPECT_EQ("257257257235709", printToStringUnbuffered(257257257235709LL));
112 EXPECT_EQ("-257257257235709", printToStringUnbuffered(-257257257235709LL));
115 EXPECT_EQ("1.100000e+00", printToStringUnbuffered(1.1));
118 EXPECT_EQ("0x0", printToStringUnbuffered((void*) nullptr));
119 EXPECT_EQ("0xbeef", printToStringUnbuffered((void*) 0xbeefLL
));
120 EXPECT_EQ("0xdeadbeef", printToStringUnbuffered((void*) 0xdeadbeefLL
));
123 EXPECT_EQ("18446744073709551615", printToStringUnbuffered(UINT64_MAX
));
124 EXPECT_EQ("-9223372036854775808", printToStringUnbuffered(INT64_MIN
));
126 // X, checking free operator<<().
127 EXPECT_EQ("X", printToString(X
{}));
130 TEST(raw_ostreamTest
, BufferEdge
) {
131 EXPECT_EQ("1.20", printToString(format("%.2f", 1.2), 1));
132 EXPECT_EQ("1.20", printToString(format("%.2f", 1.2), 2));
133 EXPECT_EQ("1.20", printToString(format("%.2f", 1.2), 3));
134 EXPECT_EQ("1.20", printToString(format("%.2f", 1.2), 4));
135 EXPECT_EQ("1.20", printToString(format("%.2f", 1.2), 10));
138 TEST(raw_ostreamTest
, TinyBuffer
) {
140 raw_string_ostream
OS(Str
);
144 OS
<< 'w' << 'o' << 'r' << 'l' << 'd';
146 EXPECT_EQ("hello1world", Str
);
149 TEST(raw_ostreamTest
, WriteEscaped
) {
153 raw_string_ostream(Str
).write_escaped("hi");
154 EXPECT_EQ("hi", Str
);
157 raw_string_ostream(Str
).write_escaped("\\\t\n\"");
158 EXPECT_EQ("\\\\\\t\\n\\\"", Str
);
161 raw_string_ostream(Str
).write_escaped("\1\10\200");
162 EXPECT_EQ("\\001\\010\\200", Str
);
165 TEST(raw_ostreamTest
, Justify
) {
166 EXPECT_EQ("xyz ", printToString(left_justify("xyz", 6), 6));
167 EXPECT_EQ("abc", printToString(left_justify("abc", 3), 3));
168 EXPECT_EQ("big", printToString(left_justify("big", 1), 3));
169 EXPECT_EQ(" xyz", printToString(right_justify("xyz", 6), 6));
170 EXPECT_EQ("abc", printToString(right_justify("abc", 3), 3));
171 EXPECT_EQ("big", printToString(right_justify("big", 1), 3));
172 EXPECT_EQ(" on ", printToString(center_justify("on", 9), 9));
173 EXPECT_EQ(" off ", printToString(center_justify("off", 10), 10));
174 EXPECT_EQ("single ", printToString(center_justify("single", 7), 7));
175 EXPECT_EQ("none", printToString(center_justify("none", 1), 4));
176 EXPECT_EQ("none", printToString(center_justify("none", 1), 1));
179 TEST(raw_ostreamTest
, FormatHex
) {
180 EXPECT_EQ("0x1234", printToString(format_hex(0x1234, 6), 6));
181 EXPECT_EQ("0x001234", printToString(format_hex(0x1234, 8), 8));
182 EXPECT_EQ("0x00001234", printToString(format_hex(0x1234, 10), 10));
183 EXPECT_EQ("0x1234", printToString(format_hex(0x1234, 4), 6));
184 EXPECT_EQ("0xff", printToString(format_hex(255, 4), 4));
185 EXPECT_EQ("0xFF", printToString(format_hex(255, 4, true), 4));
186 EXPECT_EQ("0x1", printToString(format_hex(1, 3), 3));
187 EXPECT_EQ("0x12", printToString(format_hex(0x12, 3), 4));
188 EXPECT_EQ("0x123", printToString(format_hex(0x123, 3), 5));
189 EXPECT_EQ("FF", printToString(format_hex_no_prefix(0xFF, 2, true), 4));
190 EXPECT_EQ("ABCD", printToString(format_hex_no_prefix(0xABCD, 2, true), 4));
191 EXPECT_EQ("0xffffffffffffffff",
192 printToString(format_hex(UINT64_MAX
, 18), 18));
193 EXPECT_EQ("0x8000000000000000",
194 printToString(format_hex((INT64_MIN
), 18), 18));
197 TEST(raw_ostreamTest
, FormatDecimal
) {
198 EXPECT_EQ(" 0", printToString(format_decimal(0, 4), 4));
199 EXPECT_EQ(" -1", printToString(format_decimal(-1, 4), 4));
200 EXPECT_EQ(" -1", printToString(format_decimal(-1, 6), 6));
201 EXPECT_EQ("1234567890", printToString(format_decimal(1234567890, 10), 10));
202 EXPECT_EQ(" 9223372036854775807",
203 printToString(format_decimal(INT64_MAX
, 21), 21));
204 EXPECT_EQ(" -9223372036854775808",
205 printToString(format_decimal(INT64_MIN
, 21), 21));
209 formatted_bytes_str(ArrayRef
<uint8_t> Bytes
,
210 std::optional
<uint64_t> Offset
= std::nullopt
,
211 uint32_t NumPerLine
= 16, uint8_t ByteGroupSize
= 4) {
213 raw_string_ostream
Str(S
);
214 Str
<< format_bytes(Bytes
, Offset
, NumPerLine
, ByteGroupSize
);
219 static std::string
format_bytes_with_ascii_str(
220 ArrayRef
<uint8_t> Bytes
, std::optional
<uint64_t> Offset
= std::nullopt
,
221 uint32_t NumPerLine
= 16, uint8_t ByteGroupSize
= 4) {
223 raw_string_ostream
Str(S
);
224 Str
<< format_bytes_with_ascii(Bytes
, Offset
, NumPerLine
, ByteGroupSize
);
229 TEST(raw_ostreamTest
, FormattedHexBytes
) {
230 std::vector
<uint8_t> Buf
= {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i',
231 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r',
232 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0',
233 '1', '2', '3', '4', '5', '6', '7', '8', '9'};
234 ArrayRef
<uint8_t> B(Buf
);
236 // Test invalid input.
237 EXPECT_EQ("", formatted_bytes_str(ArrayRef
<uint8_t>()));
238 EXPECT_EQ("", format_bytes_with_ascii_str(ArrayRef
<uint8_t>()));
239 //----------------------------------------------------------------------
240 // Test hex byte output with the default 4 byte groups
241 //----------------------------------------------------------------------
242 EXPECT_EQ("61", formatted_bytes_str(B
.take_front()));
243 EXPECT_EQ("61626364 65", formatted_bytes_str(B
.take_front(5)));
244 // Test that 16 bytes get written to a line correctly.
245 EXPECT_EQ("61626364 65666768 696a6b6c 6d6e6f70",
246 formatted_bytes_str(B
.take_front(16)));
247 // Test raw bytes with default 16 bytes per line wrapping.
248 EXPECT_EQ("61626364 65666768 696a6b6c 6d6e6f70\n71",
249 formatted_bytes_str(B
.take_front(17)));
250 // Test raw bytes with 1 bytes per line wrapping.
251 EXPECT_EQ("61\n62\n63\n64\n65\n66",
252 formatted_bytes_str(B
.take_front(6), std::nullopt
, 1));
253 // Test raw bytes with 7 bytes per line wrapping.
254 EXPECT_EQ("61626364 656667\n68696a6b 6c6d6e\n6f7071",
255 formatted_bytes_str(B
.take_front(17), std::nullopt
, 7));
256 // Test raw bytes with 8 bytes per line wrapping.
257 EXPECT_EQ("61626364 65666768\n696a6b6c 6d6e6f70\n71",
258 formatted_bytes_str(B
.take_front(17), std::nullopt
, 8));
259 //----------------------------------------------------------------------
260 // Test hex byte output with the 1 byte groups
261 //----------------------------------------------------------------------
262 EXPECT_EQ("61 62 63 64 65",
263 formatted_bytes_str(B
.take_front(5), std::nullopt
, 16, 1));
264 // Test that 16 bytes get written to a line correctly.
265 EXPECT_EQ("61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70",
266 formatted_bytes_str(B
.take_front(16), std::nullopt
, 16, 1));
267 // Test raw bytes with default 16 bytes per line wrapping.
268 EXPECT_EQ("61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70\n71",
269 formatted_bytes_str(B
.take_front(17), std::nullopt
, 16, 1));
270 // Test raw bytes with 7 bytes per line wrapping.
271 EXPECT_EQ("61 62 63 64 65 66 67\n68 69 6a 6b 6c 6d 6e\n6f 70 71",
272 formatted_bytes_str(B
.take_front(17), std::nullopt
, 7, 1));
273 // Test raw bytes with 8 bytes per line wrapping.
274 EXPECT_EQ("61 62 63 64 65 66 67 68\n69 6a 6b 6c 6d 6e 6f 70\n71",
275 formatted_bytes_str(B
.take_front(17), std::nullopt
, 8, 1));
277 //----------------------------------------------------------------------
278 // Test hex byte output with the 2 byte groups
279 //----------------------------------------------------------------------
280 EXPECT_EQ("6162 6364 65",
281 formatted_bytes_str(B
.take_front(5), std::nullopt
, 16, 2));
282 // Test that 16 bytes get written to a line correctly.
283 EXPECT_EQ("6162 6364 6566 6768 696a 6b6c 6d6e 6f70",
284 formatted_bytes_str(B
.take_front(16), std::nullopt
, 16, 2));
285 // Test raw bytes with default 16 bytes per line wrapping.
286 EXPECT_EQ("6162 6364 6566 6768 696a 6b6c 6d6e 6f70\n71",
287 formatted_bytes_str(B
.take_front(17), std::nullopt
, 16, 2));
288 // Test raw bytes with 7 bytes per line wrapping.
289 EXPECT_EQ("6162 6364 6566 67\n6869 6a6b 6c6d 6e\n6f70 71",
290 formatted_bytes_str(B
.take_front(17), std::nullopt
, 7, 2));
291 // Test raw bytes with 8 bytes per line wrapping.
292 EXPECT_EQ("6162 6364 6566 6768\n696a 6b6c 6d6e 6f70\n71",
293 formatted_bytes_str(B
.take_front(17), std::nullopt
, 8, 2));
295 //----------------------------------------------------------------------
296 // Test hex bytes with offset with the default 4 byte groups.
297 //----------------------------------------------------------------------
298 EXPECT_EQ("0000: 61", formatted_bytes_str(B
.take_front(), 0x0));
299 EXPECT_EQ("1000: 61", formatted_bytes_str(B
.take_front(), 0x1000));
300 EXPECT_EQ("1000: 61\n1001: 62",
301 formatted_bytes_str(B
.take_front(2), 0x1000, 1));
302 //----------------------------------------------------------------------
303 // Test hex bytes with ASCII with the default 4 byte groups.
304 //----------------------------------------------------------------------
305 EXPECT_EQ("61626364 65666768 696a6b6c 6d6e6f70 |abcdefghijklmnop|",
306 format_bytes_with_ascii_str(B
.take_front(16)));
307 EXPECT_EQ("61626364 65666768 |abcdefgh|\n"
308 "696a6b6c 6d6e6f70 |ijklmnop|",
309 format_bytes_with_ascii_str(B
.take_front(16), std::nullopt
, 8));
310 EXPECT_EQ("61626364 65666768 |abcdefgh|\n696a6b6c |ijkl|",
311 format_bytes_with_ascii_str(B
.take_front(12), std::nullopt
, 8));
312 std::vector
<uint8_t> Unprintable
= {'a', '\x1e', 'b', '\x1f'};
313 // Make sure the ASCII is still lined up correctly when fewer bytes than 16
314 // bytes per line are available. The ASCII should still be aligned as if 16
315 // bytes of hex might be displayed.
316 EXPECT_EQ("611e621f |a.b.|",
317 format_bytes_with_ascii_str(Unprintable
));
318 //----------------------------------------------------------------------
319 // Test hex bytes with ASCII with offsets with the default 4 byte groups.
320 //----------------------------------------------------------------------
321 EXPECT_EQ("0000: 61626364 65666768 "
322 "696a6b6c 6d6e6f70 |abcdefghijklmnop|",
323 format_bytes_with_ascii_str(B
.take_front(16), 0));
324 EXPECT_EQ("0000: 61626364 65666768 |abcdefgh|\n"
325 "0008: 696a6b6c 6d6e6f70 |ijklmnop|",
326 format_bytes_with_ascii_str(B
.take_front(16), 0, 8));
327 EXPECT_EQ("0000: 61626364 656667 |abcdefg|\n"
328 "0007: 68696a6b 6c |hijkl|",
329 format_bytes_with_ascii_str(B
.take_front(12), 0, 7));
331 //----------------------------------------------------------------------
332 // Test hex bytes with ASCII with offsets with the default 2 byte groups.
333 //----------------------------------------------------------------------
334 EXPECT_EQ("0000: 6162 6364 6566 6768 "
335 "696a 6b6c 6d6e 6f70 |abcdefghijklmnop|",
336 format_bytes_with_ascii_str(B
.take_front(16), 0, 16, 2));
337 EXPECT_EQ("0000: 6162 6364 6566 6768 |abcdefgh|\n"
338 "0008: 696a 6b6c 6d6e 6f70 |ijklmnop|",
339 format_bytes_with_ascii_str(B
.take_front(16), 0, 8, 2));
340 EXPECT_EQ("0000: 6162 6364 6566 67 |abcdefg|\n"
341 "0007: 6869 6a6b 6c |hijkl|",
342 format_bytes_with_ascii_str(B
.take_front(12), 0, 7, 2));
344 //----------------------------------------------------------------------
345 // Test hex bytes with ASCII with offsets with the default 1 byte groups.
346 //----------------------------------------------------------------------
347 EXPECT_EQ("0000: 61 62 63 64 65 66 67 68 "
348 "69 6a 6b 6c 6d 6e 6f 70 |abcdefghijklmnop|",
349 format_bytes_with_ascii_str(B
.take_front(16), 0, 16, 1));
350 EXPECT_EQ("0000: 61 62 63 64 65 66 67 68 |abcdefgh|\n"
351 "0008: 69 6a 6b 6c 6d 6e 6f 70 |ijklmnop|",
352 format_bytes_with_ascii_str(B
.take_front(16), 0, 8, 1));
353 EXPECT_EQ("0000: 61 62 63 64 65 66 67 |abcdefg|\n"
354 "0007: 68 69 6a 6b 6c |hijkl|",
355 format_bytes_with_ascii_str(B
.take_front(12), 0, 7, 1));
359 TEST(raw_ostreamTest
, Colors
) {
362 raw_string_ostream
Sos(S
);
363 Sos
.enable_colors(false);
364 Sos
.changeColor(raw_ostream::YELLOW
);
365 EXPECT_EQ("", Sos
.str());
370 raw_string_ostream
Sos(S
);
371 Sos
.enable_colors(true);
372 Sos
.changeColor(raw_ostream::YELLOW
);
373 EXPECT_EQ("\x1B[0;33m", Sos
.str());
378 TEST(raw_fd_ostreamTest
, multiple_raw_fd_ostream_to_stdout
) {
381 { raw_fd_ostream("-", EC
, sys::fs::OpenFlags::OF_None
); }
382 { raw_fd_ostream("-", EC
, sys::fs::OpenFlags::OF_None
); }
385 TEST(raw_ostreamTest
, flush_tied_to_stream_on_write
) {
386 std::string TiedToBuffer
;
387 raw_string_ostream
TiedTo(TiedToBuffer
);
388 TiedTo
.SetBuffered();
391 SmallString
<64> Path
;
393 ASSERT_FALSE(sys::fs::createTemporaryFile("tietest", "", FD
, Path
));
394 FileRemover
Cleanup(Path
);
395 raw_fd_ostream
TiedStream(FD
, /*ShouldClose=*/false);
396 TiedStream
.SetUnbuffered();
397 TiedStream
.tie(&TiedTo
);
399 // Sanity check that the stream hasn't already been flushed.
400 EXPECT_EQ("", TiedToBuffer
);
402 // Empty string doesn't cause a flush of TiedTo.
404 EXPECT_EQ("", TiedToBuffer
);
406 // Non-empty strings trigger flush of TiedTo.
408 EXPECT_EQ("a", TiedToBuffer
);
410 // Single char write flushes TiedTo.
413 EXPECT_EQ("ac", TiedToBuffer
);
415 // Write to buffered stream without flush does not flush TiedTo.
416 TiedStream
.SetBuffered();
417 TiedStream
.SetBufferSize(2);
420 EXPECT_EQ("ac", TiedToBuffer
);
422 // Explicit flush of buffered stream flushes TiedTo.
424 EXPECT_EQ("ace", TiedToBuffer
);
426 // Explicit flush of buffered stream with empty buffer does not flush TiedTo.
429 EXPECT_EQ("ace", TiedToBuffer
);
431 // Write of data to empty buffer that is greater than buffer size flushes
433 TiedStream
<< "hijklm";
434 EXPECT_EQ("aceg", TiedToBuffer
);
436 // Write of data that overflows buffer size also flushes TiedTo.
441 EXPECT_EQ("acego", TiedToBuffer
);
443 // Calling tie with nullptr unties stream.
444 TiedStream
.SetUnbuffered();
445 TiedStream
.tie(nullptr);
448 EXPECT_EQ("acego", TiedToBuffer
);
454 static void checkFileData(StringRef FileName
, StringRef GoldenData
) {
455 ErrorOr
<std::unique_ptr
<MemoryBuffer
>> BufOrErr
=
456 MemoryBuffer::getFileOrSTDIN(FileName
);
457 EXPECT_FALSE(BufOrErr
.getError());
459 EXPECT_EQ((*BufOrErr
)->getBufferSize(), GoldenData
.size());
460 EXPECT_EQ(memcmp((*BufOrErr
)->getBufferStart(), GoldenData
.data(),
465 TEST(raw_ostreamTest
, raw_fd_ostream_mutual_ties
) {
466 SmallString
<64> PathTiedTo
;
469 sys::fs::createTemporaryFile("tietest1", "", FDTiedTo
, PathTiedTo
));
470 FileRemover
CleanupTiedTo(PathTiedTo
);
471 raw_fd_ostream
TiedTo(FDTiedTo
, /*ShouldClose=*/false);
473 SmallString
<64> PathTiedStream
;
475 ASSERT_FALSE(sys::fs::createTemporaryFile("tietest2", "", FDTiedStream
,
477 FileRemover
CleanupTiedStream(PathTiedStream
);
478 raw_fd_ostream
TiedStream(FDTiedStream
, /*ShouldClose=*/false);
480 // Streams can be tied to each other safely.
481 TiedStream
.tie(&TiedTo
);
482 TiedStream
.SetBuffered();
483 TiedStream
.SetBufferSize(2);
484 TiedTo
.tie(&TiedStream
);
485 TiedTo
.SetBufferSize(2);
488 checkFileData(PathTiedStream
.str(), "");
489 checkFileData(PathTiedTo
.str(), "");
491 checkFileData(PathTiedStream
.str(), "r");
493 checkFileData(PathTiedTo
.str(), "stuv");
494 // The y remains in the buffer, since it was written after the flush of
496 checkFileData(PathTiedStream
.str(), "rwx");
502 TEST(raw_ostreamTest
, reserve_stream
) {
504 raw_string_ostream
OS(Str
);
505 OS
<< "11111111111111111111";
506 uint64_t CurrentPos
= OS
.tell();
507 OS
.reserveExtraSpace(1000);
508 EXPECT_GE(Str
.capacity(), CurrentPos
+ 1000);
511 OS
<< 'w' << 'o' << 'r' << 'l' << 'd';
513 EXPECT_EQ("11111111111111111111hello1world", Str
);
516 TEST(raw_ostreamTest
, writeToOutputFile
) {
517 SmallString
<64> Path
;
519 ASSERT_FALSE(sys::fs::createTemporaryFile("foo", "bar", FD
, Path
));
520 FileRemover
Cleanup(Path
);
522 ASSERT_THAT_ERROR(writeToOutput(Path
,
523 [](raw_ostream
&Out
) -> Error
{
525 return Error::success();
528 checkFileData(Path
, "HelloWorld");
532 TEST(raw_ostreamTest
, filePermissions
) {
533 // Set umask to be permissive of all permissions.
534 unsigned OldMask
= ::umask(0);
536 llvm::unittest::TempDir
RootTestDirectory("writToOutput", /*Unique*/ true);
537 SmallString
<128> Path(RootTestDirectory
.path());
538 sys::path::append(Path
, "test.txt");
540 ASSERT_THAT_ERROR(writeToOutput(Path
,
541 [](raw_ostream
&Out
) -> Error
{
543 return Error::success();
547 ErrorOr
<llvm::sys::fs::perms
> Perms
= llvm::sys::fs::getPermissions(Path
);
548 ASSERT_TRUE(Perms
) << "should be able to get permissions";
549 // Verify the permission bits set by writeToOutput are read and write only.
550 EXPECT_EQ(Perms
.get(), llvm::sys::fs::all_read
| llvm::sys::fs::all_write
);
556 TEST(raw_ostreamTest
, writeToNonexistingPath
) {
557 StringRef FileName
= "/_bad/_path";
558 std::string ErrorMessage
= toString(createFileError(
559 FileName
, make_error_code(errc::no_such_file_or_directory
)));
561 EXPECT_THAT_ERROR(writeToOutput(FileName
,
562 [](raw_ostream
&Out
) -> Error
{
564 return Error::success();
566 FailedWithMessage(ErrorMessage
));
569 TEST(raw_ostreamTest
, writeToDevNull
) {
570 bool DevNullIsUsed
= false;
573 writeToOutput("/dev/null",
574 [&](raw_ostream
&Out
) -> Error
{
576 testing::internal::CheckedDowncastToActualType
<
577 raw_null_ostream
, raw_ostream
>(&Out
);
578 return Error::success();
582 EXPECT_TRUE(DevNullIsUsed
);
585 TEST(raw_ostreamTest
, writeToStdOut
) {
587 testing::internal::CaptureStdout();
589 EXPECT_THAT_ERROR(writeToOutput("-",
590 [](raw_ostream
&Out
) -> Error
{
592 return Error::success();
597 std::string CapturedStdOut
= testing::internal::GetCapturedStdout();
598 EXPECT_EQ(CapturedStdOut
, "HelloWorld");