2020-08-05 01:09:24 +03:00
|
|
|
/**
|
|
|
|
* Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
* Modifications copyright (c) Microsoft Corporation.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2020-09-27 02:05:58 +03:00
|
|
|
import { it, expect, describe } from './fixtures';
|
2020-11-14 03:29:20 +03:00
|
|
|
import * as os from 'os';
|
2020-08-05 01:09:24 +03:00
|
|
|
|
2020-09-15 19:46:36 +03:00
|
|
|
function crash(page, toImpl, browserName) {
|
2020-08-18 22:48:32 +03:00
|
|
|
if (browserName === 'chromium')
|
2020-09-15 19:46:36 +03:00
|
|
|
page.goto('chrome://crash').catch(e => {});
|
2020-08-18 22:48:32 +03:00
|
|
|
else if (browserName === 'webkit')
|
2020-09-15 19:46:36 +03:00
|
|
|
toImpl(page)._delegate._session.send('Page.crash', {}).catch(e => {});
|
2020-08-18 22:48:32 +03:00
|
|
|
else if (browserName === 'firefox')
|
2020-09-15 19:46:36 +03:00
|
|
|
toImpl(page)._delegate._session.send('Page.crash', {}).catch(e => {});
|
2020-08-05 01:09:24 +03:00
|
|
|
}
|
|
|
|
|
2020-11-21 02:19:39 +03:00
|
|
|
describe('', (suite, { browserName, platform, mode }) => {
|
|
|
|
suite.skip(mode !== 'default' && browserName !== 'chromium');
|
2020-11-14 03:29:20 +03:00
|
|
|
const isBigSur = platform === 'darwin' && parseInt(os.release(), 10) >= 20;
|
|
|
|
suite.fixme(isBigSur && browserName === 'webkit', 'Timing out after roll');
|
2020-08-29 01:45:09 +03:00
|
|
|
}, () => {
|
2020-08-28 23:53:47 +03:00
|
|
|
it('should emit crash event when page crashes', async ({page, browserName, toImpl}) => {
|
|
|
|
await page.setContent(`<div>This page should crash</div>`);
|
2020-09-15 19:46:36 +03:00
|
|
|
crash(page, toImpl, browserName);
|
2021-01-22 20:58:31 +03:00
|
|
|
const crashedPage = await new Promise(f => page.on('crash', f));
|
|
|
|
expect(crashedPage).toBe(page);
|
2020-08-28 23:53:47 +03:00
|
|
|
});
|
2020-08-05 01:09:24 +03:00
|
|
|
|
2020-08-28 23:53:47 +03:00
|
|
|
it('should throw on any action after page crashes', async ({page, browserName, toImpl}) => {
|
|
|
|
await page.setContent(`<div>This page should crash</div>`);
|
2020-09-15 19:46:36 +03:00
|
|
|
crash(page, toImpl, browserName);
|
2020-08-28 23:53:47 +03:00
|
|
|
await page.waitForEvent('crash');
|
|
|
|
const err = await page.evaluate(() => {}).then(() => null, e => e);
|
|
|
|
expect(err).toBeTruthy();
|
|
|
|
expect(err.message).toContain('crash');
|
|
|
|
});
|
2020-08-05 01:09:24 +03:00
|
|
|
|
2020-08-28 23:53:47 +03:00
|
|
|
it('should cancel waitForEvent when page crashes', async ({page, browserName, toImpl}) => {
|
|
|
|
await page.setContent(`<div>This page should crash</div>`);
|
|
|
|
const promise = page.waitForEvent('response').catch(e => e);
|
2020-09-15 19:46:36 +03:00
|
|
|
crash(page, toImpl, browserName);
|
2020-08-28 23:53:47 +03:00
|
|
|
const error = await promise;
|
|
|
|
expect(error.message).toContain('Page crashed');
|
|
|
|
});
|
2020-08-05 01:09:24 +03:00
|
|
|
|
2020-08-28 23:53:47 +03:00
|
|
|
it('should cancel navigation when page crashes', async ({page, browserName, toImpl, server}) => {
|
|
|
|
await page.setContent(`<div>This page should crash</div>`);
|
|
|
|
server.setRoute('/one-style.css', () => {});
|
|
|
|
const promise = page.goto(server.PREFIX + '/one-style.html').catch(e => e);
|
|
|
|
await page.waitForNavigation({ waitUntil: 'domcontentloaded' });
|
2020-09-15 19:46:36 +03:00
|
|
|
crash(page, toImpl, browserName);
|
2020-08-28 23:53:47 +03:00
|
|
|
const error = await promise;
|
|
|
|
expect(error.message).toContain('Navigation failed because page crashed');
|
|
|
|
});
|
2020-08-05 01:09:24 +03:00
|
|
|
|
2020-10-01 15:30:27 +03:00
|
|
|
it('should be able to close context when page crashes', async ({page, browserName, toImpl}) => {
|
2020-08-28 23:53:47 +03:00
|
|
|
await page.setContent(`<div>This page should crash</div>`);
|
2020-09-15 19:46:36 +03:00
|
|
|
crash(page, toImpl, browserName);
|
2020-08-28 23:53:47 +03:00
|
|
|
await page.waitForEvent('crash');
|
|
|
|
await page.context().close();
|
|
|
|
});
|
2020-08-05 01:09:24 +03:00
|
|
|
});
|