// ======================================== // TESTS GÉNÉRÉS AUTOMATIQUEMENT - ErrorReporting // Module: ErrorReporting.js // Générés le: 2025-09-06T03:38:47.956Z // ======================================== const assert = require('assert'); const { test, describe } = require('node:test'); const ErrorReporting = require('../../ErrorReporting.js'); const { AIContentValidator } = require('../validators/AIContentValidator'); describe('ErrorReporting - Tests automatiques', () => { // Setup avant les tests let testContext = {}; test('Module loading', () => { assert.ok(ErrorReporting, 'Module should be loaded'); console.log('📦 Module ErrorReporting loaded successfully'); }); test('initGoogleSheets - Async Operation', async () => { const input = undefined; try { const startTime = Date.now(); const result = await ErrorReporting.initGoogleSheets(input); const duration = Date.now() - startTime; // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(duration < 30000, 'Should complete within 30 seconds'); console.log(`✅ initGoogleSheets: Completed in ${duration}ms`); } catch (error) { console.error('❌ initGoogleSheets: Async operation failed:', error.message); throw error; } }); test('logSh - Async Operation', async () => { const input = ["test_value", "test_value"]; try { const startTime = Date.now(); const result = await ErrorReporting.logSh(input); const duration = Date.now() - startTime; // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(duration < 30000, 'Should complete within 30 seconds'); console.log(`✅ logSh: Completed in ${duration}ms`); } catch (error) { console.error('❌ logSh: Async operation failed:', error.message); throw error; } }); test('logToFile - Async Operation', async () => { const input = ["test_value", "test_value"]; try { const startTime = Date.now(); const result = await ErrorReporting.logToFile(input); const duration = Date.now() - startTime; // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(duration < 30000, 'Should complete within 30 seconds'); console.log(`✅ logToFile: Completed in ${duration}ms`); } catch (error) { console.error('❌ logToFile: Async operation failed:', error.message); throw error; } }); test('logToGoogleSheets - Async Operation', async () => { const input = ["test_value", "test_value"]; try { const startTime = Date.now(); const result = await ErrorReporting.logToGoogleSheets(input); const duration = Date.now() - startTime; // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(duration < 30000, 'Should complete within 30 seconds'); console.log(`✅ logToGoogleSheets: Completed in ${duration}ms`); } catch (error) { console.error('❌ logToGoogleSheets: Async operation failed:', error.message); throw error; } }); test('cleanLogSheet - Async Operation', async () => { const input = undefined; try { const startTime = Date.now(); const result = await ErrorReporting.cleanLogSheet(input); const duration = Date.now() - startTime; // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(duration < 30000, 'Should complete within 30 seconds'); console.log(`✅ cleanLogSheet: Completed in ${duration}ms`); } catch (error) { console.error('❌ cleanLogSheet: Async operation failed:', error.message); throw error; } }); test('cleanLocalLogs - Async Operation', async () => { const input = undefined; try { const startTime = Date.now(); const result = await ErrorReporting.cleanLocalLogs(input); const duration = Date.now() - startTime; // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(duration < 30000, 'Should complete within 30 seconds'); console.log(`✅ cleanLocalLogs: Completed in ${duration}ms`); } catch (error) { console.error('❌ cleanLocalLogs: Async operation failed:', error.message); throw error; } }); test('cleanGoogleSheetsLogs - Async Operation', async () => { const input = undefined; try { const startTime = Date.now(); const result = await ErrorReporting.cleanGoogleSheetsLogs(input); const duration = Date.now() - startTime; // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(duration < 30000, 'Should complete within 30 seconds'); console.log(`✅ cleanGoogleSheetsLogs: Completed in ${duration}ms`); } catch (error) { console.error('❌ cleanGoogleSheetsLogs: Async operation failed:', error.message); throw error; } }); test('sendErrorReport - Async Operation', async () => { const input = "test_value"; try { const startTime = Date.now(); const result = await ErrorReporting.sendErrorReport(input); const duration = Date.now() - startTime; // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(duration < 30000, 'Should complete within 30 seconds'); console.log(`✅ sendErrorReport: Completed in ${duration}ms`); } catch (error) { console.error('❌ sendErrorReport: Async operation failed:', error.message); throw error; } }); test('initWebSocketServer - Basic Function', () => { const input = undefined; try { const result = ErrorReporting.initWebSocketServer(input); // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(typeof result !== 'undefined', 'Result should be defined'); console.log('✅ initWebSocketServer: Function executed successfully'); } catch (error) { console.error('❌ initWebSocketServer: Function failed:', error.message); throw error; } }); test('broadcastLog - Basic Function', () => { const input = ["test_value", "test_value"]; try { const result = ErrorReporting.broadcastLog(input); // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(typeof result !== 'undefined', 'Result should be defined'); console.log('✅ broadcastLog: Function executed successfully'); } catch (error) { console.error('❌ broadcastLog: Function failed:', error.message); throw error; } }); test('shouldLogToConsole - Basic Function', () => { const input = ["test_value", "test_value"]; try { const result = ErrorReporting.shouldLogToConsole(input); // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(typeof result !== 'undefined', 'Result should be defined'); console.log('✅ shouldLogToConsole: Function executed successfully'); } catch (error) { console.error('❌ shouldLogToConsole: Function failed:', error.message); throw error; } }); test('validateWorkflowIntegrity - Validation', async () => { const validInput = ["test_value", "test_value", "test_value", { mc0: "test keyword", t0: "Test title" }]; const invalidInput = null; try { // Test avec input valide const validResult = await ErrorReporting.validateWorkflowIntegrity(validInput); assert.ok(validResult !== undefined, 'Should return result for valid input'); // Test avec input invalide try { const invalidResult = await ErrorReporting.validateWorkflowIntegrity(invalidInput); // Si pas d'erreur, vérifier que la validation échoue if (typeof invalidResult === 'boolean') { assert.strictEqual(invalidResult, false, 'Should return false for invalid input'); } } catch (error) { // C'est attendu pour une validation qui throw console.log('Expected validation error:', error.message); } console.log('✅ validateWorkflowIntegrity: Validation working correctly'); } catch (error) { console.error('❌ validateWorkflowIntegrity: Validation test failed:', error.message); throw error; } }); test('detectDuplicateTags - Basic Function', () => { const input = "test_value"; try { const result = ErrorReporting.detectDuplicateTags(input); // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(typeof result !== 'undefined', 'Result should be defined'); console.log('✅ detectDuplicateTags: Function executed successfully'); } catch (error) { console.error('❌ detectDuplicateTags: Function failed:', error.message); throw error; } }); test('detectMissingCSVVariables - Basic Function', () => { const input = { mc0: "test keyword", t0: "Test title" }; try { const result = ErrorReporting.detectMissingCSVVariables(input); // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(typeof result !== 'undefined', 'Result should be defined'); console.log('✅ detectMissingCSVVariables: Function executed successfully'); } catch (error) { console.error('❌ detectMissingCSVVariables: Function failed:', error.message); throw error; } }); test('assessGenerationQuality - Basic Function', () => { const input = "test_value"; try { const result = ErrorReporting.assessGenerationQuality(input); // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(typeof result !== 'undefined', 'Result should be defined'); console.log('✅ assessGenerationQuality: Function executed successfully'); } catch (error) { console.error('❌ assessGenerationQuality: Function failed:', error.message); throw error; } }); test('createHTMLReport - Content Generation', async () => { const mockInput = "test_value"; try { const result = await ErrorReporting.createHTMLReport(mockInput); // Validations de base assert.ok(result, 'Should return a result'); assert.ok(typeof result === 'string' || typeof result === 'object', 'Should return content'); // Validation IA si contenu texte if (typeof result === 'string' && result.length > 50) { const validation = await AIContentValidator.quickValidate(result, { context: 'Generated content test' }); assert.ok(validation.overall >= 40, 'Content quality should be acceptable'); } console.log('✅ createHTMLReport: Content generated successfully'); } catch (error) { console.error('❌ createHTMLReport: Generation failed:', error.message); throw error; } }); test('if - Basic Function', () => { const input = undefined; try { const result = ErrorReporting.if(input); // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(typeof result !== 'undefined', 'Result should be defined'); console.log('✅ if: Function executed successfully'); } catch (error) { console.error('❌ if: Function failed:', error.message); throw error; } }); test('forEach - Basic Function', () => { const input = undefined; try { const result = ErrorReporting.forEach(input); // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(typeof result !== 'undefined', 'Result should be defined'); console.log('✅ forEach: Function executed successfully'); } catch (error) { console.error('❌ forEach: Function failed:', error.message); throw error; } }); test('catch - Basic Function', () => { const input = undefined; try { const result = ErrorReporting.catch(input); // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(typeof result !== 'undefined', 'Result should be defined'); console.log('✅ catch: Function executed successfully'); } catch (error) { console.error('❌ catch: Function failed:', error.message); throw error; } }); test('switch - Basic Function', () => { const input = undefined; try { const result = ErrorReporting.switch(input); // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(typeof result !== 'undefined', 'Result should be defined'); console.log('✅ switch: Function executed successfully'); } catch (error) { console.error('❌ switch: Function failed:', error.message); throw error; } }); test('for - Basic Function', () => { const input = undefined; try { const result = ErrorReporting.for(input); // Validations de base assert.ok(result !== undefined, 'Should return a result'); assert.ok(typeof result !== 'undefined', 'Result should be defined'); console.log('✅ for: Function executed successfully'); } catch (error) { console.error('❌ for: Function failed:', error.message); throw error; } }); test('Export - logSh', () => { assert.ok(ErrorReporting.logSh !== undefined, 'Export logSh should be available'); console.log('✅ Export logSh: Available'); }); test('Export - cleanLogSheet', () => { assert.ok(ErrorReporting.cleanLogSheet !== undefined, 'Export cleanLogSheet should be available'); console.log('✅ Export cleanLogSheet: Available'); }); test('Export - validateWorkflowIntegrity', () => { assert.ok(ErrorReporting.validateWorkflowIntegrity !== undefined, 'Export validateWorkflowIntegrity should be available'); console.log('✅ Export validateWorkflowIntegrity: Available'); }); test('Export - detectDuplicateTags', () => { assert.ok(ErrorReporting.detectDuplicateTags !== undefined, 'Export detectDuplicateTags should be available'); console.log('✅ Export detectDuplicateTags: Available'); }); test('Export - detectMissingCSVVariables', () => { assert.ok(ErrorReporting.detectMissingCSVVariables !== undefined, 'Export detectMissingCSVVariables should be available'); console.log('✅ Export detectMissingCSVVariables: Available'); }); test('Export - assessGenerationQuality', () => { assert.ok(ErrorReporting.assessGenerationQuality !== undefined, 'Export assessGenerationQuality should be available'); console.log('✅ Export assessGenerationQuality: Available'); }); test('Export - sendErrorReport', () => { assert.ok(ErrorReporting.sendErrorReport !== undefined, 'Export sendErrorReport should be available'); console.log('✅ Export sendErrorReport: Available'); }); test('Export - createHTMLReport', () => { assert.ok(ErrorReporting.createHTMLReport !== undefined, 'Export createHTMLReport should be available'); console.log('✅ Export createHTMLReport: Available'); }); // Test d'intégration général test('Integration - Module health check', async () => { try { // Vérification exports const exports = Object.keys(ErrorReporting); assert.ok(exports.length > 0, 'Module should export functions'); console.log(`✅ ErrorReporting: ${exports.length} exports available`); console.log('📋 Exports:', exports.join(', ')); } catch (error) { console.error('❌ Integration test failed:', error.message); throw error; } }); });