391 lines
12 KiB
JavaScript
391 lines
12 KiB
JavaScript
// ========================================
|
|
// TESTS GÉNÉRÉS AUTOMATIQUEMENT - LLMManager
|
|
// Module: LLMManager.js
|
|
// Générés le: 2025-09-06T12:40:35.854Z
|
|
// ========================================
|
|
|
|
const assert = require('assert');
|
|
const { test, describe } = require('node:test');
|
|
const LLMManager = require('../../LLMManager.js');
|
|
const { AIContentValidator } = require('../validators/AIContentValidator');
|
|
|
|
describe('LLMManager - Tests automatiques', () => {
|
|
|
|
// Setup avant les tests
|
|
let testContext = {};
|
|
|
|
test('Module loading', () => {
|
|
assert.ok(LLMManager, 'Module should be loaded');
|
|
console.log('📦 Module LLMManager loaded successfully');
|
|
});
|
|
|
|
|
|
test('callLLM - Async Operation', async () => {
|
|
const input = ["test_value", "test_value", { test: true }, { nom: "Marc", style: "technique" }];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await LLMManager.callLLM(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(`✅ callLLM: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ callLLM: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('callWithRetry - Async Operation', async () => {
|
|
const input = ["test_value", "test_value", "test_value"];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await LLMManager.callWithRetry(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(`✅ callWithRetry: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ callWithRetry: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('recordUsageStats - Async Operation', async () => {
|
|
const input = ["test_value", "test_value", "test_value", "test_value", "test_value"];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await LLMManager.recordUsageStats(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(`✅ recordUsageStats: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ recordUsageStats: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('testAllLLMs - Async Operation', async () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await LLMManager.testAllLLMs(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(`✅ testAllLLMs: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ testAllLLMs: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('getUsageStats - Async Operation', async () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await LLMManager.getUsageStats(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(`✅ getUsageStats: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ getUsageStats: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('callOpenAI - Async Operation', async () => {
|
|
const input = ["test_value", { nom: "Marc", style: "technique" }];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await LLMManager.callOpenAI(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(`✅ callOpenAI: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ callOpenAI: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('testLLMManager - Async Operation', async () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await LLMManager.testLLMManager(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(`✅ testLLMManager: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ testLLMManager: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('testLLMManagerComplete - Async Operation', async () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await LLMManager.testLLMManagerComplete(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(`✅ testLLMManagerComplete: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ testLLMManagerComplete: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('buildRequestData - Content Generation', async () => {
|
|
const mockInput = ["test_value", "test_value", { test: true }, { nom: "Marc", style: "technique" }];
|
|
|
|
try {
|
|
const result = await LLMManager.buildRequestData(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('✅ buildRequestData: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ buildRequestData: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('parseResponse - Basic Function', () => {
|
|
const input = ["test_value", "test_value"];
|
|
|
|
try {
|
|
const result = LLMManager.parseResponse(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ parseResponse: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ parseResponse: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('getAvailableProviders - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = LLMManager.getAvailableProviders(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ getAvailableProviders: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ getAvailableProviders: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('sleep - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = LLMManager.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 = LLMManager.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 = LLMManager.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('switch - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = LLMManager.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 = LLMManager.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 - callLLM', () => {
|
|
assert.ok(LLMManager.callLLM !== undefined, 'Export callLLM should be available');
|
|
console.log('✅ Export callLLM: Available');
|
|
});
|
|
|
|
test('Export - callOpenAI', () => {
|
|
assert.ok(LLMManager.callOpenAI !== undefined, 'Export callOpenAI should be available');
|
|
console.log('✅ Export callOpenAI: Available');
|
|
});
|
|
|
|
test('Export - testAllLLMs', () => {
|
|
assert.ok(LLMManager.testAllLLMs !== undefined, 'Export testAllLLMs should be available');
|
|
console.log('✅ Export testAllLLMs: Available');
|
|
});
|
|
|
|
test('Export - getAvailableProviders', () => {
|
|
assert.ok(LLMManager.getAvailableProviders !== undefined, 'Export getAvailableProviders should be available');
|
|
console.log('✅ Export getAvailableProviders: Available');
|
|
});
|
|
|
|
test('Export - getUsageStats', () => {
|
|
assert.ok(LLMManager.getUsageStats !== undefined, 'Export getUsageStats should be available');
|
|
console.log('✅ Export getUsageStats: Available');
|
|
});
|
|
|
|
test('Export - testLLMManager', () => {
|
|
assert.ok(LLMManager.testLLMManager !== undefined, 'Export testLLMManager should be available');
|
|
console.log('✅ Export testLLMManager: Available');
|
|
});
|
|
|
|
test('Export - testLLMManagerComplete', () => {
|
|
assert.ok(LLMManager.testLLMManagerComplete !== undefined, 'Export testLLMManagerComplete should be available');
|
|
console.log('✅ Export testLLMManagerComplete: Available');
|
|
});
|
|
|
|
test('Export - LLM_CONFIG', () => {
|
|
assert.ok(LLMManager.LLM_CONFIG !== undefined, 'Export LLM_CONFIG should be available');
|
|
console.log('✅ Export LLM_CONFIG: Available');
|
|
});
|
|
|
|
|
|
// Test d'intégration général
|
|
test('Integration - Module health check', async () => {
|
|
try {
|
|
// Vérification exports
|
|
const exports = Object.keys(LLMManager);
|
|
assert.ok(exports.length > 0, 'Module should export functions');
|
|
|
|
console.log(`✅ LLMManager: ${exports.length} exports available`);
|
|
console.log('📋 Exports:', exports.join(', '));
|
|
|
|
} catch (error) {
|
|
console.error('❌ Integration test failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
}); |