2019-03-11 14:19:52 -04:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { test } from "../testing/mod.ts";
|
2019-07-08 11:09:23 -04:00
|
|
|
import {
|
|
|
|
assertEquals,
|
|
|
|
assertThrows,
|
|
|
|
assertThrowsAsync
|
|
|
|
} from "../testing/asserts.ts";
|
2019-10-16 14:39:33 -04:00
|
|
|
import * as path from "../path/mod.ts";
|
2019-03-11 14:19:52 -04:00
|
|
|
import { emptyDir, emptyDirSync } from "./empty_dir.ts";
|
|
|
|
|
|
|
|
const testdataDir = path.resolve("fs", "testdata");
|
|
|
|
|
2019-04-24 07:41:23 -04:00
|
|
|
test(async function emptyDirIfItNotExist(): Promise<void> {
|
2019-03-11 14:19:52 -04:00
|
|
|
const testDir = path.join(testdataDir, "empty_dir_test_1");
|
|
|
|
const testNestDir = path.join(testDir, "nest");
|
|
|
|
// empty a dir which not exist. then it will create new one
|
|
|
|
await emptyDir(testNestDir);
|
|
|
|
|
|
|
|
try {
|
|
|
|
// check the dir
|
|
|
|
const stat = await Deno.stat(testNestDir);
|
|
|
|
assertEquals(stat.isDirectory(), true);
|
|
|
|
} finally {
|
|
|
|
// remove the test dir
|
|
|
|
Deno.remove(testDir, { recursive: true });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-04-24 07:41:23 -04:00
|
|
|
test(function emptyDirSyncIfItNotExist(): void {
|
2019-03-11 14:19:52 -04:00
|
|
|
const testDir = path.join(testdataDir, "empty_dir_test_2");
|
|
|
|
const testNestDir = path.join(testDir, "nest");
|
|
|
|
// empty a dir which not exist. then it will create new one
|
|
|
|
emptyDirSync(testNestDir);
|
|
|
|
|
|
|
|
try {
|
|
|
|
// check the dir
|
|
|
|
const stat = Deno.statSync(testNestDir);
|
|
|
|
assertEquals(stat.isDirectory(), true);
|
|
|
|
} finally {
|
|
|
|
// remove the test dir
|
|
|
|
Deno.remove(testDir, { recursive: true });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-04-24 07:41:23 -04:00
|
|
|
test(async function emptyDirIfItExist(): Promise<void> {
|
2019-03-11 14:19:52 -04:00
|
|
|
const testDir = path.join(testdataDir, "empty_dir_test_3");
|
|
|
|
const testNestDir = path.join(testDir, "nest");
|
|
|
|
// create test dir
|
|
|
|
await emptyDir(testNestDir);
|
|
|
|
const testDirFile = path.join(testNestDir, "test.ts");
|
|
|
|
// create test file in test dir
|
|
|
|
await Deno.writeFile(testDirFile, new Uint8Array());
|
|
|
|
|
|
|
|
// before empty: make sure file/directory exist
|
|
|
|
const beforeFileStat = await Deno.stat(testDirFile);
|
|
|
|
assertEquals(beforeFileStat.isFile(), true);
|
|
|
|
|
|
|
|
const beforeDirStat = await Deno.stat(testNestDir);
|
|
|
|
assertEquals(beforeDirStat.isDirectory(), true);
|
|
|
|
|
|
|
|
await emptyDir(testDir);
|
|
|
|
|
|
|
|
// after empty: file/directory have already remove
|
|
|
|
try {
|
|
|
|
// test dir still there
|
|
|
|
const stat = await Deno.stat(testDir);
|
|
|
|
assertEquals(stat.isDirectory(), true);
|
|
|
|
|
|
|
|
// nest directory have been remove
|
2019-04-24 07:41:23 -04:00
|
|
|
await assertThrowsAsync(
|
|
|
|
async (): Promise<void> => {
|
|
|
|
await Deno.stat(testNestDir);
|
|
|
|
}
|
|
|
|
);
|
2019-03-11 14:19:52 -04:00
|
|
|
|
|
|
|
// test file have been remove
|
2019-04-24 07:41:23 -04:00
|
|
|
await assertThrowsAsync(
|
|
|
|
async (): Promise<void> => {
|
|
|
|
await Deno.stat(testDirFile);
|
|
|
|
}
|
|
|
|
);
|
2019-03-11 14:19:52 -04:00
|
|
|
} finally {
|
|
|
|
// remote test dir
|
|
|
|
await Deno.remove(testDir, { recursive: true });
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-04-24 07:41:23 -04:00
|
|
|
test(function emptyDirSyncIfItExist(): void {
|
2019-03-11 14:19:52 -04:00
|
|
|
const testDir = path.join(testdataDir, "empty_dir_test_4");
|
|
|
|
const testNestDir = path.join(testDir, "nest");
|
|
|
|
// create test dir
|
|
|
|
emptyDirSync(testNestDir);
|
|
|
|
const testDirFile = path.join(testNestDir, "test.ts");
|
|
|
|
// create test file in test dir
|
|
|
|
Deno.writeFileSync(testDirFile, new Uint8Array());
|
|
|
|
|
|
|
|
// before empty: make sure file/directory exist
|
|
|
|
const beforeFileStat = Deno.statSync(testDirFile);
|
|
|
|
assertEquals(beforeFileStat.isFile(), true);
|
|
|
|
|
|
|
|
const beforeDirStat = Deno.statSync(testNestDir);
|
|
|
|
assertEquals(beforeDirStat.isDirectory(), true);
|
|
|
|
|
|
|
|
emptyDirSync(testDir);
|
|
|
|
|
|
|
|
// after empty: file/directory have already remove
|
|
|
|
try {
|
|
|
|
// test dir still there
|
|
|
|
const stat = Deno.statSync(testDir);
|
|
|
|
assertEquals(stat.isDirectory(), true);
|
|
|
|
|
|
|
|
// nest directory have been remove
|
2019-10-09 17:22:22 -04:00
|
|
|
assertThrows(
|
|
|
|
(): void => {
|
|
|
|
Deno.statSync(testNestDir);
|
|
|
|
}
|
|
|
|
);
|
2019-03-11 14:19:52 -04:00
|
|
|
|
|
|
|
// test file have been remove
|
2019-10-09 17:22:22 -04:00
|
|
|
assertThrows(
|
|
|
|
(): void => {
|
|
|
|
Deno.statSync(testDirFile);
|
|
|
|
}
|
|
|
|
);
|
2019-03-11 14:19:52 -04:00
|
|
|
} finally {
|
|
|
|
// remote test dir
|
|
|
|
Deno.removeSync(testDir, { recursive: true });
|
|
|
|
}
|
|
|
|
});
|