2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-13 15:57:32 +01:00
|
|
|
import { unitTest, assertEquals, assert } from "./test_util.ts";
|
2018-10-30 20:58:55 +01:00
|
|
|
|
2020-05-14 03:59:56 -07:00
|
|
|
unitTest(function resourcesCloseBadArgs(): void {
|
|
|
|
let err;
|
|
|
|
try {
|
|
|
|
Deno.close((null as unknown) as number);
|
|
|
|
} catch (e) {
|
|
|
|
err = e;
|
|
|
|
}
|
|
|
|
assert(err instanceof Deno.errors.InvalidData);
|
|
|
|
});
|
|
|
|
|
2020-03-04 17:31:14 +01:00
|
|
|
unitTest(function resourcesStdio(): void {
|
2019-02-13 02:08:56 +11:00
|
|
|
const res = Deno.resources();
|
2018-10-30 20:58:55 +01:00
|
|
|
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(res[0], "stdin");
|
|
|
|
assertEquals(res[1], "stdout");
|
|
|
|
assertEquals(res[2], "stderr");
|
2018-10-30 20:58:55 +01:00
|
|
|
});
|
|
|
|
|
2020-03-04 17:31:14 +01:00
|
|
|
unitTest({ perms: { net: true } }, async function resourcesNet(): Promise<
|
|
|
|
void
|
|
|
|
> {
|
2019-09-20 18:32:18 -04:00
|
|
|
const listener = Deno.listen({ port: 4501 });
|
2020-01-18 18:35:12 +01:00
|
|
|
const dialerConn = await Deno.connect({ port: 4501 });
|
2018-10-30 20:58:55 +01:00
|
|
|
const listenerConn = await listener.accept();
|
|
|
|
|
2019-02-13 02:08:56 +11:00
|
|
|
const res = Deno.resources();
|
2019-04-21 16:40:10 -04:00
|
|
|
assertEquals(
|
|
|
|
Object.values(res).filter((r): boolean => r === "tcpListener").length,
|
|
|
|
1
|
|
|
|
);
|
2020-03-13 15:57:32 +01:00
|
|
|
const tcpStreams = Object.values(res).filter(
|
|
|
|
(r): boolean => r === "tcpStream"
|
2019-04-21 16:40:10 -04:00
|
|
|
);
|
2020-03-13 15:57:32 +01:00
|
|
|
assert(tcpStreams.length >= 2);
|
2018-10-30 20:58:55 +01:00
|
|
|
|
|
|
|
listenerConn.close();
|
|
|
|
dialerConn.close();
|
|
|
|
listener.close();
|
|
|
|
});
|
|
|
|
|
2020-03-04 17:31:14 +01:00
|
|
|
unitTest({ perms: { read: true } }, async function resourcesFile(): Promise<
|
|
|
|
void
|
|
|
|
> {
|
2019-02-13 02:08:56 +11:00
|
|
|
const resourcesBefore = Deno.resources();
|
2020-02-29 18:45:47 +01:00
|
|
|
const f = await Deno.open("cli/tests/hello.txt");
|
2019-02-13 02:08:56 +11:00
|
|
|
const resourcesAfter = Deno.resources();
|
2020-02-29 18:45:47 +01:00
|
|
|
f.close();
|
2018-10-30 20:58:55 +01:00
|
|
|
|
|
|
|
// check that exactly one new resource (file) was added
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(
|
2018-10-30 20:58:55 +01:00
|
|
|
Object.keys(resourcesAfter).length,
|
|
|
|
Object.keys(resourcesBefore).length + 1
|
|
|
|
);
|
2020-02-19 21:36:18 +01:00
|
|
|
const newRid = +Object.keys(resourcesAfter).find((rid): boolean => {
|
2019-11-14 05:42:34 +11:00
|
|
|
return !resourcesBefore.hasOwnProperty(rid);
|
2020-02-19 21:36:18 +01:00
|
|
|
})!;
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(resourcesAfter[newRid], "fsFile");
|
2018-10-30 20:58:55 +01:00
|
|
|
});
|