phantomjs/test/fs-spec-03.js

25 lines
957 B
JavaScript
Raw Normal View History

describe("Paths Files API", function() {
var TEST_DIR = "testdir",
TEST_FILE = "testfile",
START_CWD = null;
it("should create a new temporary directory and change the Current Working Directory to it", function() {
START_CWD = fs.workingDirectory;
expect(fs.makeDirectory(TEST_DIR)).toBeTruthy();
expect(fs.changeWorkingDirectory(TEST_DIR)).toBeTruthy();
});
it("should create a file in the Current Working Directory and check it's absolute path", function() {
fs.write(TEST_FILE, TEST_FILE, "w");
var suffix = fs.separator + TEST_DIR + fs.separator + TEST_FILE,
abs = fs.absolute(".." + suffix),
lastIndex = abs.lastIndexOf(suffix);
expect(lastIndex).toNotEqual(-1);
expect(lastIndex + suffix.length === abs.length);
});
it("shoudl return to previous Current Working Directory and remove temporary directory", function() {
expect(fs.changeWorkingDirectory(START_CWD)).toBeTruthy();
fs.removeTree(TEST_DIR);
});
});