mirror of
https://github.com/denoland/deno.git
synced 2024-12-12 10:37:52 -05:00
ace1202227
Towards #22079
36 lines
1 KiB
JavaScript
36 lines
1 KiB
JavaScript
console.log("window is", globalThis.window);
|
|
|
|
// TCP
|
|
// Since these tests may run in parallel, ensure this port is unique to this file
|
|
const tcpPort = 4509;
|
|
const tcpListener = Deno.listen({ port: tcpPort });
|
|
console.log("Deno.Listener.prototype.rid is", tcpListener.rid);
|
|
tcpListener.close();
|
|
|
|
// TLS
|
|
// Since these tests may run in parallel, ensure this port is unique to this file
|
|
const tlsPort = 4510;
|
|
const cert = Deno.readTextFileSync(
|
|
new URL("../../../testdata/tls/localhost.crt", import.meta.url),
|
|
);
|
|
const key = Deno.readTextFileSync(
|
|
new URL("../../../testdata/tls/localhost.key", import.meta.url),
|
|
);
|
|
const tlsListener = Deno.listenTls({ port: tlsPort, cert, key });
|
|
console.log("Deno.TlsListener.prototype.rid is", tlsListener.rid);
|
|
|
|
try {
|
|
new Deno.FsFile(0);
|
|
} catch (error) {
|
|
if (
|
|
error instanceof TypeError &&
|
|
error.message ===
|
|
"`Deno.FsFile` cannot be constructed, use `Deno.open()` or `Deno.openSync()` instead."
|
|
) {
|
|
console.log("Deno.FsFile constructor is illegal");
|
|
}
|
|
}
|
|
|
|
tlsListener.close();
|
|
|
|
self.close();
|