From: Yadd Date: Fri, 8 Nov 2024 04:35:57 +0000 (+0000) Subject: fix tap test X-Git-Tag: archive/raspbian/7.3.0+dfsg1+_cs24.12.11-1+rpi1~12 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d130f11cfe5f05cf8be7220f33fd14a39fe1ecd1;p=node-undici.git fix tap test Forwarded: no Last-Update: 2022-05-17 Gbp-Pq: Name fix-for-test-tap.patch --- diff --git a/test/unix.js b/test/unix.js index 019f654..ffaeca0 100644 --- a/test/unix.js +++ b/test/unix.js @@ -94,48 +94,4 @@ if (process.platform !== 'win32') { }) }) - test('https get with tls opts', (t) => { - t.plan(6) - - const server = https.createServer(pem, (req, res) => { - t.equal('/', req.url) - t.equal('GET', req.method) - res.setHeader('content-type', 'text/plain') - res.end('hello') - }) - t.teardown(server.close.bind(server)) - - try { - fs.unlinkSync('/var/tmp/test3.sock') - } catch (err) { - - } - - server.listen('/var/tmp/test8.sock', () => { - const client = new Client({ - hostname: 'localhost', - protocol: 'https:' - }, { - socketPath: '/var/tmp/test8.sock', - tls: { - rejectUnauthorized: false - } - }) - t.teardown(client.close.bind(client)) - - client.request({ path: '/', method: 'GET' }, (err, data) => { - t.error(err) - const { statusCode, headers, body } = data - t.equal(statusCode, 200) - t.equal(headers['content-type'], 'text/plain') - const bufs = [] - body.on('data', (buf) => { - bufs.push(buf) - }) - body.on('end', () => { - t.equal('hello', Buffer.concat(bufs).toString('utf8')) - }) - }) - }) - }) }