2019-01-21 14:03:30 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-03-06 20:48:46 -05:00
|
|
|
import { test, testPerm, assertEquals } from "./test_util.ts";
|
2018-10-30 15:58:55 -04:00
|
|
|
|
|
|
|
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
|
|
|
});
|
|
|
|
|
|
|
|
testPerm({ net: true }, async function resourcesNet() {
|
|
|
|
const addr = "127.0.0.1:4501";
|
2019-02-12 10:08:56 -05:00
|
|
|
const listener = Deno.listen("tcp", addr);
|
2018-10-30 15:58:55 -04:00
|
|
|
|
2019-02-12 10:08:56 -05:00
|
|
|
const dialerConn = await Deno.dial("tcp", addr);
|
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-03-06 20:48:46 -05:00
|
|
|
assertEquals(Object.values(res).filter(r => r === "tcpListener").length, 1);
|
|
|
|
assertEquals(Object.values(res).filter(r => r === "tcpStream").length, 2);
|
2018-10-30 15:58:55 -04:00
|
|
|
|
|
|
|
listenerConn.close();
|
|
|
|
dialerConn.close();
|
|
|
|
listener.close();
|
|
|
|
});
|
|
|
|
|
2019-02-08 15:59:38 -05:00
|
|
|
testPerm({ read: true }, async function resourcesFile() {
|
2019-02-12 10:08:56 -05:00
|
|
|
const resourcesBefore = Deno.resources();
|
|
|
|
await Deno.open("tests/hello.txt");
|
|
|
|
const resourcesAfter = Deno.resources();
|
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
|
|
|
|
);
|
|
|
|
const newRid = Object.keys(resourcesAfter).find(rid => {
|
|
|
|
return !resourcesBefore.hasOwnProperty(rid);
|
|
|
|
});
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(resourcesAfter[newRid], "fsFile");
|
2018-10-30 15:58:55 -04:00
|
|
|
});
|