mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
ebdf717cae
--HG-- extra : rebase_source : fa80556ba70d8eab3627998602e52d5edc3e3b98
212 lines
5.6 KiB
JavaScript
212 lines
5.6 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-testJs.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 Status = require('gcli/types').Status;
|
|
var javascript = require('gcli/types/javascript');
|
|
var canon = require('gcli/canon');
|
|
|
|
// var assert = require('test/assert');
|
|
|
|
var debug = false;
|
|
var requ;
|
|
|
|
var assign;
|
|
var status;
|
|
var statuses;
|
|
var tempWindow;
|
|
|
|
|
|
exports.setup = function(options) {
|
|
tempWindow = javascript.getGlobalObject();
|
|
javascript.setGlobalObject(options.window);
|
|
|
|
Object.defineProperty(options.window, 'donteval', {
|
|
get: function() {
|
|
assert.ok(false, 'donteval should not be used');
|
|
return { cant: '', touch: '', 'this': '' };
|
|
},
|
|
enumerable: true,
|
|
configurable : true
|
|
});
|
|
};
|
|
|
|
exports.shutdown = function(options) {
|
|
delete options.window.donteval;
|
|
|
|
javascript.setGlobalObject(tempWindow);
|
|
tempWindow = undefined;
|
|
};
|
|
|
|
function input(typed) {
|
|
if (!requ) {
|
|
requ = new Requisition();
|
|
}
|
|
var cursor = { start: typed.length, end: typed.length };
|
|
requ.update(typed);
|
|
|
|
if (debug) {
|
|
console.log('####### TEST: typed="' + typed +
|
|
'" cur=' + cursor.start +
|
|
' cli=', requ);
|
|
}
|
|
|
|
status = requ.getStatus();
|
|
statuses = requ.getInputStatusMarkup(cursor.start).map(function(s) {
|
|
return Array(s.string.length + 1).join(s.status.toString()[0]);
|
|
}).join('');
|
|
|
|
if (requ.commandAssignment.value) {
|
|
assign = requ.getAssignment(0);
|
|
}
|
|
else {
|
|
assign = undefined;
|
|
}
|
|
}
|
|
|
|
function predictionsHas(name) {
|
|
return assign.getPredictions().some(function(prediction) {
|
|
return name === prediction.name;
|
|
}, this);
|
|
}
|
|
|
|
function check(expStatuses, expStatus, expAssign, expPredict) {
|
|
assert.is('{', requ.commandAssignment.value.name, 'is exec');
|
|
|
|
assert.is(expStatuses, statuses, 'unexpected status markup');
|
|
assert.is(expStatus.toString(), status.toString(), 'unexpected status');
|
|
assert.is(expAssign, assign.value, 'unexpected assignment');
|
|
|
|
if (expPredict != null) {
|
|
var contains;
|
|
if (Array.isArray(expPredict)) {
|
|
expPredict.forEach(function(p) {
|
|
contains = predictionsHas(p);
|
|
assert.ok(contains, 'missing prediction ' + p);
|
|
});
|
|
}
|
|
else if (typeof expPredict === 'number') {
|
|
contains = true;
|
|
assert.is(assign.getPredictions().length, expPredict, 'prediction count');
|
|
if (assign.getPredictions().length !== expPredict) {
|
|
assign.getPredictions().forEach(function(prediction) {
|
|
assert.log('actual prediction: ', prediction);
|
|
});
|
|
}
|
|
}
|
|
else {
|
|
contains = predictionsHas(expPredict);
|
|
assert.ok(contains, 'missing prediction ' + expPredict);
|
|
}
|
|
|
|
if (!contains) {
|
|
assert.log('Predictions: ' + assign.getPredictions().map(function(p) {
|
|
return p.name;
|
|
}).join(', '));
|
|
}
|
|
}
|
|
}
|
|
|
|
exports.testBasic = function(options) {
|
|
if (!canon.getCommand('{')) {
|
|
assert.log('Skipping exec tests because { is not registered');
|
|
return;
|
|
}
|
|
|
|
input('{');
|
|
check('V', Status.ERROR, undefined);
|
|
|
|
input('{ ');
|
|
check('VV', Status.ERROR, undefined);
|
|
|
|
input('{ w');
|
|
check('VVI', Status.ERROR, 'w', 'window');
|
|
|
|
input('{ windo');
|
|
check('VVIIIII', Status.ERROR, 'windo', 'window');
|
|
|
|
input('{ window');
|
|
check('VVVVVVVV', Status.VALID, 'window');
|
|
|
|
input('{ window.d');
|
|
check('VVIIIIIIII', Status.ERROR, 'window.d', 'window.document');
|
|
|
|
input('{ window.document.title');
|
|
check('VVVVVVVVVVVVVVVVVVVVVVV', Status.VALID, 'window.document.title', 0);
|
|
|
|
input('{ d');
|
|
check('VVI', Status.ERROR, 'd', 'document');
|
|
|
|
input('{ document.title');
|
|
check('VVVVVVVVVVVVVVVV', Status.VALID, 'document.title', 0);
|
|
|
|
if (!options.isJsdom) {
|
|
// jsdom causes an eval here, maybe that's node/v8?
|
|
assert.ok('donteval' in options.window, 'donteval exists');
|
|
}
|
|
|
|
input('{ don');
|
|
check('VVIII', Status.ERROR, 'don', 'donteval');
|
|
|
|
input('{ donteval');
|
|
check('VVVVVVVVVV', Status.VALID, 'donteval', 0);
|
|
|
|
/*
|
|
// This is a controversial test - technically we can tell that it's an error
|
|
// because 'donteval.' is a syntax error, however donteval is unsafe so we
|
|
// are playing safe by bailing out early. It's enough of a corner case that
|
|
// I don't think it warrants fixing
|
|
input('{ donteval.');
|
|
check('VVIIIIIIIII', Status.ERROR, 'donteval.', 0);
|
|
*/
|
|
|
|
input('{ donteval.cant');
|
|
check('VVVVVVVVVVVVVVV', Status.VALID, 'donteval.cant', 0);
|
|
|
|
input('{ donteval.xxx');
|
|
check('VVVVVVVVVVVVVV', Status.VALID, 'donteval.xxx', 0);
|
|
};
|
|
|
|
|
|
// });
|