test-workers (#1863)
* Add getImportedScripts utility function to test-sw.js * Move functionality to testServiceWorker * Rename file * Add loadEslint utility function * Add filterScriptPaths utility
This commit is contained in:
parent
11f210375e
commit
992c8bcf75
@ -22,6 +22,15 @@ const {VM} = require('../dev/vm');
|
|||||||
const assert = require('assert');
|
const assert = require('assert');
|
||||||
|
|
||||||
|
|
||||||
|
function loadEslint() {
|
||||||
|
return JSON.parse(fs.readFileSync(path.join(__dirname, '..', '.eslintrc.json'), {encoding: 'utf8'}));
|
||||||
|
}
|
||||||
|
|
||||||
|
function filterScriptPaths(scriptPaths) {
|
||||||
|
const extDirName = 'ext';
|
||||||
|
return scriptPaths.filter((src) => !src.startsWith('/lib/')).map((src) => `${extDirName}${src}`);
|
||||||
|
}
|
||||||
|
|
||||||
function getAllHtmlScriptPaths(fileName) {
|
function getAllHtmlScriptPaths(fileName) {
|
||||||
const domSource = fs.readFileSync(fileName, {encoding: 'utf8'});
|
const domSource = fs.readFileSync(fileName, {encoding: 'utf8'});
|
||||||
const dom = new JSDOM(domSource);
|
const dom = new JSDOM(domSource);
|
||||||
@ -43,38 +52,44 @@ function convertBackgroundScriptsToServiceWorkerScripts(scripts) {
|
|||||||
scripts[index] = '/js/dom/simple-dom-parser.js';
|
scripts[index] = '/js/dom/simple-dom-parser.js';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getImportedScripts(scriptPath, fields) {
|
||||||
|
const importedScripts = [];
|
||||||
|
|
||||||
|
const importScripts = (...scripts) => {
|
||||||
|
importedScripts.push(...scripts);
|
||||||
|
};
|
||||||
|
|
||||||
|
const vm = new VM(Object.assign({importScripts}, fields));
|
||||||
|
vm.context.self = vm.context;
|
||||||
|
vm.execute([scriptPath]);
|
||||||
|
|
||||||
|
return importedScripts;
|
||||||
|
}
|
||||||
|
|
||||||
|
function testServiceWorker() {
|
||||||
|
// Verify that sw.js scripts match background.html scripts
|
||||||
|
const extDir = path.join(__dirname, '..', 'ext');
|
||||||
|
const scripts = getAllHtmlScriptPaths(path.join(extDir, 'background.html'));
|
||||||
|
convertBackgroundScriptsToServiceWorkerScripts(scripts);
|
||||||
|
const importedScripts = getImportedScripts('sw.js', {});
|
||||||
|
assert.deepStrictEqual(scripts, importedScripts);
|
||||||
|
|
||||||
|
// Verify that eslint config lists files correctly
|
||||||
|
const expectedSwRulesFiles = filterScriptPaths(scripts);
|
||||||
|
const eslintConfig = loadEslint();
|
||||||
|
const swRules = eslintConfig.overrides.find((item) => (
|
||||||
|
typeof item.env === 'object' &&
|
||||||
|
item.env !== null &&
|
||||||
|
item.env.serviceworker === true
|
||||||
|
));
|
||||||
|
assert.ok(typeof swRules !== 'undefined');
|
||||||
|
assert.ok(Array.isArray(swRules.files));
|
||||||
|
assert.deepStrictEqual(swRules.files, expectedSwRulesFiles);
|
||||||
|
}
|
||||||
|
|
||||||
function main() {
|
function main() {
|
||||||
try {
|
try {
|
||||||
// Verify that sw.js scripts match background.html scripts
|
testServiceWorker();
|
||||||
const rootDir = path.join(__dirname, '..');
|
|
||||||
const extDirName = 'ext';
|
|
||||||
const extDir = path.join(rootDir, extDirName);
|
|
||||||
|
|
||||||
const scripts = getAllHtmlScriptPaths(path.join(extDir, 'background.html'));
|
|
||||||
convertBackgroundScriptsToServiceWorkerScripts(scripts);
|
|
||||||
const importedScripts = [];
|
|
||||||
|
|
||||||
const importScripts = (...scripts2) => {
|
|
||||||
importedScripts.push(...scripts2);
|
|
||||||
};
|
|
||||||
|
|
||||||
const vm = new VM({importScripts});
|
|
||||||
vm.context.self = vm.context;
|
|
||||||
vm.execute(['sw.js']);
|
|
||||||
|
|
||||||
vm.assert.deepStrictEqual(scripts, importedScripts);
|
|
||||||
|
|
||||||
// Verify that eslint config lists files correctly
|
|
||||||
const expectedSwRulesFiles = scripts.filter((src) => !src.startsWith('/lib/')).map((src) => `${extDirName}${src}`);
|
|
||||||
const eslintConfig = JSON.parse(fs.readFileSync(path.join(rootDir, '.eslintrc.json'), {encoding: 'utf8'}));
|
|
||||||
const swRules = eslintConfig.overrides.find((item) => (
|
|
||||||
typeof item.env === 'object' &&
|
|
||||||
item.env !== null &&
|
|
||||||
item.env.serviceworker === true
|
|
||||||
));
|
|
||||||
assert.ok(typeof swRules !== 'undefined');
|
|
||||||
assert.ok(Array.isArray(swRules.files));
|
|
||||||
assert.deepStrictEqual(swRules.files, expectedSwRulesFiles);
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.error(e);
|
console.error(e);
|
||||||
process.exit(-1);
|
process.exit(-1);
|
Loading…
Reference in New Issue
Block a user