gecko-dev/browser/devtools/commandline/test/browser_gcli_focus.js
Joe Walker f467d99125 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

82 lines
1.9 KiB
JavaScript

/*
* Copyright 2009-2011 Mozilla Foundation and contributors
* Licensed under the New BSD license. See LICENSE.txt or:
* http://opensource.org/licenses/BSD-3-Clause
*/
// 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-testFocus.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 test = require('test/assert');
// var helpers = require('gclitest/helpers');
// var mockCommands = require('gclitest/mockCommands');
exports.setup = function(options) {
mockCommands.setup();
helpers.setup(options);
};
exports.shutdown = function(options) {
mockCommands.shutdown();
helpers.shutdown(options);
};
exports.testBasic = function(options) {
if (options.isJsdom) {
test.log('jsdom does not pass on focus events properly, skipping testBasic');
return;
}
helpers.focusInput();
helpers.exec({ typed: 'help' });
helpers.setInput('tsn deep');
helpers.check({
input: 'tsn deep',
hints: '',
markup: 'IIIVIIII',
cursor: 8,
status: 'ERROR',
outputState: 'false:default',
tooltipState: 'false:default'
});
helpers.pressReturn();
helpers.check({
input: 'tsn deep',
hints: '',
markup: 'IIIVIIII',
cursor: 8,
status: 'ERROR',
outputState: 'false:default',
tooltipState: 'true:isError'
});
};
// });