304 lines
9.7 KiB
JavaScript
304 lines
9.7 KiB
JavaScript
// ========================================
|
|
// TESTS GÉNÉRÉS AUTOMATIQUEMENT - InitialGeneration
|
|
// Module: generation/InitialGeneration.js
|
|
// Générés le: 2025-09-15T04:05:52.082Z
|
|
// ========================================
|
|
|
|
const assert = require('assert');
|
|
const { test, describe } = require('node:test');
|
|
const InitialGeneration = require('../../generation/InitialGeneration.js');
|
|
const { AIContentValidator } = require('../validators/AIContentValidator');
|
|
|
|
describe('InitialGeneration - Tests automatiques', () => {
|
|
|
|
// Setup avant les tests
|
|
let testContext = {};
|
|
|
|
test('Module loading', () => {
|
|
assert.ok(InitialGeneration, 'Module should be loaded');
|
|
console.log('📦 Module InitialGeneration loaded successfully');
|
|
});
|
|
|
|
|
|
test('apply - Async Operation', async () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await InitialGeneration.apply(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(`✅ apply: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ apply: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('for - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = InitialGeneration.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('if - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = InitialGeneration.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('catch - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = InitialGeneration.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('prepareElementsForGeneration - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = InitialGeneration.prepareElementsForGeneration(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ prepareElementsForGeneration: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ prepareElementsForGeneration: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('detectElementType - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = InitialGeneration.detectElementType(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ detectElementType: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ detectElementType: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('createInstructionFromPlaceholder - Content Generation', async () => {
|
|
const mockInput = undefined;
|
|
|
|
try {
|
|
const result = await InitialGeneration.createInstructionFromPlaceholder(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('✅ createInstructionFromPlaceholder: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ createInstructionFromPlaceholder: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('createInitialGenerationPrompt - Content Generation', async () => {
|
|
const mockInput = undefined;
|
|
|
|
try {
|
|
const result = await InitialGeneration.createInitialGenerationPrompt(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('✅ createInitialGenerationPrompt: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ createInitialGenerationPrompt: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('parseInitialGenerationResponse - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = InitialGeneration.parseInitialGenerationResponse(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ parseInitialGenerationResponse: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ parseInitialGenerationResponse: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('while - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = InitialGeneration.while(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ while: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ while: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('cleanGeneratedContent - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = InitialGeneration.cleanGeneratedContent(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ cleanGeneratedContent: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ cleanGeneratedContent: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('createFallbackContent - Content Generation', async () => {
|
|
const mockInput = undefined;
|
|
|
|
try {
|
|
const result = await InitialGeneration.createFallbackContent(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('✅ createFallbackContent: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ createFallbackContent: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('switch - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = InitialGeneration.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('Export - InitialGenerationLayer', () => {
|
|
assert.ok(InitialGeneration.InitialGenerationLayer !== undefined, 'Export InitialGenerationLayer should be available');
|
|
console.log('✅ Export InitialGenerationLayer: Available');
|
|
});
|
|
|
|
|
|
// Test d'intégration général
|
|
test('Integration - Module health check', async () => {
|
|
try {
|
|
// Vérification exports
|
|
const exports = Object.keys(InitialGeneration);
|
|
assert.ok(exports.length > 0, 'Module should export functions');
|
|
|
|
console.log(`✅ InitialGeneration: ${exports.length} exports available`);
|
|
console.log('📋 Exports:', exports.join(', '));
|
|
|
|
} catch (error) {
|
|
console.error('❌ Integration test failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
}); |