43 lines
2.0 KiB
JavaScript
43 lines
2.0 KiB
JavaScript
const { test } = require('node:test');
|
|
const assert = require('assert');
|
|
|
|
// Test the core functionality of the implemented features
|
|
test('Audit system is properly implemented', () => {
|
|
// Verify all required components exist in main.js
|
|
const fs = require('fs');
|
|
const mainJsContent = fs.readFileSync('./main.js', 'utf8');
|
|
|
|
// Check for audit logging functions
|
|
assert.ok(mainJsContent.includes('function writeAuditLog'), 'writeAuditLog function should exist');
|
|
assert.ok(mainJsContent.includes('ipcMain.handle(\'log-audit-event\''), 'log-audit-event handler should exist');
|
|
assert.ok(mainJsContent.includes('commandLineDirectory = process.argv.find'), 'Command line parsing should exist');
|
|
assert.ok(mainJsContent.includes('const auditFileName = \'.audit\''), 'Audit file naming logic should exist');
|
|
|
|
console.log('✅ All audit system components verified');
|
|
});
|
|
|
|
test('Visual enhancements are implemented', () => {
|
|
// Check that the HTML/CSS changes are in place
|
|
const fs = require('fs');
|
|
const htmlContent = fs.readFileSync('./index.html', 'utf8');
|
|
|
|
// Check for the updated circle styling
|
|
assert.ok(htmlContent.includes('width: 75px'), 'Circle width should be 75px');
|
|
assert.ok(htmlContent.includes('height: 75px'), 'Circle height should be 75px');
|
|
assert.ok(htmlContent.includes('background-color: rgba(0, 123, 255, 0.5)'), 'Circle should be translucent blue');
|
|
assert.ok(htmlContent.includes('color: white'), 'Circle text should be white');
|
|
|
|
console.log('✅ All visual enhancements verified');
|
|
});
|
|
|
|
test('Command line parameters work', () => {
|
|
// Verify that the system can parse directory parameters
|
|
const fs = require('fs');
|
|
const mainJsContent = fs.readFileSync('./main.js', 'utf8');
|
|
|
|
assert.ok(mainJsContent.includes('--dir=') || mainJsContent.includes('-d='), 'Directory parameter parsing should be implemented');
|
|
|
|
console.log('✅ Command line parameter parsing verified');
|
|
});
|
|
|
|
console.log('All tests completed successfully!'); |