gecko/browser/devtools/commandline/test/browser_gcli_exec.js
Joe Walker bdc6d5a6aa Bug 707492 - GCLI should provide test files to firefox without concatenating them; r=dcamp
--HG--
extra : rebase_source : fa80556ba70d8eab3627998602e52d5edc3e3b98
2012-09-19 11:22:32 -07:00

203 lines
5.7 KiB
JavaScript

/*
* Copyright 2012, Mozilla Foundation and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// define(function(require, exports, module) {
// <INJECTED SOURCE:START>
// THIS FILE IS GENERATED FROM SOURCE IN THE GCLI PROJECT
// DO NOT EDIT IT DIRECTLY
var exports = {};
const TEST_URI = "data:text/html;charset=utf-8,<p id='gcli-input'>gcli-testExec.js</p>";
function test() {
var tests = Object.keys(exports);
// Push setup to the top and shutdown to the bottom
tests.sort(function(t1, t2) {
if (t1 == "setup" || t2 == "shutdown") return -1;
if (t2 == "setup" || t1 == "shutdown") return 1;
return 0;
});
info("Running tests: " + tests.join(", "))
tests = tests.map(function(test) { return exports[test]; });
DeveloperToolbarTest.test(TEST_URI, tests, true);
}
// <INJECTED SOURCE:END>
var Requisition = require('gcli/cli').Requisition;
var canon = require('gcli/canon');
// var mockCommands = require('gclitest/mockCommands');
var nodetype = require('gcli/types/node');
// var assert = require('test/assert');
var actualExec;
var actualOutput;
var hideExec = false;
var skip = 'skip';
exports.setup = function() {
mockCommands.setup();
mockCommands.onCommandExec.add(commandExeced);
canon.commandOutputManager.onOutput.add(commandOutputed);
};
exports.shutdown = function() {
mockCommands.shutdown();
mockCommands.onCommandExec.remove(commandExeced);
canon.commandOutputManager.onOutput.remove(commandOutputed);
};
function commandExeced(ev) {
actualExec = ev;
}
function commandOutputed(ev) {
actualOutput = ev.output;
}
function exec(command, expectedArgs) {
var environment = {};
var requisition = new Requisition(environment);
var outputObject = requisition.exec({ typed: command, hidden: hideExec });
assert.is(command.indexOf(actualExec.command.name), 0, 'Command name: ' + command);
assert.is(command, outputObject.typed, 'outputObject.command for: ' + command);
assert.ok(outputObject.completed, 'outputObject.completed false for: ' + command);
if (expectedArgs == null) {
assert.ok(false, 'expectedArgs == null for ' + command);
return;
}
if (actualExec.args == null) {
assert.ok(false, 'actualExec.args == null for ' + command);
return;
}
assert.is(Object.keys(expectedArgs).length, Object.keys(actualExec.args).length,
'Arg count: ' + command);
Object.keys(expectedArgs).forEach(function(arg) {
var expectedArg = expectedArgs[arg];
var actualArg = actualExec.args[arg];
if (expectedArg === skip) {
return;
}
if (Array.isArray(expectedArg)) {
if (!Array.isArray(actualArg)) {
assert.ok(false, 'actual is not an array. ' + command + '/' + arg);
return;
}
assert.is(expectedArg.length, actualArg.length,
'Array length: ' + command + '/' + arg);
for (var i = 0; i < expectedArg.length; i++) {
assert.is(expectedArg[i], actualArg[i],
'Member: "' + command + '/' + arg + '/' + i);
}
}
else {
assert.is(expectedArg, actualArg, 'Command: "' + command + '" arg: ' + arg);
}
});
assert.is(environment, actualExec.context.environment, 'Environment');
if (!hideExec) {
assert.is(false, actualOutput.error, 'output error is false');
assert.is(command, actualOutput.typed, 'command is typed');
assert.ok(typeof actualOutput.canonical === 'string', 'canonical exists');
assert.is(actualExec.args, actualOutput.args, 'actualExec.args is actualOutput.args');
}
}
exports.testExec = function(options) {
hideExec = options.hideExec;
exec('tss', {});
// Bug 707008 - GCLI deferred types don't work properly
exec('tsv option1 10', { optionType: mockCommands.option1, optionValue: '10' });
exec('tsv option2 10', { optionType: mockCommands.option2, optionValue: 10 });
exec('tsr fred', { text: 'fred' });
exec('tsr fred bloggs', { text: 'fred bloggs' });
exec('tsr "fred bloggs"', { text: 'fred bloggs' });
exec('tsb', { toggle: false });
exec('tsb --toggle', { toggle: true });
exec('tsu 10', { num: 10 });
exec('tsu --num 10', { num: 10 });
// Bug 704829 - Enable GCLI Javascript parameters
// The answer to this should be 2
exec('tsj { 1 + 1 }', { javascript: '1 + 1' });
var origDoc = nodetype.getDocument();
nodetype.setDocument(mockDoc);
exec('tse :root', { node: mockBody, nodes: skip, nodes2: skip });
nodetype.setDocument(origDoc);
exec('tsn dif fred', { text: 'fred' });
exec('tsn exten fred', { text: 'fred' });
exec('tsn extend fred', { text: 'fred' });
exec('tselarr 1', { num: '1', arr: [ ] });
exec('tselarr 1 a', { num: '1', arr: [ 'a' ] });
exec('tselarr 1 a b', { num: '1', arr: [ 'a', 'b' ] });
exec('tsm a 10 10', { abc: 'a', txt: '10', num: 10 });
// Bug 707009 - GCLI doesn't always fill in default parameters properly
exec('tsg aaa', { solo: 'aaa', txt1: null, bool: false, txt2: 'd', num: 42 });
};
var mockBody = {
style: {}
};
var mockDoc = {
querySelectorAll: function(css) {
if (css === ':root') {
return {
length: 1,
item: function(i) {
return mockBody;
}
};
}
else {
return {
length: 0,
item: function() { return null; }
};
}
}
};
// });