fmt/test/gtest-extra-test.cc

414 lines
13 KiB
C++
Raw Normal View History

2018-03-04 17:16:51 +00:00
// Formatting library for C++ - tests of custom Google Test assertions
//
// Copyright (c) 2012 - present, Victor Zverovich
// All rights reserved.
//
// For the license information refer to format.h.
#include "gtest-extra.h"
2014-05-03 20:14:15 +00:00
#include <cstring>
#include <algorithm>
#include <stdexcept>
#include <gtest/gtest-spi.h>
2014-06-10 22:38:57 +00:00
#if defined(_WIN32) && !defined(__MINGW32__)
2014-05-05 15:19:35 +00:00
# include <crtdbg.h> // for _CrtSetReportMode
#endif // _WIN32
#include "util.h"
2015-07-31 15:58:32 +00:00
using testing::internal::scoped_ptr;
namespace {
2014-05-03 19:01:27 +00:00
2015-10-28 14:01:28 +00:00
// This is used to suppress coverity warnings about untrusted values.
std::string sanitize(const std::string &s) {
std::string result;
for (std::string::const_iterator i = s.begin(), end = s.end(); i != end; ++i)
2016-03-19 13:39:33 +00:00
result.push_back(static_cast<char>(*i & 0xff));
return result;
}
// Tests that assertion macros evaluate their arguments exactly once.
class SingleEvaluationTest : public ::testing::Test {
protected:
SingleEvaluationTest() {
p_ = s_;
a_ = 0;
b_ = 0;
}
static const char* const s_;
static const char* p_;
static int a_;
static int b_;
};
const char* const SingleEvaluationTest::s_ = "01234";
const char* SingleEvaluationTest::p_;
int SingleEvaluationTest::a_;
int SingleEvaluationTest::b_;
void do_nothing() {}
void throw_exception() {
throw std::runtime_error("test");
}
void throw_system_error() {
2017-02-19 16:41:38 +00:00
throw fmt::system_error(EDOM, "test");
2014-05-14 16:01:16 +00:00
}
// Tests that when EXPECT_THROW_MSG fails, it evaluates its message argument
// exactly once.
2014-05-05 15:19:35 +00:00
TEST_F(SingleEvaluationTest, FailedEXPECT_THROW_MSG) {
EXPECT_NONFATAL_FAILURE(
EXPECT_THROW_MSG(throw_exception(), std::exception, p_++), "01234");
EXPECT_EQ(s_ + 1, p_);
}
2014-05-14 16:01:16 +00:00
// Tests that when EXPECT_SYSTEM_ERROR fails, it evaluates its message argument
// exactly once.
TEST_F(SingleEvaluationTest, FailedEXPECT_SYSTEM_ERROR) {
EXPECT_NONFATAL_FAILURE(
EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, p_++), "01234");
2014-05-14 16:01:16 +00:00
EXPECT_EQ(s_ + 1, p_);
}
// Tests that when EXPECT_WRITE fails, it evaluates its message argument
// exactly once.
TEST_F(SingleEvaluationTest, FailedEXPECT_WRITE) {
EXPECT_NONFATAL_FAILURE(
EXPECT_WRITE(stdout, std::printf("test"), p_++), "01234");
EXPECT_EQ(s_ + 1, p_);
}
// Tests that assertion arguments are evaluated exactly once.
TEST_F(SingleEvaluationTest, ExceptionTests) {
// successful EXPECT_THROW_MSG
EXPECT_THROW_MSG({ // NOLINT
a_++;
throw_exception();
}, std::exception, (b_++, "test"));
EXPECT_EQ(1, a_);
EXPECT_EQ(1, b_);
// failed EXPECT_THROW_MSG, throws different type
EXPECT_NONFATAL_FAILURE(EXPECT_THROW_MSG({ // NOLINT
a_++;
throw_exception();
}, std::logic_error, (b_++, "test")), "throws a different type");
EXPECT_EQ(2, a_);
EXPECT_EQ(2, b_);
// failed EXPECT_THROW_MSG, throws an exception with different message
EXPECT_NONFATAL_FAILURE(EXPECT_THROW_MSG({ // NOLINT
a_++;
throw_exception();
}, std::exception, (b_++, "other")),
"throws an exception with a different message");
EXPECT_EQ(3, a_);
EXPECT_EQ(3, b_);
// failed EXPECT_THROW_MSG, throws nothing
EXPECT_NONFATAL_FAILURE(
EXPECT_THROW_MSG(a_++, std::exception, (b_++, "test")), "throws nothing");
EXPECT_EQ(4, a_);
EXPECT_EQ(4, b_);
}
2014-05-14 16:01:16 +00:00
TEST_F(SingleEvaluationTest, SystemErrorTests) {
// successful EXPECT_SYSTEM_ERROR
EXPECT_SYSTEM_ERROR({ // NOLINT
a_++;
throw_system_error();
2014-05-14 16:01:16 +00:00
}, EDOM, (b_++, "test"));
EXPECT_EQ(1, a_);
EXPECT_EQ(1, b_);
// failed EXPECT_SYSTEM_ERROR, throws different type
EXPECT_NONFATAL_FAILURE(EXPECT_SYSTEM_ERROR({ // NOLINT
a_++;
throw_exception();
2014-05-14 16:01:16 +00:00
}, EDOM, (b_++, "test")), "throws a different type");
EXPECT_EQ(2, a_);
EXPECT_EQ(2, b_);
// failed EXPECT_SYSTEM_ERROR, throws an exception with different message
EXPECT_NONFATAL_FAILURE(EXPECT_SYSTEM_ERROR({ // NOLINT
a_++;
throw_system_error();
2014-05-14 16:01:16 +00:00
}, EDOM, (b_++, "other")),
"throws an exception with a different message");
EXPECT_EQ(3, a_);
EXPECT_EQ(3, b_);
// failed EXPECT_SYSTEM_ERROR, throws nothing
EXPECT_NONFATAL_FAILURE(
EXPECT_SYSTEM_ERROR(a_++, EDOM, (b_++, "test")), "throws nothing");
EXPECT_EQ(4, a_);
EXPECT_EQ(4, b_);
}
// Tests that assertion arguments are evaluated exactly once.
TEST_F(SingleEvaluationTest, WriteTests) {
// successful EXPECT_WRITE
EXPECT_WRITE(stdout, { // NOLINT
a_++;
std::printf("test");
}, (b_++, "test"));
EXPECT_EQ(1, a_);
EXPECT_EQ(1, b_);
// failed EXPECT_WRITE
EXPECT_NONFATAL_FAILURE(EXPECT_WRITE(stdout, { // NOLINT
a_++;
std::printf("test");
}, (b_++, "other")), "Actual: test");
EXPECT_EQ(2, a_);
EXPECT_EQ(2, b_);
}
// Tests that the compiler will not complain about unreachable code in the
// EXPECT_THROW_MSG macro.
TEST(ExpectThrowTest, DoesNotGenerateUnreachableCodeWarning) {
int n = 0;
using std::runtime_error;
EXPECT_THROW_MSG(throw runtime_error(""), runtime_error, "");
EXPECT_NONFATAL_FAILURE(EXPECT_THROW_MSG(n++, runtime_error, ""), "");
EXPECT_NONFATAL_FAILURE(EXPECT_THROW_MSG(throw 1, runtime_error, ""), "");
EXPECT_NONFATAL_FAILURE(EXPECT_THROW_MSG(
throw runtime_error("a"), runtime_error, "b"), "");
}
2014-05-14 16:01:16 +00:00
// Tests that the compiler will not complain about unreachable code in the
// EXPECT_SYSTEM_ERROR macro.
TEST(ExpectSystemErrorTest, DoesNotGenerateUnreachableCodeWarning) {
int n = 0;
2017-02-19 16:41:38 +00:00
EXPECT_SYSTEM_ERROR(throw fmt::system_error(EDOM, "test"), EDOM, "test");
2014-05-14 16:01:16 +00:00
EXPECT_NONFATAL_FAILURE(EXPECT_SYSTEM_ERROR(n++, EDOM, ""), "");
EXPECT_NONFATAL_FAILURE(EXPECT_SYSTEM_ERROR(throw 1, EDOM, ""), "");
EXPECT_NONFATAL_FAILURE(EXPECT_SYSTEM_ERROR(
2017-02-19 16:41:38 +00:00
throw fmt::system_error(EDOM, "aaa"), EDOM, "bbb"), "");
2014-05-14 16:01:16 +00:00
}
2014-05-05 19:52:16 +00:00
TEST(AssertionSyntaxTest, ExceptionAssertionBehavesLikeSingleStatement) {
if (::testing::internal::AlwaysFalse())
EXPECT_THROW_MSG(do_nothing(), std::exception, "");
if (::testing::internal::AlwaysTrue())
EXPECT_THROW_MSG(throw_exception(), std::exception, "test");
else
do_nothing();
}
2014-05-14 16:01:16 +00:00
TEST(AssertionSyntaxTest, SystemErrorAssertionBehavesLikeSingleStatement) {
if (::testing::internal::AlwaysFalse())
EXPECT_SYSTEM_ERROR(do_nothing(), EDOM, "");
2014-05-14 16:01:16 +00:00
if (::testing::internal::AlwaysTrue())
EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, "test");
2014-05-14 16:01:16 +00:00
else
do_nothing();
2014-05-14 16:01:16 +00:00
}
2014-05-05 19:52:16 +00:00
TEST(AssertionSyntaxTest, WriteAssertionBehavesLikeSingleStatement) {
if (::testing::internal::AlwaysFalse())
EXPECT_WRITE(stdout, std::printf("x"), "x");
if (::testing::internal::AlwaysTrue())
EXPECT_WRITE(stdout, std::printf("x"), "x");
else
do_nothing();
2014-05-05 19:52:16 +00:00
}
// Tests EXPECT_THROW_MSG.
TEST(ExpectTest, EXPECT_THROW_MSG) {
EXPECT_THROW_MSG(throw_exception(), std::exception, "test");
EXPECT_NONFATAL_FAILURE(
EXPECT_THROW_MSG(throw_exception(), std::logic_error, "test"),
"Expected: throw_exception() throws an exception of "
"type std::logic_error.\n Actual: it throws a different type.");
EXPECT_NONFATAL_FAILURE(
EXPECT_THROW_MSG(do_nothing(), std::exception, "test"),
2014-07-29 15:11:49 +00:00
"Expected: do_nothing() throws an exception of type std::exception.\n"
" Actual: it throws nothing.");
EXPECT_NONFATAL_FAILURE(
EXPECT_THROW_MSG(throw_exception(), std::exception, "other"),
"throw_exception() throws an exception with a different message.\n"
"Expected: other\n"
" Actual: test");
}
2014-05-14 16:01:16 +00:00
// Tests EXPECT_SYSTEM_ERROR.
TEST(ExpectTest, EXPECT_SYSTEM_ERROR) {
EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, "test");
2014-05-14 16:01:16 +00:00
EXPECT_NONFATAL_FAILURE(
EXPECT_SYSTEM_ERROR(throw_exception(), EDOM, "test"),
"Expected: throw_exception() throws an exception of "
2017-03-08 15:34:10 +00:00
"type fmt::system_error.\n Actual: it throws a different type.");
2014-05-14 16:01:16 +00:00
EXPECT_NONFATAL_FAILURE(
EXPECT_SYSTEM_ERROR(do_nothing(), EDOM, "test"),
2017-03-08 15:34:10 +00:00
"Expected: do_nothing() throws an exception of type fmt::system_error.\n"
2014-05-14 16:01:16 +00:00
" Actual: it throws nothing.");
EXPECT_NONFATAL_FAILURE(
EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, "other"),
fmt::format(
"throw_system_error() throws an exception with a different message.\n"
2014-05-14 16:01:16 +00:00
"Expected: {}\n"
2014-06-29 03:03:46 +00:00
" Actual: {}",
format_system_error(EDOM, "other"),
format_system_error(EDOM, "test")));
2014-05-14 16:01:16 +00:00
}
2014-05-05 19:52:16 +00:00
// Tests EXPECT_WRITE.
TEST(ExpectTest, EXPECT_WRITE) {
EXPECT_WRITE(stdout, do_nothing(), "");
2014-05-05 19:52:16 +00:00
EXPECT_WRITE(stdout, std::printf("test"), "test");
EXPECT_WRITE(stderr, std::fprintf(stderr, "test"), "test");
EXPECT_NONFATAL_FAILURE(
EXPECT_WRITE(stdout, std::printf("that"), "this"),
"Expected: this\n"
" Actual: that");
}
TEST(StreamingAssertionsTest, EXPECT_THROW_MSG) {
EXPECT_THROW_MSG(throw_exception(), std::exception, "test")
<< "unexpected failure";
EXPECT_NONFATAL_FAILURE(
EXPECT_THROW_MSG(throw_exception(), std::exception, "other")
<< "expected failure", "expected failure");
}
2014-05-14 16:01:16 +00:00
TEST(StreamingAssertionsTest, EXPECT_SYSTEM_ERROR) {
EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, "test")
2014-05-14 16:01:16 +00:00
<< "unexpected failure";
EXPECT_NONFATAL_FAILURE(
EXPECT_SYSTEM_ERROR(throw_system_error(), EDOM, "other")
2014-05-14 16:01:16 +00:00
<< "expected failure", "expected failure");
}
2014-05-06 00:07:21 +00:00
TEST(StreamingAssertionsTest, EXPECT_WRITE) {
EXPECT_WRITE(stdout, std::printf("test"), "test")
<< "unexpected failure";
EXPECT_NONFATAL_FAILURE(
EXPECT_WRITE(stdout, std::printf("test"), "other")
<< "expected failure", "expected failure");
}
TEST(UtilTest, FormatSystemError) {
fmt::memory_buffer out;
fmt::format_system_error(out, EDOM, "test message");
EXPECT_EQ(to_string(out), format_system_error(EDOM, "test message"));
2014-05-15 14:45:44 +00:00
}
#if FMT_USE_FILE_DESCRIPTORS
2018-05-19 15:57:31 +00:00
using fmt::buffered_file;
2018-05-19 17:32:53 +00:00
using fmt::error_code;
using fmt::file;
TEST(ErrorCodeTest, Ctor) {
2018-05-19 17:32:53 +00:00
EXPECT_EQ(0, error_code().get());
EXPECT_EQ(42, error_code(42).get());
}
TEST(OutputRedirectTest, ScopedRedirect) {
2018-05-19 17:32:53 +00:00
file read_end, write_end;
file::pipe(read_end, write_end);
{
2018-05-19 15:57:31 +00:00
buffered_file file(write_end.fdopen("w"));
std::fprintf(file.get(), "[[[");
{
OutputRedirect redir(file.get());
std::fprintf(file.get(), "censored");
}
std::fprintf(file.get(), "]]]");
}
EXPECT_READ(read_end, "[[[]]]");
}
2014-05-04 16:01:18 +00:00
// Test that OutputRedirect handles errors in flush correctly.
2014-05-04 17:08:29 +00:00
TEST(OutputRedirectTest, FlushErrorInCtor) {
2018-05-19 17:32:53 +00:00
file read_end, write_end;
file::pipe(read_end, write_end);
2014-05-04 16:01:18 +00:00
int write_fd = write_end.descriptor();
2018-05-19 17:32:53 +00:00
file write_copy = write_end.dup(write_fd);
2018-05-19 15:57:31 +00:00
buffered_file f = write_end.fdopen("w");
2014-05-04 16:01:18 +00:00
// Put a character in a file buffer.
EXPECT_EQ('x', fputc('x', f.get()));
2014-05-06 14:29:50 +00:00
FMT_POSIX(close(write_fd));
2018-10-24 13:34:28 +00:00
scoped_ptr<OutputRedirect> redir{FMT_NULL};
2015-07-31 15:58:32 +00:00
EXPECT_SYSTEM_ERROR_NOASSERT(redir.reset(new OutputRedirect(f.get())),
2014-06-29 03:03:46 +00:00
EBADF, "cannot flush stream");
2018-10-24 13:34:28 +00:00
redir.reset(FMT_NULL);
2014-05-06 15:05:14 +00:00
write_copy.dup2(write_fd); // "undo" close or dtor will fail
2014-05-04 16:01:18 +00:00
}
2014-05-04 17:08:29 +00:00
TEST(OutputRedirectTest, DupErrorInCtor) {
2018-05-19 15:57:31 +00:00
buffered_file f = open_buffered_file();
2015-06-24 18:36:28 +00:00
int fd = (f.fileno)();
2018-05-19 17:32:53 +00:00
file copy = file::dup(fd);
2014-05-06 14:29:50 +00:00
FMT_POSIX(close(fd));
2018-10-24 13:34:28 +00:00
scoped_ptr<OutputRedirect> redir{FMT_NULL};
2015-07-31 15:58:32 +00:00
EXPECT_SYSTEM_ERROR_NOASSERT(redir.reset(new OutputRedirect(f.get())),
EBADF, fmt::format("cannot duplicate file descriptor {}", fd));
2014-05-06 15:05:14 +00:00
copy.dup2(fd); // "undo" close or dtor will fail
2014-05-04 16:01:18 +00:00
}
TEST(OutputRedirectTest, RestoreAndRead) {
2018-05-19 17:32:53 +00:00
file read_end, write_end;
file::pipe(read_end, write_end);
2018-05-19 15:57:31 +00:00
buffered_file file(write_end.fdopen("w"));
2014-05-04 16:01:18 +00:00
std::fprintf(file.get(), "[[[");
OutputRedirect redir(file.get());
std::fprintf(file.get(), "censored");
EXPECT_EQ("censored", sanitize(redir.restore_and_read()));
2015-10-28 14:01:28 +00:00
EXPECT_EQ("", sanitize(redir.restore_and_read()));
2014-05-04 16:01:18 +00:00
std::fprintf(file.get(), "]]]");
2018-05-19 15:57:31 +00:00
file = buffered_file();
2014-05-04 16:01:18 +00:00
EXPECT_READ(read_end, "[[[]]]");
}
2014-05-04 17:08:29 +00:00
// Test that OutputRedirect handles errors in flush correctly.
TEST(OutputRedirectTest, FlushErrorInRestoreAndRead) {
2018-05-19 17:32:53 +00:00
file read_end, write_end;
file::pipe(read_end, write_end);
2014-05-04 17:08:29 +00:00
int write_fd = write_end.descriptor();
2018-05-19 17:32:53 +00:00
file write_copy = write_end.dup(write_fd);
2018-05-19 15:57:31 +00:00
buffered_file f = write_end.fdopen("w");
2014-05-04 17:08:29 +00:00
OutputRedirect redir(f.get());
// Put a character in a file buffer.
EXPECT_EQ('x', fputc('x', f.get()));
2014-05-06 14:29:50 +00:00
FMT_POSIX(close(write_fd));
EXPECT_SYSTEM_ERROR_NOASSERT(redir.restore_and_read(),
2014-06-29 03:03:46 +00:00
EBADF, "cannot flush stream");
2014-05-06 15:05:14 +00:00
write_copy.dup2(write_fd); // "undo" close or dtor will fail
2014-05-04 17:08:29 +00:00
}
TEST(OutputRedirectTest, ErrorInDtor) {
2018-05-19 17:32:53 +00:00
file read_end, write_end;
file::pipe(read_end, write_end);
2014-05-04 17:08:29 +00:00
int write_fd = write_end.descriptor();
2018-05-19 17:32:53 +00:00
file write_copy = write_end.dup(write_fd);
2018-05-19 15:57:31 +00:00
buffered_file f = write_end.fdopen("w");
2015-07-31 15:58:32 +00:00
scoped_ptr<OutputRedirect> redir(new OutputRedirect(f.get()));
2014-05-04 17:08:29 +00:00
// Put a character in a file buffer.
EXPECT_EQ('x', fputc('x', f.get()));
2014-05-06 00:07:21 +00:00
EXPECT_WRITE(stderr, {
// The close function must be called inside EXPECT_WRITE, otherwise
// the system may recycle closed file descriptor when redirecting the
// output in EXPECT_STDERR and the second close will break output
// redirection.
2014-05-06 14:29:50 +00:00
FMT_POSIX(close(write_fd));
2018-10-24 13:34:28 +00:00
SUPPRESS_ASSERT(redir.reset(FMT_NULL));
}, format_system_error(EBADF, "cannot flush stream"));
2018-05-19 15:57:31 +00:00
write_copy.dup2(write_fd); // "undo" close or dtor of buffered_file will fail
2014-05-04 17:08:29 +00:00
}
2014-05-06 00:38:39 +00:00
#endif // FMT_USE_FILE_DESCRIPTORS
} // namespace