0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-13 09:16:03 -05:00

test: remove one of 'node_unit_tests::tls_test' tests (#27985)

It will be moved to `npm_smoke_tests` repo instead
This commit is contained in:
Bartek Iwańczuk 2025-02-06 17:13:07 +01:00
parent daddfd9b11
commit b32537f210
No known key found for this signature in database
GPG key ID: 0C6BCDDC3B3AD750

View file

@ -12,7 +12,6 @@ import { fromFileUrl, join } from "@std/path";
import * as tls from "node:tls";
import * as net from "node:net";
import * as stream from "node:stream";
import { text } from "node:stream/consumers";
import { execCode } from "../unit/test_util.ts";
const tlsTestdataDir = fromFileUrl(
@ -98,18 +97,6 @@ Connection: close
assertEquals(bodyText, "hello");
});
// Regression at https://github.com/denoland/deno/issues/27652
Deno.test("tls.connect makes tls connection to example.com", async () => {
const socket = tls.connect(443, "example.com");
await new Promise((resolve) => {
socket.on("secureConnect", resolve);
});
socket.write(
"GET / HTTP/1.1\r\nHost: example.com\r\nConnection: close\r\n\r\n",
);
assertStringIncludes(await text(socket), "<title>Example Domain</title>");
});
// https://github.com/denoland/deno/pull/20120
Deno.test("tls.connect mid-read tcp->tls upgrade", async () => {
const { promise, resolve } = Promise.withResolvers<void>();