- 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
339 lines
12 KiB
JavaScript
339 lines
12 KiB
JavaScript
// ========================================
|
|
// TESTS GÉNÉRÉS AUTOMATIQUEMENT - HumanSimulationUtils
|
|
// Module: human-simulation/HumanSimulationUtils.js
|
|
// Générés le: 2025-09-06T03:38:48.134Z
|
|
// ========================================
|
|
|
|
const assert = require('assert');
|
|
const { test, describe } = require('node:test');
|
|
const HumanSimulationUtils = require('../../human-simulation/HumanSimulationUtils.js');
|
|
const { AIContentValidator } = require('../validators/AIContentValidator');
|
|
|
|
describe('HumanSimulationUtils - Tests automatiques', () => {
|
|
|
|
// Setup avant les tests
|
|
let testContext = {};
|
|
|
|
test('Module loading', () => {
|
|
assert.ok(HumanSimulationUtils, 'Module should be loaded');
|
|
console.log('📦 Module HumanSimulationUtils loaded successfully');
|
|
});
|
|
|
|
|
|
test('analyzeContentComplexity - Basic Function', () => {
|
|
const input = "Test content for validation";
|
|
|
|
try {
|
|
const result = HumanSimulationUtils.analyzeContentComplexity(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ analyzeContentComplexity: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ analyzeContentComplexity: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('calculateReadabilityScore - Basic Function', () => {
|
|
const input = "Sample text for processing";
|
|
|
|
try {
|
|
const result = HumanSimulationUtils.calculateReadabilityScore(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ calculateReadabilityScore: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ calculateReadabilityScore: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('countSyllables - Basic Function', () => {
|
|
const input = "Sample text for processing";
|
|
|
|
try {
|
|
const result = HumanSimulationUtils.countSyllables(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ countSyllables: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ countSyllables: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('preserveKeywords - Basic Function', () => {
|
|
const input = ["test_value", "test_value"];
|
|
|
|
try {
|
|
const result = HumanSimulationUtils.preserveKeywords(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ preserveKeywords: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ preserveKeywords: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('extractKeywords - Basic Function', () => {
|
|
const input = "Sample text for processing";
|
|
|
|
try {
|
|
const result = HumanSimulationUtils.extractKeywords(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ extractKeywords: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ extractKeywords: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('validateSimulationQuality - Validation', async () => {
|
|
const validInput = ["test_value", "test_value", "test_value"];
|
|
const invalidInput = null;
|
|
|
|
try {
|
|
// Test avec input valide
|
|
const validResult = await HumanSimulationUtils.validateSimulationQuality(validInput);
|
|
assert.ok(validResult !== undefined, 'Should return result for valid input');
|
|
|
|
// Test avec input invalide
|
|
try {
|
|
const invalidResult = await HumanSimulationUtils.validateSimulationQuality(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('✅ validateSimulationQuality: Validation working correctly');
|
|
|
|
} catch (error) {
|
|
console.error('❌ validateSimulationQuality: Validation test failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('calculateSimilarity - Basic Function', () => {
|
|
const input = ["Sample text for processing", "Sample text for processing"];
|
|
|
|
try {
|
|
const result = HumanSimulationUtils.calculateSimilarity(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ calculateSimilarity: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ calculateSimilarity: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('determineQualityIssue - Basic Function', () => {
|
|
const input = ["test_value", "test_value", "test_value"];
|
|
|
|
try {
|
|
const result = HumanSimulationUtils.determineQualityIssue(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ determineQualityIssue: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ determineQualityIssue: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('generateQualityReport - Content Generation', async () => {
|
|
const mockInput = ["Test content for validation", "test_value"];
|
|
|
|
try {
|
|
const result = await HumanSimulationUtils.generateQualityReport(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('✅ generateQualityReport: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ generateQualityReport: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('calculateStatistics - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = HumanSimulationUtils.calculateStatistics(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ calculateStatistics: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ calculateStatistics: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('calculateStandardDeviation - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = HumanSimulationUtils.calculateStandardDeviation(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ calculateStandardDeviation: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ calculateStandardDeviation: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('if - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = HumanSimulationUtils.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('Export - analyzeContentComplexity', () => {
|
|
assert.ok(HumanSimulationUtils.analyzeContentComplexity !== undefined, 'Export analyzeContentComplexity should be available');
|
|
console.log('✅ Export analyzeContentComplexity: Available');
|
|
});
|
|
|
|
test('Export - calculateReadabilityScore', () => {
|
|
assert.ok(HumanSimulationUtils.calculateReadabilityScore !== undefined, 'Export calculateReadabilityScore should be available');
|
|
console.log('✅ Export calculateReadabilityScore: Available');
|
|
});
|
|
|
|
test('Export - preserveKeywords', () => {
|
|
assert.ok(HumanSimulationUtils.preserveKeywords !== undefined, 'Export preserveKeywords should be available');
|
|
console.log('✅ Export preserveKeywords: Available');
|
|
});
|
|
|
|
test('Export - validateSimulationQuality', () => {
|
|
assert.ok(HumanSimulationUtils.validateSimulationQuality !== undefined, 'Export validateSimulationQuality should be available');
|
|
console.log('✅ Export validateSimulationQuality: Available');
|
|
});
|
|
|
|
test('Export - generateQualityReport', () => {
|
|
assert.ok(HumanSimulationUtils.generateQualityReport !== undefined, 'Export generateQualityReport should be available');
|
|
console.log('✅ Export generateQualityReport: Available');
|
|
});
|
|
|
|
test('Export - calculateStatistics', () => {
|
|
assert.ok(HumanSimulationUtils.calculateStatistics !== undefined, 'Export calculateStatistics should be available');
|
|
console.log('✅ Export calculateStatistics: Available');
|
|
});
|
|
|
|
test('Export - calculateStandardDeviation', () => {
|
|
assert.ok(HumanSimulationUtils.calculateStandardDeviation !== undefined, 'Export calculateStandardDeviation should be available');
|
|
console.log('✅ Export calculateStandardDeviation: Available');
|
|
});
|
|
|
|
test('Export - countSyllables', () => {
|
|
assert.ok(HumanSimulationUtils.countSyllables !== undefined, 'Export countSyllables should be available');
|
|
console.log('✅ Export countSyllables: Available');
|
|
});
|
|
|
|
test('Export - extractKeywords', () => {
|
|
assert.ok(HumanSimulationUtils.extractKeywords !== undefined, 'Export extractKeywords should be available');
|
|
console.log('✅ Export extractKeywords: Available');
|
|
});
|
|
|
|
test('Export - calculateSimilarity', () => {
|
|
assert.ok(HumanSimulationUtils.calculateSimilarity !== undefined, 'Export calculateSimilarity should be available');
|
|
console.log('✅ Export calculateSimilarity: Available');
|
|
});
|
|
|
|
test('Export - determineQualityIssue', () => {
|
|
assert.ok(HumanSimulationUtils.determineQualityIssue !== undefined, 'Export determineQualityIssue should be available');
|
|
console.log('✅ Export determineQualityIssue: Available');
|
|
});
|
|
|
|
test('Export - QUALITY_THRESHOLDS', () => {
|
|
assert.ok(HumanSimulationUtils.QUALITY_THRESHOLDS !== undefined, 'Export QUALITY_THRESHOLDS should be available');
|
|
console.log('✅ Export QUALITY_THRESHOLDS: Available');
|
|
});
|
|
|
|
test('Export - CRITICAL_KEYWORDS', () => {
|
|
assert.ok(HumanSimulationUtils.CRITICAL_KEYWORDS !== undefined, 'Export CRITICAL_KEYWORDS should be available');
|
|
console.log('✅ Export CRITICAL_KEYWORDS: Available');
|
|
});
|
|
|
|
|
|
// Test d'intégration général
|
|
test('Integration - Module health check', async () => {
|
|
try {
|
|
// Vérification exports
|
|
const exports = Object.keys(HumanSimulationUtils);
|
|
assert.ok(exports.length > 0, 'Module should export functions');
|
|
|
|
console.log(`✅ HumanSimulationUtils: ${exports.length} exports available`);
|
|
console.log('📋 Exports:', exports.join(', '));
|
|
|
|
} catch (error) {
|
|
console.error('❌ Integration test failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
}); |