- Add intermediate saves (v1.0-v1.4) to Generated_Articles_Versioned - Fix compiled_text pipeline (generatedTexts object structure) - Add /api/workflow-modulaire endpoint with version tracking - Create test-modulaire.html interface with real-time logs - Support parent-child linking via Parent_Article_ID
389 lines
13 KiB
JavaScript
389 lines
13 KiB
JavaScript
// ========================================
|
|
// TESTS GÉNÉRÉS AUTOMATIQUEMENT - StyleEnhancement
|
|
// Module: generation/StyleEnhancement.js
|
|
// Générés le: 2025-09-06T03:38:48.095Z
|
|
// ========================================
|
|
|
|
const assert = require('assert');
|
|
const { test, describe } = require('node:test');
|
|
const StyleEnhancement = require('../../generation/StyleEnhancement.js');
|
|
const { AIContentValidator } = require('../validators/AIContentValidator');
|
|
|
|
describe('StyleEnhancement - Tests automatiques', () => {
|
|
|
|
// Setup avant les tests
|
|
let testContext = {};
|
|
|
|
test('Module loading', () => {
|
|
assert.ok(StyleEnhancement, 'Module should be loaded');
|
|
console.log('📦 Module StyleEnhancement loaded successfully');
|
|
});
|
|
|
|
|
|
test('applyPersonalityStyle - Async Operation', async () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await StyleEnhancement.applyPersonalityStyle(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(`✅ applyPersonalityStyle: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ applyPersonalityStyle: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('applyStyleInChunks - Async Operation', async () => {
|
|
const input = ["test_value", { mc0: "test keyword", t0: "Test title" }];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await StyleEnhancement.applyStyleInChunks(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(`✅ applyStyleInChunks: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ applyStyleInChunks: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('prepareElementsForStyling - Basic Function', () => {
|
|
const input = "Test content for validation";
|
|
|
|
try {
|
|
const result = StyleEnhancement.prepareElementsForStyling(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ prepareElementsForStyling: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ prepareElementsForStyling: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('calculateStylePriority - Basic Function', () => {
|
|
const input = ["Sample text for processing", "test_value"];
|
|
|
|
try {
|
|
const result = StyleEnhancement.calculateStylePriority(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ calculateStylePriority: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ calculateStylePriority: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('createStylePrompt - Content Generation', async () => {
|
|
const mockInput = ["test_value", { mc0: "test keyword", t0: "Test title" }];
|
|
|
|
try {
|
|
const result = await StyleEnhancement.createStylePrompt(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('✅ createStylePrompt: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ createStylePrompt: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('parseStyleResponse - Basic Function', () => {
|
|
const input = ["test_value", "test_value"];
|
|
|
|
try {
|
|
const result = StyleEnhancement.parseStyleResponse(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ parseStyleResponse: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ parseStyleResponse: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('cleanStyledContent - Basic Function', () => {
|
|
const input = "Test content for validation";
|
|
|
|
try {
|
|
const result = StyleEnhancement.cleanStyledContent(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ cleanStyledContent: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ cleanStyledContent: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('getPersonalityStyleInstructions - Basic Function', () => {
|
|
const input = { nom: "Marc", style: "technique" };
|
|
|
|
try {
|
|
const result = StyleEnhancement.getPersonalityStyleInstructions(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ getPersonalityStyleInstructions: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ getPersonalityStyleInstructions: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('chunkArray - Basic Function', () => {
|
|
const input = ["test_value", "test_value"];
|
|
|
|
try {
|
|
const result = StyleEnhancement.chunkArray(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ chunkArray: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ chunkArray: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('sleep - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = StyleEnhancement.sleep(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ sleep: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ sleep: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('if - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = StyleEnhancement.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 = StyleEnhancement.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 = StyleEnhancement.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('for - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = StyleEnhancement.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('while - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = StyleEnhancement.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('replace - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = StyleEnhancement.replace(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ replace: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ replace: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('Export - applyPersonalityStyle', () => {
|
|
assert.ok(StyleEnhancement.applyPersonalityStyle !== undefined, 'Export applyPersonalityStyle should be available');
|
|
console.log('✅ Export applyPersonalityStyle: Available');
|
|
});
|
|
|
|
test('Export - MAIN', () => {
|
|
assert.ok(StyleEnhancement.MAIN !== undefined, 'Export MAIN should be available');
|
|
console.log('✅ Export MAIN: Available');
|
|
});
|
|
|
|
test('Export - ENTRY', () => {
|
|
assert.ok(StyleEnhancement.ENTRY !== undefined, 'Export ENTRY should be available');
|
|
console.log('✅ Export ENTRY: Available');
|
|
});
|
|
|
|
test('Export - POINT', () => {
|
|
assert.ok(StyleEnhancement.POINT !== undefined, 'Export POINT should be available');
|
|
console.log('✅ Export POINT: Available');
|
|
});
|
|
|
|
test('Export - prepareElementsForStyling', () => {
|
|
assert.ok(StyleEnhancement.prepareElementsForStyling !== undefined, 'Export prepareElementsForStyling should be available');
|
|
console.log('✅ Export prepareElementsForStyling: Available');
|
|
});
|
|
|
|
test('Export - calculateStylePriority', () => {
|
|
assert.ok(StyleEnhancement.calculateStylePriority !== undefined, 'Export calculateStylePriority should be available');
|
|
console.log('✅ Export calculateStylePriority: Available');
|
|
});
|
|
|
|
test('Export - applyStyleInChunks', () => {
|
|
assert.ok(StyleEnhancement.applyStyleInChunks !== undefined, 'Export applyStyleInChunks should be available');
|
|
console.log('✅ Export applyStyleInChunks: Available');
|
|
});
|
|
|
|
test('Export - createStylePrompt', () => {
|
|
assert.ok(StyleEnhancement.createStylePrompt !== undefined, 'Export createStylePrompt should be available');
|
|
console.log('✅ Export createStylePrompt: Available');
|
|
});
|
|
|
|
test('Export - parseStyleResponse', () => {
|
|
assert.ok(StyleEnhancement.parseStyleResponse !== undefined, 'Export parseStyleResponse should be available');
|
|
console.log('✅ Export parseStyleResponse: Available');
|
|
});
|
|
|
|
test('Export - getPersonalityStyleInstructions', () => {
|
|
assert.ok(StyleEnhancement.getPersonalityStyleInstructions !== undefined, 'Export getPersonalityStyleInstructions should be available');
|
|
console.log('✅ Export getPersonalityStyleInstructions: Available');
|
|
});
|
|
|
|
|
|
// Test d'intégration général
|
|
test('Integration - Module health check', async () => {
|
|
try {
|
|
// Vérification exports
|
|
const exports = Object.keys(StyleEnhancement);
|
|
assert.ok(exports.length > 0, 'Module should export functions');
|
|
|
|
console.log(`✅ StyleEnhancement: ${exports.length} exports available`);
|
|
console.log('📋 Exports:', exports.join(', '));
|
|
|
|
} catch (error) {
|
|
console.error('❌ Integration test failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
}); |