441 lines
14 KiB
JavaScript
441 lines
14 KiB
JavaScript
// ========================================
|
|
// TESTS GÉNÉRÉS AUTOMATIQUEMENT - Utils
|
|
// Module: Utils.js
|
|
// Générés le: 2025-09-06T12:40:35.911Z
|
|
// ========================================
|
|
|
|
const assert = require('assert');
|
|
const { test, describe } = require('node:test');
|
|
const Utils = require('../../Utils.js');
|
|
const { AIContentValidator } = require('../validators/AIContentValidator');
|
|
|
|
describe('Utils - Tests automatiques', () => {
|
|
|
|
// Setup avant les tests
|
|
let testContext = {};
|
|
|
|
test('Module loading', () => {
|
|
assert.ok(Utils, 'Module should be loaded');
|
|
console.log('📦 Module Utils loaded successfully');
|
|
});
|
|
|
|
|
|
test('withRetry - Async Operation', async () => {
|
|
const input = ["test_value", "test_value", "test_value"];
|
|
|
|
try {
|
|
const startTime = Date.now();
|
|
const result = await Utils.withRetry(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(`✅ withRetry: Completed in ${duration}ms`);
|
|
|
|
} catch (error) {
|
|
console.error('❌ withRetry: Async operation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('createSuccessResponse - Content Generation', async () => {
|
|
const mockInput = { mc0: "test keyword", t0: "Test title" };
|
|
|
|
try {
|
|
const result = await Utils.createSuccessResponse(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('✅ createSuccessResponse: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ createSuccessResponse: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('createErrorResponse - Content Generation', async () => {
|
|
const mockInput = "test_value";
|
|
|
|
try {
|
|
const result = await Utils.createErrorResponse(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('✅ createErrorResponse: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ createErrorResponse: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('responseMiddleware - Basic Function', () => {
|
|
const input = ["test_value", "test_value", "test_value"];
|
|
|
|
try {
|
|
const result = Utils.responseMiddleware(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ responseMiddleware: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ responseMiddleware: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('cleanFAQInstructions - Basic Function', () => {
|
|
const input = ["test_value", { mc0: "test keyword", t0: "Test title" }];
|
|
|
|
try {
|
|
const result = Utils.cleanFAQInstructions(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ cleanFAQInstructions: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ cleanFAQInstructions: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('sleep - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = Utils.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('base64Encode - Basic Function', () => {
|
|
const input = "Sample text for processing";
|
|
|
|
try {
|
|
const result = Utils.base64Encode(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ base64Encode: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ base64Encode: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('base64Decode - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = Utils.base64Decode(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ base64Decode: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ base64Decode: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('cleanSlug - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = Utils.cleanSlug(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ cleanSlug: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ cleanSlug: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('countWords - Basic Function', () => {
|
|
const input = "Sample text for processing";
|
|
|
|
try {
|
|
const result = Utils.countWords(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ countWords: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ countWords: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('formatDuration - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = Utils.formatDuration(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ formatDuration: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ formatDuration: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('isValidEmail - Basic Function', () => {
|
|
const input = "test_value";
|
|
|
|
try {
|
|
const result = Utils.isValidEmail(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ isValidEmail: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ isValidEmail: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('generateId - Content Generation', async () => {
|
|
const mockInput = undefined;
|
|
|
|
try {
|
|
const result = await Utils.generateId(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('✅ generateId: Content generated successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ generateId: Generation failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('truncate - Basic Function', () => {
|
|
const input = ["Sample text for processing", "test_value", "test_value"];
|
|
|
|
try {
|
|
const result = Utils.truncate(input);
|
|
|
|
// Validations de base
|
|
assert.ok(result !== undefined, 'Should return a result');
|
|
assert.ok(typeof result !== 'undefined', 'Result should be defined');
|
|
|
|
console.log('✅ truncate: Function executed successfully');
|
|
|
|
} catch (error) {
|
|
console.error('❌ truncate: Function failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
|
|
test('if - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = Utils.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('for - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = Utils.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('catch - Basic Function', () => {
|
|
const input = undefined;
|
|
|
|
try {
|
|
const result = Utils.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('Export - createSuccessResponse', () => {
|
|
assert.ok(Utils.createSuccessResponse !== undefined, 'Export createSuccessResponse should be available');
|
|
console.log('✅ Export createSuccessResponse: Available');
|
|
});
|
|
|
|
test('Export - createErrorResponse', () => {
|
|
assert.ok(Utils.createErrorResponse !== undefined, 'Export createErrorResponse should be available');
|
|
console.log('✅ Export createErrorResponse: Available');
|
|
});
|
|
|
|
test('Export - responseMiddleware', () => {
|
|
assert.ok(Utils.responseMiddleware !== undefined, 'Export responseMiddleware should be available');
|
|
console.log('✅ Export responseMiddleware: Available');
|
|
});
|
|
|
|
test('Export - cleanFAQInstructions', () => {
|
|
assert.ok(Utils.cleanFAQInstructions !== undefined, 'Export cleanFAQInstructions should be available');
|
|
console.log('✅ Export cleanFAQInstructions: Available');
|
|
});
|
|
|
|
test('Export - sleep', () => {
|
|
assert.ok(Utils.sleep !== undefined, 'Export sleep should be available');
|
|
console.log('✅ Export sleep: Available');
|
|
});
|
|
|
|
test('Export - base64Encode', () => {
|
|
assert.ok(Utils.base64Encode !== undefined, 'Export base64Encode should be available');
|
|
console.log('✅ Export base64Encode: Available');
|
|
});
|
|
|
|
test('Export - base64Decode', () => {
|
|
assert.ok(Utils.base64Decode !== undefined, 'Export base64Decode should be available');
|
|
console.log('✅ Export base64Decode: Available');
|
|
});
|
|
|
|
test('Export - cleanSlug', () => {
|
|
assert.ok(Utils.cleanSlug !== undefined, 'Export cleanSlug should be available');
|
|
console.log('✅ Export cleanSlug: Available');
|
|
});
|
|
|
|
test('Export - countWords', () => {
|
|
assert.ok(Utils.countWords !== undefined, 'Export countWords should be available');
|
|
console.log('✅ Export countWords: Available');
|
|
});
|
|
|
|
test('Export - formatDuration', () => {
|
|
assert.ok(Utils.formatDuration !== undefined, 'Export formatDuration should be available');
|
|
console.log('✅ Export formatDuration: Available');
|
|
});
|
|
|
|
test('Export - withRetry', () => {
|
|
assert.ok(Utils.withRetry !== undefined, 'Export withRetry should be available');
|
|
console.log('✅ Export withRetry: Available');
|
|
});
|
|
|
|
test('Export - isValidEmail', () => {
|
|
assert.ok(Utils.isValidEmail !== undefined, 'Export isValidEmail should be available');
|
|
console.log('✅ Export isValidEmail: Available');
|
|
});
|
|
|
|
test('Export - generateId', () => {
|
|
assert.ok(Utils.generateId !== undefined, 'Export generateId should be available');
|
|
console.log('✅ Export generateId: Available');
|
|
});
|
|
|
|
test('Export - truncate', () => {
|
|
assert.ok(Utils.truncate !== undefined, 'Export truncate should be available');
|
|
console.log('✅ Export truncate: Available');
|
|
});
|
|
|
|
|
|
// Test d'intégration général
|
|
test('Integration - Module health check', async () => {
|
|
try {
|
|
// Vérification exports
|
|
const exports = Object.keys(Utils);
|
|
assert.ok(exports.length > 0, 'Module should export functions');
|
|
|
|
console.log(`✅ Utils: ${exports.length} exports available`);
|
|
console.log('📋 Exports:', exports.join(', '));
|
|
|
|
} catch (error) {
|
|
console.error('❌ Integration test failed:', error.message);
|
|
throw error;
|
|
}
|
|
});
|
|
}); |