test(itest): add CDN TCP connection hangs test (#28301)

This commit is contained in:
Max Schmitt 2023-11-22 22:39:59 +01:00 committed by GitHub
parent 2b4d51b1e8
commit 958e45316e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,6 +15,7 @@
*/
import { test, expect } from './npmTest';
import http from 'http';
import net from 'net';
import type { AddressInfo } from 'net';
const CDNS = [
@ -95,3 +96,35 @@ test(`npx playwright install should not hang when CDN closes the connection`, as
await new Promise(resolve => server.close(resolve));
}
});
test(`npx playwright install should not hang when CDN TCP connection stalls`, async ({ exec }) => {
let retryCount = 0;
const socketsToDestroy = [];
const server = net.createServer(socket => {
socketsToDestroy.push(socket);
++retryCount;
socket.write('HTTP/1.1 200 OK\r\n');
socket.write('Content-Length: 100000000\r\n');
socket.write('Content-Type: application/zip\r\n');
socket.write('\r\n');
socket.write('a');
});
await new Promise<void>(resolve => server.listen(0, resolve));
try {
await exec('npm i playwright');
const result = await exec('npx playwright install', {
env: {
PLAYWRIGHT_DOWNLOAD_HOST: `http://127.0.0.1:${(server.address() as AddressInfo).port}`,
DEBUG: 'pw:install',
PLAYWRIGHT_DOWNLOAD_CONNECTION_TIMEOUT: '1000',
},
expectToExitWithError: true
});
expect(retryCount).toBe(3);
expect([...result.matchAll(/timed out after/g)]).toHaveLength(3);
} finally {
for (const socket of socketsToDestroy)
socket.destroy();
await new Promise(resolve => server.close(resolve));
}
});