2019-11-21 01:18:05 +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.
|
|
|
|
*/
|
|
|
|
|
2019-12-07 03:15:27 +03:00
|
|
|
const utils = require('../utils');
|
2019-11-21 01:18:05 +03:00
|
|
|
const { waitEvent } = utils;
|
2019-11-19 05:18:28 +03:00
|
|
|
|
2019-12-19 04:11:45 +03:00
|
|
|
module.exports.describe = function({testRunner, expect, FFOX, CHROME, WEBKIT}) {
|
2019-11-19 05:18:28 +03:00
|
|
|
const {describe, xdescribe, fdescribe} = testRunner;
|
|
|
|
const {it, fit, xit} = testRunner;
|
|
|
|
const {beforeAll, beforeEach, afterAll, afterEach} = testRunner;
|
|
|
|
|
2019-12-07 03:15:27 +03:00
|
|
|
describe('Workers', function() {
|
2019-11-19 05:18:28 +03:00
|
|
|
it('Page.workers', async function({page, server}) {
|
|
|
|
await Promise.all([
|
2019-11-20 04:32:43 +03:00
|
|
|
new Promise(x => page.workers.once('workercreated', x)),
|
2019-11-19 05:18:28 +03:00
|
|
|
page.goto(server.PREFIX + '/worker/worker.html')]);
|
2019-11-20 04:32:43 +03:00
|
|
|
const worker = page.workers.list()[0];
|
2019-11-19 05:18:28 +03:00
|
|
|
expect(worker.url()).toContain('worker.js');
|
|
|
|
|
2019-11-20 04:32:43 +03:00
|
|
|
expect(await worker.evaluate(() => self['workerFunction']())).toBe('worker function result');
|
2019-11-19 05:18:28 +03:00
|
|
|
|
|
|
|
await page.goto(server.EMPTY_PAGE);
|
2019-11-20 04:32:43 +03:00
|
|
|
expect(page.workers.list().length).toBe(0);
|
2019-11-19 05:18:28 +03:00
|
|
|
});
|
|
|
|
it('should emit created and destroyed events', async function({page}) {
|
2019-11-20 04:32:43 +03:00
|
|
|
const workerCreatedPromise = new Promise(x => page.workers.once('workercreated', x));
|
2019-11-19 05:18:28 +03:00
|
|
|
const workerObj = await page.evaluateHandle(() => new Worker('data:text/javascript,1'));
|
|
|
|
const worker = await workerCreatedPromise;
|
|
|
|
const workerThisObj = await worker.evaluateHandle(() => this);
|
2019-11-20 04:32:43 +03:00
|
|
|
const workerDestroyedPromise = new Promise(x => page.workers.once('workerdestroyed', x));
|
2019-11-19 05:18:28 +03:00
|
|
|
await page.evaluate(workerObj => workerObj.terminate(), workerObj);
|
|
|
|
expect(await workerDestroyedPromise).toBe(worker);
|
|
|
|
const error = await workerThisObj.getProperty('self').catch(error => error);
|
|
|
|
expect(error.message).toContain('Most likely the worker has been closed.');
|
|
|
|
});
|
|
|
|
it('should report console logs', async function({page}) {
|
|
|
|
const [message] = await Promise.all([
|
|
|
|
waitEvent(page, 'console'),
|
|
|
|
page.evaluate(() => new Worker(`data:text/javascript,console.log(1)`)),
|
|
|
|
]);
|
|
|
|
expect(message.text()).toBe('1');
|
|
|
|
expect(message.location()).toEqual({
|
|
|
|
url: 'data:text/javascript,console.log(1)',
|
|
|
|
lineNumber: 0,
|
|
|
|
columnNumber: 8,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
it('should have JSHandles for console logs', async function({page}) {
|
|
|
|
const logPromise = new Promise(x => page.on('console', x));
|
|
|
|
await page.evaluate(() => new Worker(`data:text/javascript,console.log(1,2,3,this)`));
|
|
|
|
const log = await logPromise;
|
|
|
|
expect(log.text()).toBe('1 2 3 JSHandle@object');
|
|
|
|
expect(log.args().length).toBe(4);
|
|
|
|
expect(await (await log.args()[3].getProperty('origin')).jsonValue()).toBe('null');
|
|
|
|
});
|
2019-12-19 00:51:45 +03:00
|
|
|
it('should evaluate', async function({page}) {
|
2019-11-20 04:32:43 +03:00
|
|
|
const workerCreatedPromise = new Promise(x => page.workers.once('workercreated', x));
|
2019-11-19 05:18:28 +03:00
|
|
|
await page.evaluate(() => new Worker(`data:text/javascript,console.log(1)`));
|
|
|
|
const worker = await workerCreatedPromise;
|
2019-12-19 00:51:45 +03:00
|
|
|
expect(await worker.evaluate('1+1')).toBe(2);
|
2019-11-19 05:18:28 +03:00
|
|
|
});
|
|
|
|
it('should report errors', async function({page}) {
|
|
|
|
const errorPromise = new Promise(x => page.on('pageerror', x));
|
|
|
|
await page.evaluate(() => new Worker(`data:text/javascript, throw new Error('this is my error');`));
|
|
|
|
const errorLog = await errorPromise;
|
|
|
|
expect(errorLog.message).toContain('this is my error');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|