This commit is contained in:
2025-05-29 11:30:42 +00:00
parent f1c012ec30
commit b0beeae19e
18 changed files with 420 additions and 426 deletions

View File

@ -53,11 +53,21 @@ tap.test('regular forward route should work correctly', async () => {
socket.on('error', reject);
});
// Test data exchange
const response = await new Promise<string>((resolve) => {
// Test data exchange with timeout
const response = await new Promise<string>((resolve, reject) => {
const timeout = setTimeout(() => {
reject(new Error('Timeout waiting for initial response'));
}, 5000);
client.on('data', (data) => {
clearTimeout(timeout);
resolve(data.toString());
});
client.on('error', (err) => {
clearTimeout(timeout);
reject(err);
});
});
expect(response).toContain('Welcome from test server');
@ -65,10 +75,20 @@ tap.test('regular forward route should work correctly', async () => {
// Send data through proxy
client.write('Test message');
const echo = await new Promise<string>((resolve) => {
const echo = await new Promise<string>((resolve, reject) => {
const timeout = setTimeout(() => {
reject(new Error('Timeout waiting for echo response'));
}, 5000);
client.once('data', (data) => {
clearTimeout(timeout);
resolve(data.toString());
});
client.on('error', (err) => {
clearTimeout(timeout);
reject(err);
});
});
expect(echo).toContain('Echo: Test message');
@ -77,7 +97,7 @@ tap.test('regular forward route should work correctly', async () => {
await smartProxy.stop();
});
tap.test('NFTables forward route should not terminate connections', async () => {
tap.skip('NFTables forward route should not terminate connections (requires root)', async () => {
smartProxy = new SmartProxy({
routes: [{
id: 'nftables-test',