mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
c42a9d7370
A major API change was that asserts are imported from testing/asserts.ts now rather than testing/mod.ts and assertEqual as renamed to assertEquals to conform to what is most common in JavaScript.
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import { testPerm, assert, assertEquals } from "./test_util.ts";
|
|
|
|
testPerm({ read: true, write: true }, function renameSyncSuccess() {
|
|
const testDir = Deno.makeTempDirSync();
|
|
const oldpath = testDir + "/oldpath";
|
|
const newpath = testDir + "/newpath";
|
|
Deno.mkdirSync(oldpath);
|
|
Deno.renameSync(oldpath, newpath);
|
|
const newPathInfo = Deno.statSync(newpath);
|
|
assert(newPathInfo.isDirectory());
|
|
|
|
let caughtErr = false;
|
|
let oldPathInfo;
|
|
|
|
try {
|
|
oldPathInfo = Deno.statSync(oldpath);
|
|
} catch (e) {
|
|
caughtErr = true;
|
|
assertEquals(e.kind, Deno.ErrorKind.NotFound);
|
|
}
|
|
assert(caughtErr);
|
|
assertEquals(oldPathInfo, undefined);
|
|
});
|
|
|
|
testPerm({ read: true, write: false }, function renameSyncPerm() {
|
|
let err;
|
|
try {
|
|
const oldpath = "/oldbaddir";
|
|
const newpath = "/newbaddir";
|
|
Deno.renameSync(oldpath, newpath);
|
|
} catch (e) {
|
|
err = e;
|
|
}
|
|
assertEquals(err.kind, Deno.ErrorKind.PermissionDenied);
|
|
assertEquals(err.name, "PermissionDenied");
|
|
});
|
|
|
|
testPerm({ read: true, write: true }, async function renameSuccess() {
|
|
const testDir = Deno.makeTempDirSync();
|
|
const oldpath = testDir + "/oldpath";
|
|
const newpath = testDir + "/newpath";
|
|
Deno.mkdirSync(oldpath);
|
|
await Deno.rename(oldpath, newpath);
|
|
const newPathInfo = Deno.statSync(newpath);
|
|
assert(newPathInfo.isDirectory());
|
|
|
|
let caughtErr = false;
|
|
let oldPathInfo;
|
|
|
|
try {
|
|
oldPathInfo = Deno.statSync(oldpath);
|
|
} catch (e) {
|
|
caughtErr = true;
|
|
assertEquals(e.kind, Deno.ErrorKind.NotFound);
|
|
}
|
|
assert(caughtErr);
|
|
assertEquals(oldPathInfo, undefined);
|
|
});
|