db7c92fd57
* test: drop the now-empty remote runner from CI * move fixtures to spec-main * remove remote runner * fix stuff * remove global-paths hack * move ts-smoke to spec/ * fix test after merge * rename spec-main to spec * no need to ignore spec/node_modules twice * simplify spec-runner a little * no need to hash pj/yl twice * undo lint change to verify-mksnapshot.py * excessive .. * update electron_woa_testing.yml * don't search for test-results-remote.xml it is never produced now
79 lines
2.2 KiB
JavaScript
79 lines
2.2 KiB
JavaScript
/* global chrome */
|
|
function testStorageClear (callback) {
|
|
chrome.storage.sync.clear(function () {
|
|
chrome.storage.sync.get(null, function (syncItems) {
|
|
chrome.storage.local.clear(function () {
|
|
chrome.storage.local.get(null, function (localItems) {
|
|
callback(syncItems, localItems);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
function testStorageRemove (callback) {
|
|
chrome.storage.sync.remove('bar', function () {
|
|
chrome.storage.sync.get({ foo: 'baz' }, function (syncItems) {
|
|
chrome.storage.local.remove(['hello'], function () {
|
|
chrome.storage.local.get(null, function (localItems) {
|
|
callback(syncItems, localItems);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
function testStorageSet (callback) {
|
|
chrome.storage.sync.set({ foo: 'bar', bar: 'foo' }, function () {
|
|
chrome.storage.sync.get({ foo: 'baz', bar: 'fooo' }, function (syncItems) {
|
|
chrome.storage.local.set({ hello: 'world', world: 'hello' }, function () {
|
|
chrome.storage.local.get(null, function (localItems) {
|
|
callback(syncItems, localItems);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
function testStorage (callback) {
|
|
testStorageSet(function (syncForSet, localForSet) {
|
|
testStorageRemove(function (syncForRemove, localForRemove) {
|
|
testStorageClear(function (syncForClear, localForClear) {
|
|
callback(
|
|
syncForSet, localForSet,
|
|
syncForRemove, localForRemove,
|
|
syncForClear, localForClear
|
|
);
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
testStorage(function (
|
|
syncForSet, localForSet,
|
|
syncForRemove, localForRemove,
|
|
syncForClear, localForClear
|
|
) {
|
|
setTimeout(() => {
|
|
const message = JSON.stringify({
|
|
runtimeId: chrome.runtime.id,
|
|
tabId: chrome.devtools.inspectedWindow.tabId,
|
|
i18nString: chrome.i18n.getMessage('foo', ['bar', 'baz']),
|
|
storageItems: {
|
|
local: {
|
|
set: localForSet,
|
|
remove: localForRemove,
|
|
clear: localForClear
|
|
},
|
|
sync: {
|
|
set: syncForSet,
|
|
remove: syncForRemove,
|
|
clear: syncForClear
|
|
}
|
|
}
|
|
});
|
|
|
|
const sendMessage = `require('electron').ipcRenderer.send('answer', ${message})`;
|
|
window.chrome.devtools.inspectedWindow.eval(sendMessage, function () {});
|
|
});
|
|
});
|