Files
carbon-lang/common/check_test.cpp
T
Geoff Romer e3d3122f1d Move tests to the namespace of the code under test (#3244)
Rationale: this convention avoids forcing closely-related code to be far
apart in the namespace hierarchy, and vice versa. By the same token, it
makes the namespace hierarchy more consistent with the directory
hierarchy.
2023-09-18 22:05:14 +00:00

63 lines
1.6 KiB
C++

// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#include "common/check.h"
#include <gtest/gtest.h>
namespace Carbon {
namespace {
TEST(CheckTest, CheckTrue) { CARBON_CHECK(true); }
TEST(CheckTest, CheckFalse) {
ASSERT_DEATH({ CARBON_CHECK(false); },
"\nCHECK failure at common/check_test.cpp:\\d+: false\n");
}
TEST(CheckTest, CheckFalseHasStackDump) {
ASSERT_DEATH({ CARBON_CHECK(false); }, "\nStack dump:\n");
}
TEST(CheckTest, CheckTrueCallbackNotUsed) {
bool called = false;
auto callback = [&]() {
called = true;
return "called";
};
CARBON_CHECK(true) << callback();
EXPECT_FALSE(called);
}
TEST(CheckTest, CheckFalseMessage) {
ASSERT_DEATH({ CARBON_CHECK(false) << "msg"; },
"\nCHECK failure at common/check_test.cpp:.+: false: msg\n");
}
TEST(CheckTest, CheckOutputForms) {
const char msg[] = "msg";
std::string str = "str";
int i = 1;
CARBON_CHECK(true) << msg << str << i << 0;
}
TEST(CheckTest, Fatal) {
ASSERT_DEATH({ CARBON_FATAL() << "msg"; },
"\nFATAL failure at common/check_test.cpp:.+: msg\n");
}
TEST(CheckTest, FatalHasStackDump) {
ASSERT_DEATH({ CARBON_FATAL() << "msg"; }, "\nStack dump:\n");
}
auto FatalNoReturnRequired() -> int { CARBON_FATAL() << "msg"; }
TEST(ErrorTest, FatalNoReturnRequired) {
ASSERT_DEATH({ FatalNoReturnRequired(); },
"\nFATAL failure at common/check_test.cpp:.+: msg\n");
}
} // namespace
} // namespace Carbon