mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
d76166beca
This patch moves fixtures.js to base.fixtures.ts that sits next to tests. All tests get an extra import to get the base fixtures (both types and implementations).
77 lines
2.6 KiB
JavaScript
77 lines
2.6 KiB
JavaScript
/**
|
|
* 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.
|
|
*/
|
|
require('./base.fixture');
|
|
|
|
const path = require('path');
|
|
const {FFOX, CHROMIUM, WEBKIT, WIN, USES_HOOKS, CHANNEL} = testOptions;
|
|
|
|
it('should fire', async({page, server}) => {
|
|
const [error] = await Promise.all([
|
|
page.waitForEvent('pageerror'),
|
|
page.goto(server.PREFIX + '/error.html'),
|
|
]);
|
|
expect(error.name).toBe('Error');
|
|
expect(error.message).toBe('Fancy error!');
|
|
let stack = await page.evaluate(() => window.e.stack);
|
|
// Note that WebKit reports the stack of the 'throw' statement instead of the Error constructor call.
|
|
if (WEBKIT)
|
|
stack = stack.replace('14:25', '15:19');
|
|
expect(error.stack).toBe(stack);
|
|
});
|
|
|
|
it.fail(WEBKIT)('should contain sourceURL', async({page, server}) => {
|
|
const [error] = await Promise.all([
|
|
page.waitForEvent('pageerror'),
|
|
page.goto(server.PREFIX + '/error.html'),
|
|
]);
|
|
expect(error.stack).toContain('myscript.js');
|
|
});
|
|
|
|
it('should handle odd values', async ({page}) => {
|
|
const cases = [
|
|
[null, 'null'],
|
|
[undefined, 'undefined'],
|
|
[0, '0'],
|
|
['', ''],
|
|
];
|
|
for (const [value, message] of cases) {
|
|
const [error] = await Promise.all([
|
|
page.waitForEvent('pageerror'),
|
|
page.evaluate(value => setTimeout(() => { throw value; }, 0), value),
|
|
]);
|
|
expect(error.message).toBe(FFOX ? 'uncaught exception: ' + message : message);
|
|
}
|
|
});
|
|
|
|
it.fail(FFOX)('should handle object', async ({page}) => {
|
|
// Firefox just does not report this error.
|
|
const [error] = await Promise.all([
|
|
page.waitForEvent('pageerror'),
|
|
page.evaluate(() => setTimeout(() => { throw {}; }, 0)),
|
|
]);
|
|
expect(error.message).toBe(CHROMIUM ? 'Object' : '[object Object]');
|
|
});
|
|
|
|
it.fail(FFOX)('should handle window', async ({page}) => {
|
|
// Firefox just does not report this error.
|
|
const [error] = await Promise.all([
|
|
page.waitForEvent('pageerror'),
|
|
page.evaluate(() => setTimeout(() => { throw window; }, 0)),
|
|
]);
|
|
expect(error.message).toBe(CHROMIUM ? 'Window' : '[object Window]');
|
|
});
|