443 lines
15 KiB
JavaScript
443 lines
15 KiB
JavaScript
// ========================================
|
|
// TESTS GÉNÉRÉS AUTOMATIQUEMENT - AdversarialTransitionEnhancement
|
|
// Module: adversarial-generation/AdversarialTransitionEnhancement.js
|
|
// Générés le: 2025-09-06T12:40:35.989Z
|
|
// ========================================
|
|
|
|
const assert = require('assert');
|
|
const { test, describe } = require('node:test');
|
|
const AdversarialTransitionEnhancement = require('../../adversarial-generation/AdversarialTransitionEnhancement.js');
|
|
const { AIContentValidator } = require('../validators/AIContentValidator');
|
|
|
|
describe('AdversarialTransitionEnhancement - Tests automatiques', () => {
|
|
|
|
// Setup avant les tests
|
|
let testContext = {};
|
|
|
|
test('Module loading', () => {
|
|
assert.ok(AdversarialTransitionEnhancement, 'Module should be loaded');
|
|
console.log('📦 Module AdversarialTransitionEnhancement loaded successfully');
|
|
});
|
|
|
|
|
|
test('enhanceTransitionsAdversarial - Async Operation', async () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await AdversarialTransitionEnhancement.enhanceTransitionsAdversarial(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(`✅ enhanceTransitionsAdversarial: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ enhanceTransitionsAdversarial: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('improveTransitionsInChunksAdversarial - Async Operation', async () => {
|
|
const input = ["test_value", { mc0: "test keyword", t0: "Test title" }, "test_value", "test_value"];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await AdversarialTransitionEnhancement.improveTransitionsInChunksAdversarial(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(`✅ improveTransitionsInChunksAdversarial: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ improveTransitionsInChunksAdversarial: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('analyzeTransitionNeeds - Basic Function', () => {
|
|
const input = "Test content for validation";
|
|
|
|
try {
|
|
const result = AdversarialTransitionEnhancement.analyzeTransitionNeeds(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ analyzeTransitionNeeds: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ analyzeTransitionNeeds: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('evaluateTransitionQuality - Basic Function', () => {
|
|
const input = "Sample text for processing";
|
|
|
|
try {
|
|
const result = AdversarialTransitionEnhancement.evaluateTransitionQuality(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ evaluateTransitionQuality: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ evaluateTransitionQuality: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('createTransitionImprovementPrompt - Content Generation', async () => {
|
|
const mockInput = ["test_value", { mc0: "test keyword", t0: "Test title" }];
|
|
|
|
try {
|
|
const result = await AdversarialTransitionEnhancement.createTransitionImprovementPrompt(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('✅ createTransitionImprovementPrompt: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ createTransitionImprovementPrompt: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('parseTransitionResponse - Basic Function', () => {
|
|
const input = ["test_value", "test_value"];
|
|
|
|
try {
|
|
const result = AdversarialTransitionEnhancement.parseTransitionResponse(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ parseTransitionResponse: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ parseTransitionResponse: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('analyzeRepetitiveConnectors - Basic Function', () => {
|
|
const input = "Test content for validation";
|
|
|
|
try {
|
|
const result = AdversarialTransitionEnhancement.analyzeRepetitiveConnectors(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ analyzeRepetitiveConnectors: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ analyzeRepetitiveConnectors: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('analyzeAbruptTransitions - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = AdversarialTransitionEnhancement.analyzeAbruptTransitions(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ analyzeAbruptTransitions: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ analyzeAbruptTransitions: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('analyzeSentenceVariety - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = AdversarialTransitionEnhancement.analyzeSentenceVariety(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ analyzeSentenceVariety: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ analyzeSentenceVariety: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('analyzeFormalityBalance - Basic Function', () => {
|
|
const input = "Test content for validation";
|
|
|
|
try {
|
|
const result = AdversarialTransitionEnhancement.analyzeFormalityBalance(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ analyzeFormalityBalance: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ analyzeFormalityBalance: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('hasTransitionWord - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = AdversarialTransitionEnhancement.hasTransitionWord(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ hasTransitionWord: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ hasTransitionWord: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('cleanImprovedContent - Basic Function', () => {
|
|
const input = "Test content for validation";
|
|
|
|
try {
|
|
const result = AdversarialTransitionEnhancement.cleanImprovedContent(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ cleanImprovedContent: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ cleanImprovedContent: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('chunkArray - Basic Function', () => {
|
|
const input = ["test_value", "test_value"];
|
|
|
|
try {
|
|
const result = AdversarialTransitionEnhancement.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 = AdversarialTransitionEnhancement.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 = AdversarialTransitionEnhancement.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 = AdversarialTransitionEnhancement.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 = AdversarialTransitionEnhancement.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 = AdversarialTransitionEnhancement.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 = AdversarialTransitionEnhancement.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('Export - enhanceTransitionsAdversarial', () => {
|
|
assert.ok(AdversarialTransitionEnhancement.enhanceTransitionsAdversarial !== undefined, 'Export enhanceTransitionsAdversarial should be available');
|
|
console.log('✅ Export enhanceTransitionsAdversarial: Available');
|
|
});
|
|
|
|
test('Export - MAIN', () => {
|
|
assert.ok(AdversarialTransitionEnhancement.MAIN !== undefined, 'Export MAIN should be available');
|
|
console.log('✅ Export MAIN: Available');
|
|
});
|
|
|
|
test('Export - ENTRY', () => {
|
|
assert.ok(AdversarialTransitionEnhancement.ENTRY !== undefined, 'Export ENTRY should be available');
|
|
console.log('✅ Export ENTRY: Available');
|
|
});
|
|
|
|
test('Export - POINT', () => {
|
|
assert.ok(AdversarialTransitionEnhancement.POINT !== undefined, 'Export POINT should be available');
|
|
console.log('✅ Export POINT: Available');
|
|
});
|
|
|
|
test('Export - ADVERSARIAL', () => {
|
|
assert.ok(AdversarialTransitionEnhancement.ADVERSARIAL !== undefined, 'Export ADVERSARIAL should be available');
|
|
console.log('✅ Export ADVERSARIAL: Available');
|
|
});
|
|
|
|
test('Export - analyzeTransitionNeeds', () => {
|
|
assert.ok(AdversarialTransitionEnhancement.analyzeTransitionNeeds !== undefined, 'Export analyzeTransitionNeeds should be available');
|
|
console.log('✅ Export analyzeTransitionNeeds: Available');
|
|
});
|
|
|
|
test('Export - evaluateTransitionQuality', () => {
|
|
assert.ok(AdversarialTransitionEnhancement.evaluateTransitionQuality !== undefined, 'Export evaluateTransitionQuality should be available');
|
|
console.log('✅ Export evaluateTransitionQuality: Available');
|
|
});
|
|
|
|
test('Export - improveTransitionsInChunksAdversarial', () => {
|
|
assert.ok(AdversarialTransitionEnhancement.improveTransitionsInChunksAdversarial !== undefined, 'Export improveTransitionsInChunksAdversarial should be available');
|
|
console.log('✅ Export improveTransitionsInChunksAdversarial: Available');
|
|
});
|
|
|
|
test('Export - createTransitionImprovementPrompt', () => {
|
|
assert.ok(AdversarialTransitionEnhancement.createTransitionImprovementPrompt !== undefined, 'Export createTransitionImprovementPrompt should be available');
|
|
console.log('✅ Export createTransitionImprovementPrompt: Available');
|
|
});
|
|
|
|
test('Export - parseTransitionResponse', () => {
|
|
assert.ok(AdversarialTransitionEnhancement.parseTransitionResponse !== undefined, 'Export parseTransitionResponse should be available');
|
|
console.log('✅ Export parseTransitionResponse: Available');
|
|
});
|
|
|
|
|
|
// Test d'intégration général
|
|
test('Integration - Module health check', async () => {
|
|
try {
|
|
// Vérification exports
|
|
const exports = Object.keys(AdversarialTransitionEnhancement);
|
|
assert.ok(exports.length > 0, 'Module should export functions');
|
|
|
|
console.log(`✅ AdversarialTransitionEnhancement: ${exports.length} exports available`);
|
|
console.log('📋 Exports:', exports.join(', '));
|
|
|
|
} catch (error) {
|
|
console.error('❌ Integration test failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
}); |