mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04: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.
76 lines
2 KiB
TypeScript
76 lines
2 KiB
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
import { unitTest, assert, assertEquals } from "./test_util.ts";
|
|
|
|
unitTest(
|
|
{ perms: { read: true, write: true } },
|
|
function mkdirSyncSuccess(): void {
|
|
const path = Deno.makeTempDirSync() + "/dir";
|
|
Deno.mkdirSync(path);
|
|
const pathInfo = Deno.statSync(path);
|
|
assert(pathInfo.isDirectory());
|
|
}
|
|
);
|
|
|
|
unitTest(
|
|
{ perms: { read: true, write: true } },
|
|
function mkdirSyncMode(): void {
|
|
const path = Deno.makeTempDirSync() + "/dir";
|
|
Deno.mkdirSync(path, { mode: 0o755 }); // no perm for x
|
|
const pathInfo = Deno.statSync(path);
|
|
if (pathInfo.mode !== null) {
|
|
// Skip windows
|
|
assertEquals(pathInfo.mode & 0o777, 0o755);
|
|
}
|
|
}
|
|
);
|
|
|
|
unitTest({ perms: { write: false } }, function mkdirSyncPerm(): void {
|
|
let err;
|
|
try {
|
|
Deno.mkdirSync("/baddir");
|
|
} catch (e) {
|
|
err = e;
|
|
}
|
|
assert(err instanceof Deno.errors.PermissionDenied);
|
|
assertEquals(err.name, "PermissionDenied");
|
|
});
|
|
|
|
unitTest(
|
|
{ perms: { read: true, write: true } },
|
|
async function mkdirSuccess(): Promise<void> {
|
|
const path = Deno.makeTempDirSync() + "/dir";
|
|
await Deno.mkdir(path);
|
|
const pathInfo = Deno.statSync(path);
|
|
assert(pathInfo.isDirectory());
|
|
}
|
|
);
|
|
|
|
unitTest({ perms: { write: true } }, function mkdirErrIfExists(): void {
|
|
let err;
|
|
try {
|
|
Deno.mkdirSync(".");
|
|
} catch (e) {
|
|
err = e;
|
|
}
|
|
assert(err instanceof Deno.errors.AlreadyExists);
|
|
});
|
|
|
|
unitTest(
|
|
{ perms: { read: true, write: true } },
|
|
function mkdirSyncRecursive(): void {
|
|
const path = Deno.makeTempDirSync() + "/nested/directory";
|
|
Deno.mkdirSync(path, { recursive: true });
|
|
const pathInfo = Deno.statSync(path);
|
|
assert(pathInfo.isDirectory());
|
|
}
|
|
);
|
|
|
|
unitTest(
|
|
{ perms: { read: true, write: true } },
|
|
async function mkdirRecursive(): Promise<void> {
|
|
const path = Deno.makeTempDirSync() + "/nested/directory";
|
|
await Deno.mkdir(path, { recursive: true });
|
|
const pathInfo = Deno.statSync(path);
|
|
assert(pathInfo.isDirectory());
|
|
}
|
|
);
|