2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2024-06-04 19:09:29 -04:00
|
|
|
|
|
|
|
// deno-lint-ignore-file no-deprecated-deno-api
|
|
|
|
|
2024-08-14 16:50:06 -04:00
|
|
|
import {
|
|
|
|
assert,
|
|
|
|
assertEquals,
|
|
|
|
assertThrows,
|
|
|
|
DENO_FUTURE,
|
|
|
|
} from "./test_util.ts";
|
2018-10-30 15:58:55 -04:00
|
|
|
|
2023-05-22 15:35:59 -04:00
|
|
|
const listenPort = 4505;
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(function resourcesCloseBadArgs() {
|
2020-06-24 18:57:08 -04:00
|
|
|
assertThrows(() => {
|
2020-05-14 06:59:56 -04:00
|
|
|
Deno.close((null as unknown) as number);
|
2020-09-17 12:09:50 -04:00
|
|
|
}, TypeError);
|
2020-05-14 06:59:56 -04:00
|
|
|
});
|
|
|
|
|
2024-08-14 16:50:06 -04:00
|
|
|
Deno.test({ ignore: DENO_FUTURE }, function resourcesStdio() {
|
2019-02-12 10:08:56 -05:00
|
|
|
const res = Deno.resources();
|
2018-10-30 15:58:55 -04:00
|
|
|
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(res[0], "stdin");
|
|
|
|
assertEquals(res[1], "stdout");
|
|
|
|
assertEquals(res[2], "stderr");
|
2018-10-30 15:58:55 -04:00
|
|
|
});
|
|
|
|
|
2024-08-14 16:50:06 -04:00
|
|
|
Deno.test(
|
|
|
|
{ ignore: DENO_FUTURE, permissions: { net: true } },
|
|
|
|
async function resourcesNet() {
|
|
|
|
const listener = Deno.listen({ port: listenPort });
|
|
|
|
const dialerConn = await Deno.connect({ port: listenPort });
|
|
|
|
const listenerConn = await listener.accept();
|
2018-10-30 15:58:55 -04:00
|
|
|
|
2024-08-14 16:50:06 -04:00
|
|
|
const res = Deno.resources();
|
|
|
|
assertEquals(
|
|
|
|
Object.values(res).filter((r): boolean => r === "tcpListener").length,
|
|
|
|
1,
|
|
|
|
);
|
|
|
|
const tcpStreams = Object.values(res).filter(
|
|
|
|
(r): boolean => r === "tcpStream",
|
|
|
|
);
|
|
|
|
assert(tcpStreams.length >= 2);
|
2018-10-30 15:58:55 -04:00
|
|
|
|
2024-08-14 16:50:06 -04:00
|
|
|
listenerConn.close();
|
|
|
|
dialerConn.close();
|
|
|
|
listener.close();
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
Deno.test(
|
|
|
|
{ ignore: DENO_FUTURE, permissions: { read: true } },
|
|
|
|
async function resourcesFile() {
|
|
|
|
const resourcesBefore = Deno.resources();
|
|
|
|
const f = await Deno.open("tests/testdata/assets/hello.txt");
|
|
|
|
const resourcesAfter = Deno.resources();
|
|
|
|
f.close();
|
|
|
|
|
|
|
|
// check that exactly one new resource (file) was added
|
|
|
|
assertEquals(
|
|
|
|
Object.keys(resourcesAfter).length,
|
|
|
|
Object.keys(resourcesBefore).length + 1,
|
|
|
|
);
|
|
|
|
const newRid = +Object.keys(resourcesAfter).find((rid): boolean => {
|
|
|
|
return !Object.prototype.hasOwnProperty.call(resourcesBefore, rid);
|
|
|
|
})!;
|
|
|
|
assertEquals(resourcesAfter[newRid], "fsFile");
|
|
|
|
},
|
|
|
|
);
|