Files
cgm-remote-monitor/tests/hooks.js
T
Ben WestandCopilot e12cf3d2e2 fix(tests): make NODE_ENV=test check a hard failure (GAP-SYNC-046)
Change from warning to process.exit(1) to prevent any possibility of
running destructive test operations against a production database.

Tests now fail immediately if NODE_ENV !== 'test', with clear instructions
on how to fix.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-03-12 12:39:01 -07:00

91 lines
3.0 KiB
JavaScript

'use strict;'
var testHelpers = require('./lib/test-helpers');
// GAP-SYNC-046: Safety check to prevent tests running against production
if (process.env.NODE_ENV !== 'test') {
console.error('\n❌ SAFETY ERROR: NODE_ENV must be "test" to run tests.');
console.error(' Current value: ' + (process.env.NODE_ENV || '(not set)'));
console.error(' Tests use deleteMany({}) which could destroy production data.');
console.error(' Fix: Use "npm test" which loads my.test.env, or set NODE_ENV=test\n');
process.exit(1);
}
var slowTestThreshold = parseInt(process.env.SLOW_TEST_THRESHOLD, 10) || 2000;
var enableTimingWarnings = process.env.ENABLE_TIMING_WARNINGS === 'true';
var enableRequireCacheClear = process.env.CLEAR_REQUIRE_CACHE === 'true';
var restoreSetTimeout = null;
var testTimings = [];
function clearRequireCache () {
Object.keys(require.cache).forEach(function(key) {
delete require.cache[key];
});
}
exports.mochaHooks = {
beforeAll(done) {
if (enableTimingWarnings) {
console.log('[TIMING INSTRUMENTATION] Enabled - will warn on setTimeout anti-patterns');
restoreSetTimeout = testHelpers.enableSetTimeoutWarnings({
warnOnLongDelays: true,
longDelayThreshold: 100
});
}
if (enableRequireCacheClear) {
console.log('[CACHE CLEAR] Enabled - will clear require cache after each test (slower but more isolated)');
}
done();
},
beforeEach(done) {
this.testStartTime = Date.now();
done();
},
afterEach(done) {
if (this.testStartTime) {
var elapsed = Date.now() - this.testStartTime;
var testTitle = this.currentTest ? this.currentTest.fullTitle() : 'unknown';
testTimings.push({
title: testTitle,
duration: elapsed,
slow: elapsed > slowTestThreshold
});
if (elapsed > slowTestThreshold) {
console.warn('[SLOW TEST] "' + testTitle + '" took ' + elapsed + 'ms (threshold: ' + slowTestThreshold + 'ms)');
}
}
if (enableRequireCacheClear) {
clearRequireCache();
}
done();
},
afterAll(done) {
if (restoreSetTimeout) {
var setTimeoutCallCount = restoreSetTimeout();
console.log('[TIMING INSTRUMENTATION] Disabled - detected ' + setTimeoutCallCount + ' setTimeout calls');
}
if (testTimings.length > 0) {
var slowTests = testTimings.filter(function(t) { return t.slow; });
if (slowTests.length > 0) {
console.log('\n[SLOW TEST SUMMARY] ' + slowTests.length + ' slow test(s) detected:');
slowTests.forEach(function(t, i) {
console.log(' ' + (i + 1) + '. ' + t.title + ' (' + t.duration + 'ms)');
});
}
var totalTime = testTimings.reduce(function(sum, t) { return sum + t.duration; }, 0);
var avgTime = Math.round(totalTime / testTimings.length);
console.log('\n[TIMING STATS] Total: ' + testTimings.length + ' tests, Avg: ' + avgTime + 'ms, Slow: ' + slowTests.length);
}
done();
}
};