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 { testPerm, assert, assertEquals } from "./test_util.ts";
|
2018-09-10 05:48:36 -04:00
|
|
|
|
2019-02-08 15:59:38 -05:00
|
|
|
testPerm({ read: true, write: true }, function mkdirSyncSuccess() {
|
2019-02-12 10:08:56 -05:00
|
|
|
const path = Deno.makeTempDirSync() + "/dir";
|
|
|
|
Deno.mkdirSync(path);
|
|
|
|
const pathInfo = Deno.statSync(path);
|
2018-09-10 05:48:36 -04:00
|
|
|
assert(pathInfo.isDirectory());
|
|
|
|
});
|
|
|
|
|
2019-02-08 15:59:38 -05:00
|
|
|
testPerm({ read: true, write: true }, function mkdirSyncMode() {
|
2019-02-12 10:08:56 -05:00
|
|
|
const path = Deno.makeTempDirSync() + "/dir";
|
|
|
|
Deno.mkdirSync(path, false, 0o755); // no perm for x
|
|
|
|
const pathInfo = Deno.statSync(path);
|
2018-09-16 16:35:16 -04:00
|
|
|
if (pathInfo.mode !== null) {
|
|
|
|
// Skip windows
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(pathInfo.mode & 0o777, 0o755);
|
2018-09-14 15:30:43 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-09-10 05:48:36 -04:00
|
|
|
testPerm({ write: false }, function mkdirSyncPerm() {
|
|
|
|
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;
|
|
|
|
}
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(err.kind, Deno.ErrorKind.PermissionDenied);
|
|
|
|
assertEquals(err.name, "PermissionDenied");
|
2018-09-10 05:48:36 -04:00
|
|
|
});
|
|
|
|
|
2019-02-08 15:59:38 -05:00
|
|
|
testPerm({ read: true, write: true }, async function mkdirSuccess() {
|
2019-02-12 10:08:56 -05:00
|
|
|
const path = Deno.makeTempDirSync() + "/dir";
|
|
|
|
await Deno.mkdir(path);
|
|
|
|
const pathInfo = Deno.statSync(path);
|
2018-09-10 05:48:36 -04:00
|
|
|
assert(pathInfo.isDirectory());
|
|
|
|
});
|
2019-01-17 23:39:06 -05:00
|
|
|
|
|
|
|
testPerm({ write: true }, function mkdirErrIfExists() {
|
|
|
|
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;
|
|
|
|
}
|
2019-03-06 20:48:46 -05:00
|
|
|
assertEquals(err.kind, Deno.ErrorKind.AlreadyExists);
|
|
|
|
assertEquals(err.name, "AlreadyExists");
|
2019-01-17 23:39:06 -05:00
|
|
|
});
|
|
|
|
|
2019-02-08 15:59:38 -05:00
|
|
|
testPerm({ read: true, write: true }, function mkdirSyncRecursive() {
|
2019-02-12 10:08:56 -05:00
|
|
|
const path = Deno.makeTempDirSync() + "/nested/directory";
|
|
|
|
Deno.mkdirSync(path, true);
|
|
|
|
const pathInfo = Deno.statSync(path);
|
2019-01-17 23:39:06 -05:00
|
|
|
assert(pathInfo.isDirectory());
|
|
|
|
});
|
|
|
|
|
2019-02-08 15:59:38 -05:00
|
|
|
testPerm({ read: true, write: true }, async function mkdirRecursive() {
|
2019-02-12 10:08:56 -05:00
|
|
|
const path = Deno.makeTempDirSync() + "/nested/directory";
|
|
|
|
await Deno.mkdir(path, true);
|
|
|
|
const pathInfo = Deno.statSync(path);
|
2019-01-17 23:39:06 -05:00
|
|
|
assert(pathInfo.isDirectory());
|
|
|
|
});
|