brackets/test/spec/ProjectManager-test.js

140 строки
5.3 KiB
JavaScript
Исходник Обычный вид История

2012-01-05 05:27:47 +04:00
define(function(require, exports, module) {
// Load dependent modules
2012-01-06 03:15:11 +04:00
var ProjectManager // Load from brackets.test
, PreferencesManager // Load from brackets.test
2012-01-05 05:27:47 +04:00
, SpecRunnerUtils = require("./SpecRunnerUtils.js")
;
2012-01-05 05:27:47 +04:00
describe("ProjectManager", function() {
var testPath = SpecRunnerUtils.getTestPath("/spec/ProjectManager-test-files");
beforeEach(function() {
SpecRunnerUtils.beforeTestWindow( this, function( testWindow ) {
// Load module instances from brackets.test
ProjectManager = testWindow.brackets.test.ProjectManager;
PreferencesManager = testWindow.brackets.test.PreferencesManager;
2012-01-05 05:27:47 +04:00
});
});
afterEach(function() {
SpecRunnerUtils.afterTestWindow();
});
2012-01-05 05:27:47 +04:00
describe("createNewItem", function() {
// TODO (jasonsj): test Commands.FILE_NEW
it("should create a new file with a given name", function() {
var didCreate = false, gotError = false;
SpecRunnerUtils.loadProject( testPath );
2012-01-05 05:27:47 +04:00
runs(function() {
// skip rename
ProjectManager.createNewItem(testPath, "Untitled.js", true)
2012-01-05 05:27:47 +04:00
.done(function() { didCreate = true; })
.fail(function() { gotError = true; });
});
2012-01-05 05:27:47 +04:00
waitsFor(function() { return didCreate && !gotError; }, "ProjectManager.createNewItem() timeout", 1000);
2012-01-05 05:27:47 +04:00
var error, stat, complete = false;
var filePath = testPath + "/Untitled.js";
2012-01-05 05:27:47 +04:00
runs(function() {
brackets.fs.stat(filePath, function(err, _stat) {
error = err;
stat = _stat;
complete = true;
});
});
2012-01-05 05:27:47 +04:00
waitsFor(function() { return complete; }, 1000);
2012-01-05 05:27:47 +04:00
var unlinkError = brackets.fs.NO_ERROR;
runs(function() {
expect(error).toBeFalsy();
expect(stat.isFile()).toBe(true);
// delete the new file
complete = false;
brackets.fs.unlink(filePath, function(err) {
unlinkError = err;
complete = true;
});
});
waitsFor(function() {
return complete && unlinkError == brackets.fs.NO_ERROR;
}
, "unlink() failed to cleanup Untitled.js, err=" + unlinkError
, 1000
);
});
2012-01-05 05:27:47 +04:00
it("should fail when a file already exists", function() {
var didCreate = false, gotError = false;
SpecRunnerUtils.loadProject( testPath );
2012-01-05 05:27:47 +04:00
runs(function() {
// skip rename
ProjectManager.createNewItem(testPath, "file.js", true)
2012-01-05 05:27:47 +04:00
.done(function() { didCreate = true; })
.fail(function() { gotError = true; });
});
waitsFor(function() { return !didCreate && gotError; }, "ProjectManager.createNewItem() timeout", 1000);
2012-01-05 05:27:47 +04:00
runs(function() {
expect(gotError).toBeTruthy();
expect(didCreate).toBeFalsy();
});
});
2012-01-05 05:27:47 +04:00
it("should fail when a file name matches a directory that already exists", function() {
var didCreate = false, gotError = false;
SpecRunnerUtils.loadProject( testPath );
runs(function() {
// skip rename
ProjectManager.createNewItem(testPath, "directory", true)
.done(function() { didCreate = true; })
.fail(function() { gotError = true; });
});
waitsFor(function() { return !didCreate && gotError; }, "ProjectManager.createNewItem() timeout", 1000);
runs(function() {
expect(gotError).toBeTruthy();
expect(didCreate).toBeFalsy();
});
2012-01-05 05:27:47 +04:00
});
it("should fail when file name contains special characters", function() {
var chars = "/?*:;{}<>\\";
var i = 0;
var len = chars.length;
var charAt, didCreate, gotError;
SpecRunnerUtils.loadProject( testPath );
2012-01-05 05:27:47 +04:00
for (i = 0; i < len; i++) {
didCreate = false;
gotError = false;
charAt = chars.charAt(i);
runs(function() {
// skip rename
ProjectManager.createNewItem(testPath, "file" + charAt + ".js", true)
2012-01-05 05:27:47 +04:00
.done(function() { didCreate = true; })
.fail(function() { gotError = true; });
});
waitsFor(function() { return !didCreate && gotError; }, "ProjectManager.createNewItem() timeout", 1000);
runs(function() {
expect(gotError).toBeTruthy();
expect(didCreate).toBeFalsy();
});
}
});
});
2012-01-05 05:27:47 +04:00
});
});