2018-05-17 07:31:43 +02:00
|
|
|
#include <gmock/gmock.h>
|
2018-05-19 07:29:41 +02:00
|
|
|
#include <csignal>
|
2018-05-17 07:31:43 +02:00
|
|
|
#include "cpp-utils/assert/backtrace.h"
|
2018-08-02 01:29:14 +02:00
|
|
|
#include "cpp-utils/process/subprocess.h"
|
2018-05-17 07:31:43 +02:00
|
|
|
|
|
|
|
using std::string;
|
|
|
|
using testing::HasSubstr;
|
|
|
|
|
2018-08-02 01:29:14 +02:00
|
|
|
namespace {
|
|
|
|
std::string call_process_exiting_with(const std::string& kind, const std::string& signal = "") {
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
constexpr const char* executable = "cpp-utils-test_exit_signal.exe";
|
|
|
|
#else
|
|
|
|
constexpr const char* executable = "./test/cpp-utils/cpp-utils-test_exit_signal";
|
|
|
|
#endif
|
|
|
|
const std::string command = std::string(executable) + " \"" + kind + "\" \"" + signal + "\" 2>&1";
|
|
|
|
auto result = cpputils::Subprocess::call(command);
|
|
|
|
return result.output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-17 07:31:43 +02:00
|
|
|
TEST(BacktraceTest, ContainsExecutableName) {
|
|
|
|
string backtrace = cpputils::backtrace();
|
|
|
|
EXPECT_THAT(backtrace, HasSubstr("cpp-utils-test"));
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(BacktraceTest, ContainsTopLevelLine) {
|
|
|
|
string backtrace = cpputils::backtrace();
|
|
|
|
EXPECT_THAT(backtrace, HasSubstr("BacktraceTest"));
|
|
|
|
EXPECT_THAT(backtrace, HasSubstr("ContainsTopLevelLine"));
|
|
|
|
}
|
2018-05-17 07:42:03 +02:00
|
|
|
|
2018-08-02 01:29:14 +02:00
|
|
|
|
2018-05-17 07:42:03 +02:00
|
|
|
namespace {
|
2018-08-02 01:29:14 +02:00
|
|
|
std::string call_process_exiting_with_nullptr_violation() {
|
|
|
|
return call_process_exiting_with("nullptr");
|
|
|
|
}
|
|
|
|
std::string call_process_exiting_with_exception(const std::string& message) {
|
|
|
|
return call_process_exiting_with("exception", message);
|
2018-07-09 04:34:08 +02:00
|
|
|
}
|
2018-05-19 07:29:41 +02:00
|
|
|
}
|
2018-07-09 04:34:08 +02:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#include <Windows.h>
|
|
|
|
namespace {
|
2018-08-02 01:29:14 +02:00
|
|
|
std::string call_process_exiting_with_sigsegv() {
|
|
|
|
return call_process_exiting_with("signal", std::to_string(EXCEPTION_ACCESS_VIOLATION));
|
2018-07-09 04:34:08 +02:00
|
|
|
}
|
2018-08-02 01:29:14 +02:00
|
|
|
std::string call_process_exiting_with_sigill() {
|
|
|
|
return call_process_exiting_with("signal", std::to_string(EXCEPTION_ILLEGAL_INSTRUCTION));
|
2018-07-09 04:34:08 +02:00
|
|
|
}
|
2018-08-02 01:29:14 +02:00
|
|
|
std::string call_process_exiting_with_code(DWORD code) {
|
|
|
|
return call_process_exiting_with("signal", std::to_string(code));
|
2018-07-09 04:34:08 +02:00
|
|
|
}
|
2018-05-17 07:42:03 +02:00
|
|
|
}
|
2018-07-09 04:34:08 +02:00
|
|
|
#else
|
|
|
|
namespace {
|
2018-08-02 01:29:14 +02:00
|
|
|
std::string call_process_exiting_with_sigsegv() {
|
|
|
|
return call_process_exiting_with("signal", std::to_string(SIGSEGV));
|
2018-07-09 04:34:08 +02:00
|
|
|
}
|
2018-08-02 01:29:14 +02:00
|
|
|
std::string call_process_exiting_with_sigabrt() {
|
|
|
|
return call_process_exiting_with("signal", std::to_string(SIGABRT));
|
2018-07-09 04:34:08 +02:00
|
|
|
}
|
2018-08-02 01:29:14 +02:00
|
|
|
std::string call_process_exiting_with_sigill() {
|
|
|
|
return call_process_exiting_with("signal", std::to_string(SIGILL));
|
2018-07-09 04:34:08 +02:00
|
|
|
}
|
2018-05-17 07:42:03 +02:00
|
|
|
}
|
2018-07-09 04:34:08 +02:00
|
|
|
#endif
|
2018-05-17 07:42:03 +02:00
|
|
|
|
2018-08-02 01:29:14 +02:00
|
|
|
TEST(BacktraceTest, DoesntCrashOnCaughtException) {
|
|
|
|
// This is needed to make sure we don't use some kind of vectored exception handler on Windows
|
|
|
|
// that ignores the call stack and always jumps on when an exception happens.
|
|
|
|
cpputils::showBacktraceOnCrash();
|
|
|
|
try {
|
|
|
|
throw std::logic_error("exception");
|
|
|
|
} catch (const std::logic_error& e) {
|
|
|
|
// intentionally empty
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-19 07:29:41 +02:00
|
|
|
TEST(BacktraceTest, ShowBacktraceOnNullptrAccess) {
|
2018-08-02 01:29:14 +02:00
|
|
|
auto output = call_process_exiting_with_nullptr_violation();
|
2018-08-09 04:34:57 +02:00
|
|
|
EXPECT_THAT(output, HasSubstr("cpp-utils-test_exit_signal"));
|
2018-05-17 07:42:03 +02:00
|
|
|
}
|
2018-05-19 07:29:41 +02:00
|
|
|
|
|
|
|
TEST(BacktraceTest, ShowBacktraceOnSigSegv) {
|
2018-08-02 01:29:14 +02:00
|
|
|
auto output = call_process_exiting_with_sigsegv();
|
2018-08-09 04:34:57 +02:00
|
|
|
EXPECT_THAT(output, HasSubstr("cpp-utils-test_exit_signal"));
|
2018-08-02 01:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(BacktraceTest, ShowBacktraceOnUnhandledException) {
|
|
|
|
auto output = call_process_exiting_with_exception("my_exception_message");
|
2018-08-09 04:34:57 +02:00
|
|
|
EXPECT_THAT(output, HasSubstr("cpp-utils-test_exit_signal"));
|
2018-05-19 07:29:41 +02:00
|
|
|
}
|
|
|
|
|
2018-07-09 04:34:08 +02:00
|
|
|
TEST(BacktraceTest, ShowBacktraceOnSigIll) {
|
2018-08-02 01:29:14 +02:00
|
|
|
auto output = call_process_exiting_with_sigill();
|
2018-08-09 04:34:57 +02:00
|
|
|
EXPECT_THAT(output, HasSubstr("cpp-utils-test_exit_signal"));
|
2018-07-09 04:34:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#if !defined(_MSC_VER)
|
2018-05-19 07:29:41 +02:00
|
|
|
TEST(BacktraceTest, ShowBacktraceOnSigAbrt) {
|
2018-08-02 01:29:14 +02:00
|
|
|
auto output = call_process_exiting_with_sigabrt();
|
2018-08-09 04:34:57 +02:00
|
|
|
EXPECT_THAT(output, HasSubstr("cpp-utils-test_exit_signal"));
|
2018-05-19 07:29:41 +02:00
|
|
|
}
|
|
|
|
|
2018-07-09 04:34:08 +02:00
|
|
|
TEST(BacktraceTest, ShowBacktraceOnSigAbrt_ShowsCorrectSignalName) {
|
2018-08-02 01:29:14 +02:00
|
|
|
auto output = call_process_exiting_with_sigabrt();
|
|
|
|
EXPECT_THAT(output, HasSubstr("SIGABRT"));
|
2018-05-19 07:29:41 +02:00
|
|
|
}
|
2018-07-09 04:34:08 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !defined(_MSC_VER)
|
|
|
|
constexpr const char* sigsegv_message = "SIGSEGV";
|
|
|
|
constexpr const char* sigill_message = "SIGILL";
|
|
|
|
#else
|
|
|
|
constexpr const char* sigsegv_message = "EXCEPTION_ACCESS_VIOLATION";
|
|
|
|
constexpr const char* sigill_message = "EXCEPTION_ILLEGAL_INSTRUCTION";
|
|
|
|
#endif
|
2018-05-19 07:29:41 +02:00
|
|
|
|
|
|
|
TEST(BacktraceTest, ShowBacktraceOnSigSegv_ShowsCorrectSignalName) {
|
2018-08-02 01:29:14 +02:00
|
|
|
auto output = call_process_exiting_with_sigsegv();
|
|
|
|
EXPECT_THAT(output, HasSubstr(sigsegv_message));
|
2018-05-19 07:29:41 +02:00
|
|
|
}
|
|
|
|
|
2018-07-09 04:34:08 +02:00
|
|
|
TEST(BacktraceTest, ShowBacktraceOnSigIll_ShowsCorrectSignalName) {
|
2018-08-02 01:29:14 +02:00
|
|
|
auto output = call_process_exiting_with_sigill();
|
|
|
|
EXPECT_THAT(output, HasSubstr(sigill_message));
|
2018-05-19 07:29:41 +02:00
|
|
|
}
|
|
|
|
|
2018-08-02 01:29:14 +02:00
|
|
|
#if !defined(_MSC_VER)
|
|
|
|
TEST(BacktraceTest, ShowBacktraceOnUnhandledException_ShowsCorrectExceptionMessage) {
|
|
|
|
auto output = call_process_exiting_with_exception("my_exception_message");
|
|
|
|
EXPECT_THAT(output, HasSubstr("my_exception_message"));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-07-09 04:34:08 +02:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
TEST(BacktraceTest, UnknownCode_ShowsCorrectSignalName) {
|
2018-09-19 12:01:31 +02:00
|
|
|
auto output = call_process_exiting_with_code(0x1234567);
|
|
|
|
EXPECT_THAT(output, HasSubstr("UNKNOWN_CODE(0x1234567)"));
|
2018-05-19 07:29:41 +02:00
|
|
|
}
|
2018-07-09 04:34:08 +02:00
|
|
|
#endif
|