mirror of
https://github.com/denoland/deno.git
synced 2024-12-23 07:44:48 -05:00
8d96dffa41
Rewrite "testPerm" helper function used for testing of internal runtime code. It's been renamed to "unitTest" and provides API that is extensible in the future by accepting optional "UnitTestOptions" argument. "test" helper was also removed and replaced by overloaded version of "unitTest" that takes only function argument. "UnitTestOptions" currently supports "perms" and "skip" options, where former works exactly as first argument to "testPerm" did, while the latter allows to conditionally skip tests.
27 lines
727 B
TypeScript
27 lines
727 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
import { unitTest, assert } from "./test_util.ts";
|
|
|
|
unitTest(async function permissionInvalidName(): Promise<void> {
|
|
let thrown = false;
|
|
try {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
await Deno.permissions.query({ name: "foo" as any });
|
|
} catch (e) {
|
|
thrown = true;
|
|
assert(e instanceof Error);
|
|
} finally {
|
|
assert(thrown);
|
|
}
|
|
});
|
|
|
|
unitTest(async function permissionNetInvalidUrl(): Promise<void> {
|
|
let thrown = false;
|
|
try {
|
|
await Deno.permissions.query({ name: "net", url: ":" });
|
|
} catch (e) {
|
|
thrown = true;
|
|
assert(e instanceof URIError);
|
|
} finally {
|
|
assert(thrown);
|
|
}
|
|
});
|