2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-04 11:31:14 -05:00
|
|
|
import { unitTest, assert, assertEquals } from "./test_util.ts";
|
2018-09-10 05:48:36 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
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());
|
|
|
|
}
|
|
|
|
);
|
2018-09-10 05:48:36 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
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);
|
|
|
|
}
|
2018-09-14 15:30:43 -04:00
|
|
|
}
|
2020-03-04 11:31:14 -05:00
|
|
|
);
|
2018-09-14 15:30:43 -04:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest({ perms: { write: false } }, function mkdirSyncPerm(): void {
|
2018-09-10 05:48:36 -04:00
|
|
|
let err;
|
|
|
|
try {
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno.mkdirSync("/baddir");
|
2018-09-10 05:48:36 -04:00
|
|
|
} catch (e) {
|
|
|
|
err = e;
|
|
|
|
}
|
2020-02-24 15:48:35 -05:00
|
|
|
assert(err instanceof Deno.errors.PermissionDenied);
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(err.name, "PermissionDenied");
|
2018-09-10 05:48:36 -04:00
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
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());
|
|
|
|
}
|
|
|
|
);
|
2019-01-17 23:39:06 -05:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
unitTest({ perms: { write: true } }, function mkdirErrIfExists(): void {
|
2019-01-17 23:39:06 -05:00
|
|
|
let err;
|
|
|
|
try {
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno.mkdirSync(".");
|
2019-01-17 23:39:06 -05:00
|
|
|
} catch (e) {
|
|
|
|
err = e;
|
|
|
|
}
|
2020-02-24 15:48:35 -05:00
|
|
|
assert(err instanceof Deno.errors.AlreadyExists);
|
2019-01-17 23:39:06 -05:00
|
|
|
});
|
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
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());
|
|
|
|
}
|
|
|
|
);
|
2019-01-17 23:39:06 -05:00
|
|
|
|
2020-03-04 11:31:14 -05:00
|
|
|
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());
|
|
|
|
}
|
|
|
|
);
|