dcrouter/test/suite/smtpclient_performance/test.cperf-06.caching-strategies.ts
2025-05-26 16:14:49 +00:00

191 lines
5.4 KiB
TypeScript

import { tap, expect } from '@git.zone/tstest/tapbundle';
import { startTestServer, stopTestServer, type ITestServer } from '../../helpers/server.loader.js';
import { createSmtpClient } from '../../../ts/mail/delivery/smtpclient/index.js';
import { Email } from '../../../ts/mail/core/classes.email.js';
tap.test('setup - start SMTP server for caching tests', async () => {
// Just a placeholder to ensure server starts properly
});
tap.test('CPERF-06: caching strategies - connection caching', async () => {
const testServer = await startTestServer({
port: 2525,
tlsEnabled: false,
authRequired: false
});
console.log('Testing connection caching strategies...');
// Create client for testing connection reuse
const client = createSmtpClient({
host: 'localhost',
port: 2525,
secure: false
});
// First batch - establish connections
console.log('Sending first batch to establish connections...');
const firstBatchStart = Date.now();
const firstBatch = Array(3).fill(null).map((_, i) =>
new Email({
from: 'sender@example.com',
to: [`cached${i}@example.com`],
subject: `Cache test ${i}`,
text: `Testing connection caching - message ${i}`,
})
);
// Send emails sequentially
for (const email of firstBatch) {
const result = await client.sendMail(email);
expect(result.success).toBeTrue();
}
const firstBatchTime = Date.now() - firstBatchStart;
// Second batch - should reuse connection
console.log('Sending second batch using same connection...');
const secondBatchStart = Date.now();
const secondBatch = Array(3).fill(null).map((_, i) =>
new Email({
from: 'sender@example.com',
to: [`cached2-${i}@example.com`],
subject: `Cache test 2-${i}`,
text: `Testing cached connections - message ${i}`,
})
);
// Send emails sequentially
for (const email of secondBatch) {
const result = await client.sendMail(email);
expect(result.success).toBeTrue();
}
const secondBatchTime = Date.now() - secondBatchStart;
console.log(`First batch: ${firstBatchTime}ms`);
console.log(`Second batch: ${secondBatchTime}ms`);
// Both batches should complete successfully
expect(firstBatchTime).toBeGreaterThan(0);
expect(secondBatchTime).toBeGreaterThan(0);
await client.close();
await stopTestServer(testServer);
});
tap.test('CPERF-06: caching strategies - server capability caching', async () => {
const testServer = await startTestServer({
port: 2526,
tlsEnabled: false,
authRequired: false
});
console.log('Testing server capability caching...');
const client = createSmtpClient({
host: 'localhost',
port: 2526,
secure: false
});
// First email - discovers capabilities
console.log('First email - discovering server capabilities...');
const firstStart = Date.now();
const email1 = new Email({
from: 'sender@example.com',
to: ['recipient1@example.com'],
subject: 'Capability test 1',
text: 'Testing capability discovery',
});
const result1 = await client.sendMail(email1);
expect(result1.success).toBeTrue();
const firstTime = Date.now() - firstStart;
// Second email - uses cached capabilities
console.log('Second email - using cached capabilities...');
const secondStart = Date.now();
const email2 = new Email({
from: 'sender@example.com',
to: ['recipient2@example.com'],
subject: 'Capability test 2',
text: 'Testing cached capabilities',
});
const result2 = await client.sendMail(email2);
expect(result2.success).toBeTrue();
const secondTime = Date.now() - secondStart;
console.log(`First email (capability discovery): ${firstTime}ms`);
console.log(`Second email (cached capabilities): ${secondTime}ms`);
// Both should complete quickly
expect(firstTime).toBeLessThan(1000);
expect(secondTime).toBeLessThan(1000);
await client.close();
await stopTestServer(testServer);
});
tap.test('CPERF-06: caching strategies - message batching', async () => {
const testServer = await startTestServer({
port: 2527,
tlsEnabled: false,
authRequired: false
});
console.log('Testing message batching for cache efficiency...');
const client = createSmtpClient({
host: 'localhost',
port: 2527,
secure: false
});
// Test sending messages in batches
const batchSizes = [2, 3, 4];
for (const batchSize of batchSizes) {
console.log(`\nTesting batch size: ${batchSize}`);
const batchStart = Date.now();
const emails = Array(batchSize).fill(null).map((_, i) =>
new Email({
from: 'sender@example.com',
to: [`batch${batchSize}-${i}@example.com`],
subject: `Batch ${batchSize} message ${i}`,
text: `Testing batching strategies - batch size ${batchSize}`,
})
);
// Send emails sequentially
for (const email of emails) {
const result = await client.sendMail(email);
expect(result.success).toBeTrue();
}
const batchTime = Date.now() - batchStart;
const avgTime = batchTime / batchSize;
console.log(` Batch completed in ${batchTime}ms`);
console.log(` Average time per message: ${avgTime.toFixed(1)}ms`);
// All batches should complete efficiently
expect(avgTime).toBeLessThan(1000);
}
await client.close();
await stopTestServer(testServer);
});
tap.test('cleanup - stop SMTP server', async () => {
// Cleanup is handled in individual tests
});
tap.start();