2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-13 10:57:32 -04:00
|
|
|
import { unitTest, assertEquals, assert } from "./test_util.ts";
|
2018-10-30 15:58:55 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest(function resourcesStdio(): void {
|
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
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05: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 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,
|
|
|
|
1
|
|
|
|
);
|
2020-03-13 10:57:32 -04:00
|
|
|
const tcpStreams = Object.values(res).filter(
|
|
|
|
(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();
|
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest({ perms: { read: true } }, async function resourcesFile(): Promise<
|
|
|
|
void
|
|
|
|
> {
|
2019-02-12 10:08:56 -05:00
|
|
|
const resourcesBefore = Deno.resources();
|
2020-02-29 12:45:47 -05:00
|
|
|
const f = await Deno.open("cli/tests/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,
|
|
|
|
Object.keys(resourcesBefore).length + 1
|
|
|
|
);
|
2020-02-19 15:36:18 -05:00
|
|
|
const newRid = +Object.keys(resourcesAfter).find((rid): boolean => {
|
2019-11-13 13:42:34 -05:00
|
|
|
return !resourcesBefore.hasOwnProperty(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
|
|
|
});
|