2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 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-04-21 16:40:10 -04:00
|
|
|
testPerm({ read: true, write: true }, function mkdirSyncSuccess(): void {
|
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-04-21 16:40:10 -04:00
|
|
|
testPerm({ read: true, write: true }, function mkdirSyncMode(): void {
|
2019-02-12 10:08:56 -05:00
|
|
|
const path = Deno.makeTempDirSync() + "/dir";
|
2020-01-07 14:14:33 -05:00
|
|
|
Deno.mkdirSync(path, { mode: 0o755 }); // no perm for x
|
2019-02-12 10:08:56 -05:00
|
|
|
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
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-04-21 16:40:10 -04:00
|
|
|
testPerm({ 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;
|
|
|
|
}
|
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-04-21 16:40:10 -04:00
|
|
|
testPerm({ read: true, write: true }, async function mkdirSuccess(): Promise<
|
|
|
|
void
|
|
|
|
> {
|
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
|
|
|
|
2019-04-21 16:40:10 -04:00
|
|
|
testPerm({ 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;
|
|
|
|
}
|
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-04-21 16:40:10 -04:00
|
|
|
testPerm({ read: true, write: true }, function mkdirSyncRecursive(): void {
|
2019-02-12 10:08:56 -05:00
|
|
|
const path = Deno.makeTempDirSync() + "/nested/directory";
|
2020-01-07 14:14:33 -05:00
|
|
|
Deno.mkdirSync(path, { recursive: true });
|
2019-02-12 10:08:56 -05:00
|
|
|
const pathInfo = Deno.statSync(path);
|
2019-01-17 23:39:06 -05:00
|
|
|
assert(pathInfo.isDirectory());
|
|
|
|
});
|
|
|
|
|
2019-04-21 16:40:10 -04:00
|
|
|
testPerm({ read: true, write: true }, async function mkdirRecursive(): Promise<
|
|
|
|
void
|
|
|
|
> {
|
2019-02-12 10:08:56 -05:00
|
|
|
const path = Deno.makeTempDirSync() + "/nested/directory";
|
2020-01-07 14:14:33 -05:00
|
|
|
await Deno.mkdir(path, { recursive: true });
|
2019-02-12 10:08:56 -05:00
|
|
|
const pathInfo = Deno.statSync(path);
|
2019-01-17 23:39:06 -05:00
|
|
|
assert(pathInfo.isDirectory());
|
|
|
|
});
|