mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
f467d99125
--HG-- extra : rebase_source : fa80556ba70d8eab3627998602e52d5edc3e3b98
125 lines
3.9 KiB
JavaScript
125 lines
3.9 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-testResource.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 resource = require('gcli/types/resource');
|
|
var types = require('gcli/types');
|
|
var Status = require('gcli/types').Status;
|
|
|
|
// var assert = require('test/assert');
|
|
|
|
var tempDocument;
|
|
|
|
exports.setup = function(options) {
|
|
tempDocument = resource.getDocument();
|
|
resource.setDocument(options.window.document);
|
|
};
|
|
|
|
exports.shutdown = function(options) {
|
|
resource.setDocument(tempDocument);
|
|
tempDocument = undefined;
|
|
};
|
|
|
|
exports.testPredictions = function(options) {
|
|
var resource1 = types.getType('resource');
|
|
var options1 = resource1.getLookup();
|
|
// firefox doesn't support digging into scripts/stylesheets
|
|
if (!options.isFirefox) {
|
|
assert.ok(options1.length > 1, 'have all resources');
|
|
}
|
|
else {
|
|
assert.log('Skipping checks due to jsdom/firefox document.stylsheets support.');
|
|
}
|
|
options1.forEach(function(prediction) {
|
|
checkPrediction(resource1, prediction);
|
|
});
|
|
|
|
var resource2 = types.getType({ name: 'resource', include: 'text/javascript' });
|
|
var options2 = resource2.getLookup();
|
|
// firefox doesn't support digging into scripts
|
|
if (!options.isFirefox) {
|
|
assert.ok(options2.length > 1, 'have js resources');
|
|
}
|
|
else {
|
|
assert.log('Skipping checks due to jsdom/firefox document.stylsheets support.');
|
|
}
|
|
options2.forEach(function(prediction) {
|
|
checkPrediction(resource2, prediction);
|
|
});
|
|
|
|
var resource3 = types.getType({ name: 'resource', include: 'text/css' });
|
|
var options3 = resource3.getLookup();
|
|
// jsdom/firefox don't support digging into stylesheets
|
|
if (!options.isJsdom && !options.isFirefox) {
|
|
assert.ok(options3.length >= 1, 'have css resources');
|
|
}
|
|
else {
|
|
assert.log('Skipping checks due to jsdom/firefox document.stylsheets support.');
|
|
}
|
|
options3.forEach(function(prediction) {
|
|
checkPrediction(resource3, prediction);
|
|
});
|
|
|
|
var resource4 = types.getType({ name: 'resource' });
|
|
var options4 = resource4.getLookup();
|
|
|
|
assert.is(options1.length, options4.length, 'type spec');
|
|
assert.is(options2.length + options3.length, options4.length, 'split');
|
|
};
|
|
|
|
function checkPrediction(res, prediction) {
|
|
var name = prediction.name;
|
|
var value = prediction.value;
|
|
|
|
var conversion = res.parseString(name);
|
|
assert.is(conversion.getStatus(), Status.VALID, 'status VALID for ' + name);
|
|
assert.is(conversion.value, value, 'value for ' + name);
|
|
|
|
var strung = res.stringify(value);
|
|
assert.is(strung, name, 'stringify for ' + name);
|
|
|
|
assert.is(typeof value.loadContents, 'function', 'resource for ' + name);
|
|
assert.is(typeof value.element, 'object', 'resource for ' + name);
|
|
}
|
|
|
|
// });
|