0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 16:46:00 +01:00
mongodb/jstests/noPassthrough/logging/log_backtrace.js
Vishnu K cc3e38b5c8 SERVER-97251 Shell should clean up core dumps from intentional test crashes (#29271)
GitOrigin-RevId: ab130467d7ba44a1b29964cc549e8cec459618cd
2024-11-22 22:26:57 +00:00

81 lines
2.1 KiB
JavaScript

/**
* Validate that backtraces are logged to a separate file
*
* @tags: [requires_persistence]
*/
// Because this test intentionally crashes the server via an fassert, we need to instruct the
// shell to clean up the core dump that is left behind.
TestData.cleanUpCoreDumpsFromExpectedCrash = true;
function waitFailedToStart(pid, exitCode) {
assert.soon(function() {
return !checkProgram(pid).alive;
}, `Failed to wait for ${pid} to die`, 3 * 60 * 1000);
assert.eq(exitCode,
checkProgram(pid).exitCode,
`Failed to wait for ${pid} to die with exit code ${exitCode}`);
}
function parseLogFile(file) {
const result = cat(file);
const json_str = result.split("\n")[0];
try {
return JSON.parse(json_str);
} catch (e) {
jsTestLog("Failed to parse: " + result + "\n" + json_str);
throw e;
}
}
// Run MongoD successfully so we populate the data directory
var m = MongoRunner.runMongod({});
assert.commandWorked(m.getDB("test").foo.insert({x: 1}));
MongoRunner.stopMongod(m);
// Make sure it is stopped before we manipulate the turtle file
waitFailedToStart(m.pid, 0);
// Sleep
sleep(5000);
const dbpath = m.dbpath.replace("\\", "/");
const backtraceLogFile = `backtrace.log`;
const backtraceLogFileFullPath = dbpath + "/" + backtraceLogFile;
print(dbpath);
// Corrupt the WiredTiger. turtle file to trigger a backtrace
const command = `echo xxxxxxxxxxxxxxxxxxxxx > ${dbpath}/WiredTiger.turtle`;
let ret;
if (_isWindows()) {
ret = runProgram('cmd.exe', '/c', command);
} else {
ret = runProgram('/bin/sh', '-c', command);
}
assert.eq(ret, 0);
// Restart MongoD with the corrupted turtle file
m = MongoRunner.runMongod({
setParameter: "backtraceLogFile=" + backtraceLogFileFullPath,
dbpath: dbpath,
restart: true,
cleanData: false,
waitForConnect: false
});
if (_isWindows()) {
waitFailedToStart(m.pid, 14); // MongoRunner.EXIT_ABORT
} else {
waitFailedToStart(m.pid, 6); // MongoRunner.EXIT_ABORT
}
// Check we have one log line
let log = parseLogFile(backtraceLogFileFullPath);
assert.eq(log["id"], 31380);
assert.eq(log["msg"], "BACKTRACE");