| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include "absl/debugging/failure_signal_handler.h" |
|
|
| #include <csignal> |
| #include <cstdio> |
| #include <cstdlib> |
| #include <cstring> |
| #include <fstream> |
|
|
| #include "gmock/gmock.h" |
| #include "gtest/gtest.h" |
| #include "absl/base/internal/raw_logging.h" |
| #include "absl/debugging/stacktrace.h" |
| #include "absl/debugging/symbolize.h" |
| #include "absl/log/check.h" |
| #include "absl/strings/match.h" |
| #include "absl/strings/str_cat.h" |
|
|
| namespace { |
|
|
| using testing::StartsWith; |
|
|
| #if GTEST_HAS_DEATH_TEST |
|
|
| |
| using FailureSignalHandlerDeathTest = ::testing::TestWithParam<int>; |
|
|
| |
| void InstallHandlerAndRaise(int signo) { |
| absl::InstallFailureSignalHandler(absl::FailureSignalHandlerOptions()); |
| raise(signo); |
| } |
|
|
| TEST_P(FailureSignalHandlerDeathTest, AbslFailureSignal) { |
| const int signo = GetParam(); |
| std::string exit_regex = absl::StrCat( |
| "\\*\\*\\* ", absl::debugging_internal::FailureSignalToString(signo), |
| " received at time="); |
| #ifndef _WIN32 |
| EXPECT_EXIT(InstallHandlerAndRaise(signo), testing::KilledBySignal(signo), |
| exit_regex); |
| #else |
| |
| EXPECT_DEATH_IF_SUPPORTED(InstallHandlerAndRaise(signo), exit_regex); |
| #endif |
| } |
|
|
| ABSL_CONST_INIT FILE* error_file = nullptr; |
|
|
| void WriteToErrorFile(const char* msg) { |
| if (msg != nullptr) { |
| ABSL_RAW_CHECK(fwrite(msg, strlen(msg), 1, error_file) == 1, |
| "fwrite() failed"); |
| } |
| ABSL_RAW_CHECK(fflush(error_file) == 0, "fflush() failed"); |
| } |
|
|
| std::string GetTmpDir() { |
| |
| static const char* const kTmpEnvVars[] = {"TEST_TMPDIR", "TMPDIR", "TEMP", |
| "TEMPDIR", "TMP"}; |
| for (const char* const var : kTmpEnvVars) { |
| const char* tmp_dir = std::getenv(var); |
| if (tmp_dir != nullptr) { |
| return tmp_dir; |
| } |
| } |
|
|
| |
| return "/tmp"; |
| } |
|
|
| |
| void InstallHandlerWithWriteToFileAndRaise(const char* file, int signo) { |
| error_file = fopen(file, "w"); |
| CHECK_NE(error_file, nullptr) << "Failed create error_file"; |
| absl::FailureSignalHandlerOptions options; |
| options.writerfn = WriteToErrorFile; |
| absl::InstallFailureSignalHandler(options); |
| raise(signo); |
| } |
|
|
| TEST_P(FailureSignalHandlerDeathTest, AbslFatalSignalsWithWriterFn) { |
| const int signo = GetParam(); |
| std::string tmp_dir = GetTmpDir(); |
| std::string file = absl::StrCat(tmp_dir, "/signo_", signo); |
|
|
| std::string exit_regex = absl::StrCat( |
| "\\*\\*\\* ", absl::debugging_internal::FailureSignalToString(signo), |
| " received at time="); |
| #ifndef _WIN32 |
| EXPECT_EXIT(InstallHandlerWithWriteToFileAndRaise(file.c_str(), signo), |
| testing::KilledBySignal(signo), exit_regex); |
| #else |
| |
| EXPECT_DEATH_IF_SUPPORTED( |
| InstallHandlerWithWriteToFileAndRaise(file.c_str(), signo), exit_regex); |
| #endif |
|
|
| |
| std::fstream error_output(file); |
| ASSERT_TRUE(error_output.is_open()) << file; |
| std::string error_line; |
| std::getline(error_output, error_line); |
| EXPECT_THAT( |
| error_line, |
| StartsWith(absl::StrCat( |
| "*** ", absl::debugging_internal::FailureSignalToString(signo), |
| " received at "))); |
|
|
| |
| |
| #if defined(__linux__) |
| EXPECT_THAT(error_line, testing::HasSubstr(" on cpu ")); |
| #endif |
|
|
| if (absl::debugging_internal::StackTraceWorksForTest()) { |
| std::getline(error_output, error_line); |
| EXPECT_THAT(error_line, StartsWith("PC: ")); |
| } |
| } |
|
|
| constexpr int kFailureSignals[] = { |
| SIGSEGV, SIGILL, SIGFPE, SIGABRT, SIGTERM, |
| #ifndef _WIN32 |
| SIGBUS, SIGTRAP, |
| #endif |
| }; |
|
|
| std::string SignalParamToString(const ::testing::TestParamInfo<int>& info) { |
| std::string result = |
| absl::debugging_internal::FailureSignalToString(info.param); |
| if (result.empty()) { |
| result = absl::StrCat(info.param); |
| } |
| return result; |
| } |
|
|
| INSTANTIATE_TEST_SUITE_P(AbslDeathTest, FailureSignalHandlerDeathTest, |
| ::testing::ValuesIn(kFailureSignals), |
| SignalParamToString); |
|
|
| #endif |
|
|
| } |
|
|
| int main(int argc, char** argv) { |
| absl::InitializeSymbolizer(argv[0]); |
| testing::InitGoogleTest(&argc, argv); |
| return RUN_ALL_TESTS(); |
| } |
|
|