c9-core/plugins/c9.ide.run.debug/variables_test.js

102 wiersze
3.1 KiB
JavaScript

/*global describe it before bar */
"use client";
require(["lib/architect/architect", "lib/chai/chai", "/vfs-root"],
function (architect, chai, baseProc) {
var expect = chai.expect;
expect.setupArchitectTest([
{
packagePath: "plugins/c9.core/c9",
startdate: new Date(),
debug: true,
hosted: true,
davPrefix: "/",
local: false,
projectName: "Test Project"
},
"plugins/c9.core/ext",
"plugins/c9.core/http-xhr",
"plugins/c9.core/util",
"plugins/c9.core/settings",
{
packagePath: "plugins/c9.ide.ui/ui",
staticPrefix: "plugins/c9.ide.ui"
},
"plugins/c9.ide.ui/lib_apf",
{
packagePath: "plugins/c9.fs/fs",
baseProc: baseProc
},
"plugins/c9.vfs.client/vfs_client",
"plugins/c9.vfs.client/endpoint",
"plugins/c9.ide.auth/auth",
"plugins/c9.core/api",
"plugins/c9.ide.run.debug/variables",
"plugins/c9.ide.run.debug/debugpanel",
"plugins/c9.ide.run.debug/callstack",
{
consumes: ["variables"],
provides: [],
setup: main
}
], architect);
function main(options, imports, register) {
var variables = imports.variables;
var datagrid;
function countEvents(count, expected, done) {
if (count == expected)
done();
else
throw new Error("Wrong Event Count: "
+ count + " of " + expected);
}
describe('breakpoints', function() {
before(function(done) {
var datagrid = variables.getElement("datagrid");
bar.$ext.style.background = "rgba(220, 220, 220, 0.93)";
bar.$ext.style.position = "fixed";
bar.$ext.style.top = "75px";
bar.$ext.style.right = "20px";
bar.$ext.style.left = "";
bar.$ext.style.bottom = "20px";
bar.$ext.style.width = "300px";
bar.$ext.style.height = "";
variables.show({
html: bar.$ext
});
done();
});
it('should add a frame', function(done) {
breakpoints.addFrame({
});
expect.html(datagrid, "Missing caption").text("/file.txt");
expect.html(datagrid, "Missing content").text("This is the content");
expect.html(datagrid.getFirstTraverseNode(), "Checked").className("checked");
done();
});
describe("unload()", function() {
it('should destroy all ui elements when it is unloaded', function(done) {
variables.unload();
expect(datagrid.$amlDestroyed).to.equal(true);
done();
});
});
});
register();
}
});