blob: 969ea1c986f6ff385e34f326417f9ebd535c21d0 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
(async function() {
TestRunner.addResult(`Tests "Bypass for network" checkbox with redirection doesn't cause crash.\n`);
await TestRunner.loadModule('application_test_runner');
// Note: every test that uses a storage API must manually clean-up state from previous tests.
await ApplicationTestRunner.resetState();
await TestRunner.loadModule('console_test_runner');
await TestRunner.showPanel('resources');
const url = 'http://localhost:8000/devtools/service-workers/resources/' +
'bypass-for-network-redirect.php';
const frameId = 'frame_id';
UI.inspectorView.showPanel('sources')
.then(function() {
Common.settings.settingForTest('bypassServiceWorker').set(true);
let callback;
const promise = new Promise((fulfill) => callback = fulfill);
ConsoleTestRunner.addConsoleSniffer(message => {
if (message.messageText == 'getRegistration finished') {
callback();
}
}, true);
TestRunner.addIframe(url, {id: frameId});
return promise;
})
.then(function() {
TestRunner.addResult('Success');
TestRunner.completeTest();
})
.catch(function(exception) {
TestRunner.addResult('Error');
TestRunner.addResult(exception);
TestRunner.completeTest();
});
})();