2022-01-20 02:10:16 -05:00
|
|
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-11-23 11:45:18 -05:00
|
|
|
import { assert, assertEquals, assertThrows } from "./test_util.ts";
|
2018-10-30 15:58:55 -04:00
|
|
|
|
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
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test(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
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { net: true } }, async function resourcesNet() {
|
2019-09-20 18:32:18 -04:00
|
|
|
const listener = Deno.listen({ port: 4501 });
|
2020-01-18 12:35:12 -05:00
|
|
|
const dialerConn = await Deno.connect({ port: 4501 });
|
2018-10-30 15:58:55 -04:00
|
|
|
const listenerConn = await listener.accept();
|
|
|
|
|
2019-02-12 10:08:56 -05:00
|
|
|
const res = Deno.resources();
|
2019-04-21 16:40:10 -04:00
|
|
|
assertEquals(
|
|
|
|
Object.values(res).filter((r): boolean => r === "tcpListener").length,
|
2020-07-14 15:24:17 -04:00
|
|
|
1,
|
2019-04-21 16:40:10 -04:00
|
|
|
);
|
2020-03-13 10:57:32 -04:00
|
|
|
const tcpStreams = Object.values(res).filter(
|
2020-07-14 15:24:17 -04:00
|
|
|
(r): boolean => r === "tcpStream",
|
2019-04-21 16:40:10 -04:00
|
|
|
);
|
2020-03-13 10:57:32 -04:00
|
|
|
assert(tcpStreams.length >= 2);
|
2018-10-30 15:58:55 -04:00
|
|
|
|
|
|
|
listenerConn.close();
|
|
|
|
dialerConn.close();
|
|
|
|
listener.close();
|
|
|
|
});
|
|
|
|
|
2021-11-23 11:45:18 -05:00
|
|
|
Deno.test({ permissions: { read: true } }, async function resourcesFile() {
|
2019-02-12 10:08:56 -05:00
|
|
|
const resourcesBefore = Deno.resources();
|
2021-08-11 10:20:47 -04:00
|
|
|
const f = await Deno.open("cli/tests/testdata/hello.txt");
|
2019-02-12 10:08:56 -05:00
|
|
|
const resourcesAfter = Deno.resources();
|
2020-02-29 12:45:47 -05:00
|
|
|
f.close();
|
2018-10-30 15:58:55 -04:00
|
|
|
|
|
|
|
// check that exactly one new resource (file) was added
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(
|
2018-10-30 15:58:55 -04:00
|
|
|
Object.keys(resourcesAfter).length,
|
2020-07-14 15:24:17 -04:00
|
|
|
Object.keys(resourcesBefore).length + 1,
|
2018-10-30 15:58:55 -04:00
|
|
|
);
|
2020-02-19 15:36:18 -05:00
|
|
|
const newRid = +Object.keys(resourcesAfter).find((rid): boolean => {
|
2021-11-01 16:22:27 -04:00
|
|
|
return !Object.prototype.hasOwnProperty.call(resourcesBefore, rid);
|
2020-02-19 15:36:18 -05:00
|
|
|
})!;
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(resourcesAfter[newRid], "fsFile");
|
2018-10-30 15:58:55 -04:00
|
|
|
});
|