398 lines
14 KiB
JavaScript
398 lines
14 KiB
JavaScript
// ========================================
|
|
// TESTS GÉNÉRÉS AUTOMATIQUEMENT - ElementExtraction
|
|
// Module: ElementExtraction.js
|
|
// Générés le: 2025-09-06T12:40:35.834Z
|
|
// ========================================
|
|
|
|
const assert = require('assert');
|
|
const { test, describe } = require('node:test');
|
|
const ElementExtraction = require('../../ElementExtraction.js');
|
|
const { AIContentValidator } = require('../validators/AIContentValidator');
|
|
|
|
describe('ElementExtraction - Tests automatiques', () => {
|
|
|
|
// Setup avant les tests
|
|
let testContext = {};
|
|
|
|
test('Module loading', () => {
|
|
assert.ok(ElementExtraction, 'Module should be loaded');
|
|
console.log('📦 Module ElementExtraction loaded successfully');
|
|
});
|
|
|
|
|
|
test('extractElements - Async Operation', async () => {
|
|
const input = ["test_value", { mc0: "test keyword", t0: "Test title" }];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await ElementExtraction.extractElements(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(`✅ extractElements: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ extractElements: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('generateAllContent - Content Generation', async () => {
|
|
const mockInput = ["test_value", { mc0: "test keyword", t0: "Test title" }, "test_value"];
|
|
|
|
try {
|
|
const result = await ElementExtraction.generateAllContent(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('✅ generateAllContent: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ generateAllContent: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('buildSmartHierarchy - Content Generation', async () => {
|
|
const mockInput = "test_value";
|
|
|
|
try {
|
|
const result = await ElementExtraction.buildSmartHierarchy(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('✅ buildSmartHierarchy: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ buildSmartHierarchy: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('parseTitlesResponse - Async Operation', async () => {
|
|
const input = ["test_value", "test_value"];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await ElementExtraction.parseTitlesResponse(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(`✅ parseTitlesResponse: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ parseTitlesResponse: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('parseTextsResponse - Async Operation', async () => {
|
|
const input = ["test_value", "test_value"];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await ElementExtraction.parseTextsResponse(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(`✅ parseTextsResponse: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ parseTextsResponse: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('parseFAQPairsResponse - Async Operation', async () => {
|
|
const input = ["test_value", "test_value"];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await ElementExtraction.parseFAQPairsResponse(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(`✅ parseFAQPairsResponse: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ parseFAQPairsResponse: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('parseOtherElementsResponse - Async Operation', async () => {
|
|
const input = ["test_value", "test_value"];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await ElementExtraction.parseOtherElementsResponse(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(`✅ parseOtherElementsResponse: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ parseOtherElementsResponse: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('resolveVariablesContent - Basic Function', () => {
|
|
const input = ["test_value", { mc0: "test keyword", t0: "Test title" }];
|
|
|
|
try {
|
|
const result = ElementExtraction.resolveVariablesContent(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ resolveVariablesContent: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ resolveVariablesContent: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('getElementType - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = ElementExtraction.getElementType(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ getElementType: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ getElementType: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('parseElementStructure - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = ElementExtraction.parseElementStructure(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ parseElementStructure: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ parseElementStructure: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('createPromptForElement - Content Generation', async () => {
|
|
const mockInput = ["test_value", { mc0: "test keyword", t0: "Test title" }];
|
|
|
|
try {
|
|
const result = await ElementExtraction.createPromptForElement(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('✅ createPromptForElement: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ createPromptForElement: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('catch - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = ElementExtraction.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('if - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = ElementExtraction.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('switch - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = ElementExtraction.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 = ElementExtraction.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 - extractElements', () => {
|
|
assert.ok(ElementExtraction.extractElements !== undefined, 'Export extractElements should be available');
|
|
console.log('✅ Export extractElements: Available');
|
|
});
|
|
|
|
test('Export - resolveVariablesContent', () => {
|
|
assert.ok(ElementExtraction.resolveVariablesContent !== undefined, 'Export resolveVariablesContent should be available');
|
|
console.log('✅ Export resolveVariablesContent: Available');
|
|
});
|
|
|
|
test('Export - getElementType', () => {
|
|
assert.ok(ElementExtraction.getElementType !== undefined, 'Export getElementType should be available');
|
|
console.log('✅ Export getElementType: Available');
|
|
});
|
|
|
|
test('Export - generateAllContent', () => {
|
|
assert.ok(ElementExtraction.generateAllContent !== undefined, 'Export generateAllContent should be available');
|
|
console.log('✅ Export generateAllContent: Available');
|
|
});
|
|
|
|
test('Export - parseElementStructure', () => {
|
|
assert.ok(ElementExtraction.parseElementStructure !== undefined, 'Export parseElementStructure should be available');
|
|
console.log('✅ Export parseElementStructure: Available');
|
|
});
|
|
|
|
test('Export - buildSmartHierarchy', () => {
|
|
assert.ok(ElementExtraction.buildSmartHierarchy !== undefined, 'Export buildSmartHierarchy should be available');
|
|
console.log('✅ Export buildSmartHierarchy: Available');
|
|
});
|
|
|
|
test('Export - parseTitlesResponse', () => {
|
|
assert.ok(ElementExtraction.parseTitlesResponse !== undefined, 'Export parseTitlesResponse should be available');
|
|
console.log('✅ Export parseTitlesResponse: Available');
|
|
});
|
|
|
|
test('Export - parseTextsResponse', () => {
|
|
assert.ok(ElementExtraction.parseTextsResponse !== undefined, 'Export parseTextsResponse should be available');
|
|
console.log('✅ Export parseTextsResponse: Available');
|
|
});
|
|
|
|
test('Export - parseFAQPairsResponse', () => {
|
|
assert.ok(ElementExtraction.parseFAQPairsResponse !== undefined, 'Export parseFAQPairsResponse should be available');
|
|
console.log('✅ Export parseFAQPairsResponse: Available');
|
|
});
|
|
|
|
test('Export - parseOtherElementsResponse', () => {
|
|
assert.ok(ElementExtraction.parseOtherElementsResponse !== undefined, 'Export parseOtherElementsResponse should be available');
|
|
console.log('✅ Export parseOtherElementsResponse: Available');
|
|
});
|
|
|
|
test('Export - createPromptForElement', () => {
|
|
assert.ok(ElementExtraction.createPromptForElement !== undefined, 'Export createPromptForElement should be available');
|
|
console.log('✅ Export createPromptForElement: Available');
|
|
});
|
|
|
|
|
|
// Test d'intégration général
|
|
test('Integration - Module health check', async () => {
|
|
try {
|
|
// Vérification exports
|
|
const exports = Object.keys(ElementExtraction);
|
|
assert.ok(exports.length > 0, 'Module should export functions');
|
|
|
|
console.log(`✅ ElementExtraction: ${exports.length} exports available`);
|
|
console.log('📋 Exports:', exports.join(', '));
|
|
|
|
} catch (error) {
|
|
console.error('❌ Integration test failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
}); |