mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
31 lines
953 B
TypeScript
31 lines
953 B
TypeScript
|
import { cwd, lstat, makeTempDirSync, removeAll, FileInfo } from "deno";
|
||
|
import { test, assert } from "https://deno.land/x/testing/testing.ts";
|
||
|
import { mkdirp } from "./mkdirp.ts";
|
||
|
|
||
|
let root: string = `${cwd()}/${Date.now()}`; //makeTempDirSync();
|
||
|
|
||
|
test(async function createsNestedDirs(): Promise<void> {
|
||
|
const leaf: string = `${root}/levelx/levely`;
|
||
|
await mkdirp(leaf);
|
||
|
const info: FileInfo = await lstat(leaf);
|
||
|
assert(info.isDirectory());
|
||
|
await removeAll(root);
|
||
|
});
|
||
|
|
||
|
test(async function handlesAnyPathSeparator(): Promise<void> {
|
||
|
const leaf: string = `${root}\\levelx\\levely`;
|
||
|
await mkdirp(leaf);
|
||
|
const info: FileInfo = await lstat(leaf.replace(/\\/g, "/"));
|
||
|
assert(info.isDirectory());
|
||
|
await removeAll(root);
|
||
|
});
|
||
|
|
||
|
test(async function failsNonDir(): Promise<void> {
|
||
|
try {
|
||
|
await mkdirp("./test.ts/fest.fs");
|
||
|
} catch (err) {
|
||
|
// TODO: assert caught DenoError of kind NOT_A_DIRECTORY or similar
|
||
|
assert(err);
|
||
|
}
|
||
|
});
|