2019-02-19 20:21:04 +00:00
|
|
|
import * as nativeFs from "fs";
|
|
|
|
import * as path from "path";
|
|
|
|
import * as util from "util";
|
2019-03-26 18:01:25 +00:00
|
|
|
import { Module } from "../src/common/proxy";
|
|
|
|
import { createClient, Helper } from "./helpers";
|
2019-02-19 20:21:04 +00:00
|
|
|
|
2019-04-04 23:24:21 +00:00
|
|
|
// tslint:disable deprecation to use fs.exists
|
|
|
|
|
2019-02-19 20:21:04 +00:00
|
|
|
describe("fs", () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const client = createClient();
|
|
|
|
// tslint:disable-next-line no-any
|
|
|
|
const fs = client.modules[Module.Fs] as any as typeof import("fs");
|
|
|
|
const helper = new Helper("fs");
|
2019-02-19 20:21:04 +00:00
|
|
|
|
|
|
|
beforeAll(async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await helper.prepare();
|
2019-02-19 20:21:04 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe("access", () => {
|
|
|
|
it("should access existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.access)(__filename))
|
2019-02-19 20:21:04 +00:00
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to access nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.access)(helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("append", () => {
|
|
|
|
it("should append to existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.appendFile)(file, "howdy"))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
expect(await util.promisify(nativeFs.readFile)(file, "utf8"))
|
|
|
|
.toEqual("howdy");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should create then append to nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.appendFile)(file, "howdy"))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
expect(await util.promisify(nativeFs.readFile)(file, "utf8"))
|
|
|
|
.toEqual("howdy");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to append to file in nonexistent directory", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = path.join(helper.tmpFile(), "nope");
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.appendFile)(file, "howdy"))
|
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
expect(await util.promisify(nativeFs.exists)(file))
|
|
|
|
.toEqual(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("chmod", () => {
|
|
|
|
it("should chmod existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.chmod)(file, "755"))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to chmod nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.chmod)(helper.tmpFile(), "755"))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("chown", () => {
|
|
|
|
it("should chown existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.chown)(file, 1, 1))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to chown nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.chown)(helper.tmpFile(), 1, 1))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("close", () => {
|
|
|
|
it("should close opened file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
const fd = await util.promisify(nativeFs.open)(file, "r");
|
|
|
|
await expect(util.promisify(fs.close)(fd))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to close non-opened file", async () => {
|
|
|
|
await expect(util.promisify(fs.close)(99999999))
|
|
|
|
.rejects.toThrow("EBADF");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("copyFile", () => {
|
|
|
|
it("should copy existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const source = await helper.createTmpFile();
|
|
|
|
const destination = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.copyFile)(source, destination))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await expect(util.promisify(fs.exists)(destination))
|
|
|
|
.resolves.toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to copy nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.copyFile)(helper.tmpFile(), helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("createWriteStream", () => {
|
|
|
|
it("should write to file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
const content = "howdy\nhow\nr\nu";
|
|
|
|
const stream = fs.createWriteStream(file);
|
|
|
|
stream.on("open", (fd) => {
|
|
|
|
expect(fd).toBeDefined();
|
|
|
|
stream.write(content);
|
|
|
|
stream.close();
|
2019-03-26 18:01:25 +00:00
|
|
|
stream.end();
|
2019-02-19 20:21:04 +00:00
|
|
|
});
|
2019-03-26 18:01:25 +00:00
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
new Promise((resolve): nativeFs.WriteStream => stream.on("close", resolve)),
|
|
|
|
new Promise((resolve): nativeFs.WriteStream => stream.on("finish", resolve)),
|
|
|
|
]);
|
|
|
|
|
|
|
|
await expect(util.promisify(nativeFs.readFile)(file, "utf8")).resolves.toBe(content);
|
2019-02-19 20:21:04 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("exists", () => {
|
|
|
|
it("should output file exists", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.exists)(__filename))
|
2019-02-19 20:21:04 +00:00
|
|
|
.resolves.toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should output file does not exist", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.exists)(helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.resolves.toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("fchmod", () => {
|
|
|
|
it("should fchmod existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
const fd = await util.promisify(nativeFs.open)(file, "r");
|
|
|
|
await expect(util.promisify(fs.fchmod)(fd, "755"))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await util.promisify(nativeFs.close)(fd);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to fchmod nonexistent file", async () => {
|
|
|
|
await expect(util.promisify(fs.fchmod)(2242342, "755"))
|
|
|
|
.rejects.toThrow("EBADF");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("fchown", () => {
|
|
|
|
it("should fchown existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
const fd = await util.promisify(nativeFs.open)(file, "r");
|
|
|
|
await expect(util.promisify(fs.fchown)(fd, 1, 1))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await util.promisify(nativeFs.close)(fd);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to fchown nonexistent file", async () => {
|
|
|
|
await expect(util.promisify(fs.fchown)(99999, 1, 1))
|
|
|
|
.rejects.toThrow("EBADF");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("fdatasync", () => {
|
|
|
|
it("should fdatasync existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
const fd = await util.promisify(nativeFs.open)(file, "r");
|
|
|
|
await expect(util.promisify(fs.fdatasync)(fd))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await util.promisify(nativeFs.close)(fd);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to fdatasync nonexistent file", async () => {
|
|
|
|
await expect(util.promisify(fs.fdatasync)(99999))
|
|
|
|
.rejects.toThrow("EBADF");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("fstat", () => {
|
|
|
|
it("should fstat existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const fd = await util.promisify(nativeFs.open)(__filename, "r");
|
2019-02-19 20:21:04 +00:00
|
|
|
const stat = await util.promisify(nativeFs.fstat)(fd);
|
|
|
|
await expect(util.promisify(fs.fstat)(fd))
|
|
|
|
.resolves.toMatchObject({
|
|
|
|
size: stat.size,
|
|
|
|
});
|
|
|
|
await util.promisify(nativeFs.close)(fd);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to fstat", async () => {
|
|
|
|
await expect(util.promisify(fs.fstat)(9999))
|
|
|
|
.rejects.toThrow("EBADF");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("fsync", () => {
|
|
|
|
it("should fsync existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
const fd = await util.promisify(nativeFs.open)(file, "r");
|
|
|
|
await expect(util.promisify(fs.fsync)(fd))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await util.promisify(nativeFs.close)(fd);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to fsync nonexistent file", async () => {
|
|
|
|
await expect(util.promisify(fs.fsync)(99999))
|
|
|
|
.rejects.toThrow("EBADF");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("ftruncate", () => {
|
|
|
|
it("should ftruncate existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
const fd = await util.promisify(nativeFs.open)(file, "w");
|
|
|
|
await expect(util.promisify(fs.ftruncate)(fd, 1))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await util.promisify(nativeFs.close)(fd);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to ftruncate nonexistent file", async () => {
|
|
|
|
await expect(util.promisify(fs.ftruncate)(99999, 9999))
|
|
|
|
.rejects.toThrow("EBADF");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("futimes", () => {
|
|
|
|
it("should futimes existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
const fd = await util.promisify(nativeFs.open)(file, "w");
|
|
|
|
await expect(util.promisify(fs.futimes)(fd, 1, 1))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await util.promisify(nativeFs.close)(fd);
|
|
|
|
});
|
|
|
|
|
2019-04-04 23:24:21 +00:00
|
|
|
it("should futimes existing file with date", async () => {
|
|
|
|
const file = await helper.createTmpFile();
|
|
|
|
const fd = await util.promisify(nativeFs.open)(file, "w");
|
|
|
|
await expect(util.promisify(fs.futimes)(fd, new Date(), new Date()))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await util.promisify(nativeFs.close)(fd);
|
|
|
|
});
|
|
|
|
|
2019-02-19 20:21:04 +00:00
|
|
|
it("should fail to futimes nonexistent file", async () => {
|
|
|
|
await expect(util.promisify(fs.futimes)(99999, 9999, 9999))
|
|
|
|
.rejects.toThrow("EBADF");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("lchmod", () => {
|
|
|
|
it("should lchmod existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.lchmod)(file, "755"))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
// TODO: Doesn't fail on my system?
|
|
|
|
it("should fail to lchmod nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.lchmod)(helper.tmpFile(), "755"))
|
2019-02-19 20:21:04 +00:00
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("lchown", () => {
|
|
|
|
it("should lchown existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.lchown)(file, 1, 1))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
// TODO: Doesn't fail on my system?
|
|
|
|
it("should fail to lchown nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.lchown)(helper.tmpFile(), 1, 1))
|
2019-02-19 20:21:04 +00:00
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("link", () => {
|
|
|
|
it("should link existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const source = await helper.createTmpFile();
|
|
|
|
const destination = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.link)(source, destination))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await expect(util.promisify(fs.exists)(destination))
|
|
|
|
.resolves.toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to link nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.link)(helper.tmpFile(), helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("lstat", () => {
|
|
|
|
it("should lstat existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const stat = await util.promisify(nativeFs.lstat)(__filename);
|
|
|
|
await expect(util.promisify(fs.lstat)(__filename))
|
2019-02-19 20:21:04 +00:00
|
|
|
.resolves.toMatchObject({
|
|
|
|
size: stat.size,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to lstat non-existent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.lstat)(helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("mkdir", () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
let target: string;
|
2019-02-19 20:21:04 +00:00
|
|
|
it("should create nonexistent directory", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
target = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.mkdir)(target))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to create existing directory", async () => {
|
|
|
|
await expect(util.promisify(fs.mkdir)(target))
|
|
|
|
.rejects.toThrow("EEXIST");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("mkdtemp", () => {
|
|
|
|
it("should create temp dir", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.mkdtemp)(helper.coderDir + "/"))
|
2019-02-21 20:09:07 +00:00
|
|
|
.resolves.toMatch(/^\/tmp\/coder\/fs\/[a-zA-Z0-9]{6}/);
|
2019-02-19 20:21:04 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("open", () => {
|
|
|
|
it("should open existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const fd = await util.promisify(fs.open)(__filename, "r");
|
2019-02-19 20:21:04 +00:00
|
|
|
expect(fd).not.toBeNaN();
|
|
|
|
await expect(util.promisify(fs.close)(fd))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to open nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.open)(helper.tmpFile(), "r"))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("read", () => {
|
|
|
|
it("should read existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const fd = await util.promisify(nativeFs.open)(__filename, "r");
|
2019-02-19 20:21:04 +00:00
|
|
|
const stat = await util.promisify(nativeFs.fstat)(fd);
|
2019-04-04 23:24:21 +00:00
|
|
|
const buffer = Buffer.alloc(stat.size);
|
2019-02-19 20:21:04 +00:00
|
|
|
let bytesRead = 0;
|
|
|
|
let chunkSize = 2048;
|
|
|
|
while (bytesRead < stat.size) {
|
|
|
|
if ((bytesRead + chunkSize) > stat.size) {
|
|
|
|
chunkSize = stat.size - bytesRead;
|
|
|
|
}
|
|
|
|
|
|
|
|
await util.promisify(fs.read)(fd, buffer, bytesRead, chunkSize, bytesRead);
|
|
|
|
bytesRead += chunkSize;
|
|
|
|
}
|
|
|
|
|
2019-03-26 18:01:25 +00:00
|
|
|
const content = await util.promisify(nativeFs.readFile)(__filename, "utf8");
|
2019-02-19 20:21:04 +00:00
|
|
|
expect(buffer.toString()).toEqual(content);
|
|
|
|
await util.promisify(nativeFs.close)(fd);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to read nonexistent file", async () => {
|
2019-04-04 23:24:21 +00:00
|
|
|
await expect(util.promisify(fs.read)(99999, Buffer.alloc(10), 9999, 999, 999))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("EBADF");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("readFile", () => {
|
|
|
|
it("should read existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const content = await util.promisify(nativeFs.readFile)(__filename, "utf8");
|
|
|
|
await expect(util.promisify(fs.readFile)(__filename, "utf8"))
|
2019-02-19 20:21:04 +00:00
|
|
|
.resolves.toEqual(content);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to read nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.readFile)(helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("readdir", () => {
|
|
|
|
it("should read existing directory", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const paths = await util.promisify(nativeFs.readdir)(helper.coderDir);
|
|
|
|
await expect(util.promisify(fs.readdir)(helper.coderDir))
|
2019-02-19 20:21:04 +00:00
|
|
|
.resolves.toEqual(paths);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to read nonexistent directory", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.readdir)(helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("readlink", () => {
|
|
|
|
it("should read existing link", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const source = await helper.createTmpFile();
|
|
|
|
const destination = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await util.promisify(nativeFs.symlink)(source, destination);
|
|
|
|
await expect(util.promisify(fs.readlink)(destination))
|
|
|
|
.resolves.toBe(source);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to read nonexistent link", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.readlink)(helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("realpath", () => {
|
|
|
|
it("should read real path of existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const source = await helper.createTmpFile();
|
|
|
|
const destination = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
nativeFs.symlinkSync(source, destination);
|
|
|
|
await expect(util.promisify(fs.realpath)(destination))
|
|
|
|
.resolves.toBe(source);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to read real path of nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.realpath)(helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("rename", () => {
|
|
|
|
it("should rename existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const source = await helper.createTmpFile();
|
|
|
|
const destination = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.rename)(source, destination))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await expect(util.promisify(nativeFs.exists)(source))
|
|
|
|
.resolves.toBe(false);
|
|
|
|
await expect(util.promisify(nativeFs.exists)(destination))
|
|
|
|
.resolves.toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to rename nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.rename)(helper.tmpFile(), helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("rmdir", () => {
|
|
|
|
it("should rmdir existing directory", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const dir = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await util.promisify(nativeFs.mkdir)(dir);
|
|
|
|
await expect(util.promisify(fs.rmdir)(dir))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await expect(util.promisify(nativeFs.exists)(dir))
|
|
|
|
.resolves.toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to rmdir nonexistent directory", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.rmdir)(helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("stat", () => {
|
|
|
|
it("should stat existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const nativeStat = await util.promisify(nativeFs.stat)(__filename);
|
|
|
|
const stat = await util.promisify(fs.stat)(__filename);
|
2019-02-19 20:21:04 +00:00
|
|
|
expect(stat).toMatchObject({
|
|
|
|
size: nativeStat.size,
|
|
|
|
});
|
2019-04-04 23:24:21 +00:00
|
|
|
expect(typeof stat.mtime.getTime()).toBe("number");
|
2019-02-19 20:21:04 +00:00
|
|
|
expect(stat.isFile()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should stat existing folder", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const dir = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await util.promisify(nativeFs.mkdir)(dir);
|
|
|
|
const nativeStat = await util.promisify(nativeFs.stat)(dir);
|
|
|
|
const stat = await util.promisify(fs.stat)(dir);
|
|
|
|
expect(stat).toMatchObject({
|
|
|
|
size: nativeStat.size,
|
|
|
|
});
|
|
|
|
expect(stat.isDirectory()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to stat nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const error = await util.promisify(fs.stat)(helper.tmpFile()).catch((e) => e);
|
2019-02-26 21:46:05 +00:00
|
|
|
expect(error.message).toContain("ENOENT");
|
|
|
|
expect(error.code).toBe("ENOENT");
|
2019-02-19 20:21:04 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("symlink", () => {
|
|
|
|
it("should symlink existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const source = await helper.createTmpFile();
|
|
|
|
const destination = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.symlink)(source, destination))
|
|
|
|
.resolves.toBeUndefined();
|
2019-04-04 23:24:21 +00:00
|
|
|
await expect(util.promisify(nativeFs.exists)(source))
|
2019-02-19 20:21:04 +00:00
|
|
|
.resolves.toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
// TODO: Seems to be happy to do this on my system?
|
|
|
|
it("should fail to symlink nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.symlink)(helper.tmpFile(), helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("truncate", () => {
|
|
|
|
it("should truncate existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = helper.tmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await util.promisify(nativeFs.writeFile)(file, "hiiiiii");
|
|
|
|
await expect(util.promisify(fs.truncate)(file, 2))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await expect(util.promisify(nativeFs.readFile)(file, "utf8"))
|
|
|
|
.resolves.toBe("hi");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to truncate nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.truncate)(helper.tmpFile(), 0))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("unlink", () => {
|
|
|
|
it("should unlink existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.unlink)(file))
|
|
|
|
.resolves.toBeUndefined();
|
2019-04-04 23:24:21 +00:00
|
|
|
await expect(util.promisify(nativeFs.exists)(file))
|
2019-02-19 20:21:04 +00:00
|
|
|
.resolves.toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to unlink nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.unlink)(helper.tmpFile()))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("utimes", () => {
|
|
|
|
it("should update times on existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.utimes)(file, 100, 100))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to update times on nonexistent file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
await expect(util.promisify(fs.utimes)(helper.tmpFile(), 100, 100))
|
2019-02-19 20:21:04 +00:00
|
|
|
.rejects.toThrow("ENOENT");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("write", () => {
|
|
|
|
it("should write to existing file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
const fd = await util.promisify(nativeFs.open)(file, "w");
|
|
|
|
await expect(util.promisify(fs.write)(fd, Buffer.from("hi")))
|
|
|
|
.resolves.toBe(2);
|
|
|
|
await expect(util.promisify(nativeFs.readFile)(file, "utf8"))
|
|
|
|
.resolves.toBe("hi");
|
|
|
|
await util.promisify(nativeFs.close)(fd);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should fail to write to nonexistent file", async () => {
|
|
|
|
await expect(util.promisify(fs.write)(100000, Buffer.from("wowow")))
|
|
|
|
.rejects.toThrow("EBADF");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("writeFile", () => {
|
|
|
|
it("should write file", async () => {
|
2019-03-26 18:01:25 +00:00
|
|
|
const file = await helper.createTmpFile();
|
2019-02-19 20:21:04 +00:00
|
|
|
await expect(util.promisify(fs.writeFile)(file, "howdy"))
|
|
|
|
.resolves.toBeUndefined();
|
|
|
|
await expect(util.promisify(nativeFs.readFile)(file, "utf8"))
|
|
|
|
.resolves.toBe("howdy");
|
|
|
|
});
|
|
|
|
});
|
2019-03-26 18:01:25 +00:00
|
|
|
|
|
|
|
it("should dispose", () => {
|
|
|
|
client.dispose();
|
|
|
|
});
|
2019-02-19 20:21:04 +00:00
|
|
|
});
|