2020-08-04 15:57:25 -07: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.
|
|
|
|
*/
|
|
|
|
|
2022-03-25 15:05:50 -08:00
|
|
|
import { playwrightTest as it, expect } from '../config/browserTest';
|
2020-08-04 15:57:25 -07:00
|
|
|
|
2021-10-19 12:28:02 -04:00
|
|
|
it('should have an errors object', async ({ playwright }) => {
|
|
|
|
expect(String(playwright.errors.TimeoutError)).toContain('TimeoutError');
|
2020-08-04 15:57:25 -07:00
|
|
|
});
|
|
|
|
|
2021-10-19 12:28:02 -04:00
|
|
|
it('should have a devices object', async ({ playwright }) => {
|
|
|
|
expect(playwright.devices['iPhone 6']).toBeTruthy();
|
2021-06-04 18:43:54 -07:00
|
|
|
expect(playwright.devices['iPhone 6'].defaultBrowserType).toBe('webkit');
|
2020-08-04 15:57:25 -07:00
|
|
|
});
|
2021-03-27 09:59:04 -07:00
|
|
|
|
2021-10-27 18:00:06 -08:00
|
|
|
it('should kill browser process on timeout after close', async ({ browserType, mode }) => {
|
2021-04-02 21:07:45 -07:00
|
|
|
it.skip(mode !== 'default', 'Test passes server hooks via options');
|
|
|
|
|
2021-10-27 18:00:06 -08:00
|
|
|
const launchOptions: any = {};
|
2021-03-27 09:59:04 -07:00
|
|
|
let stalled = false;
|
2021-10-27 18:00:06 -08:00
|
|
|
launchOptions.__testHookGracefullyClose = () => {
|
2021-03-27 09:59:04 -07:00
|
|
|
stalled = true;
|
|
|
|
return new Promise(() => {});
|
|
|
|
};
|
2021-10-27 18:00:06 -08:00
|
|
|
launchOptions.__testHookBrowserCloseTimeout = 1_000;
|
2021-03-27 09:59:04 -07:00
|
|
|
const browser = await browserType.launch(launchOptions);
|
|
|
|
await browser.close();
|
|
|
|
expect(stalled).toBeTruthy();
|
|
|
|
});
|
2022-03-18 22:39:11 +01:00
|
|
|
|
2024-10-24 11:34:41 +02:00
|
|
|
it('should throw a friendly error if its headed and there is no xserver on linux running', async ({ mode, browserType, platform, channel }) => {
|
2022-03-18 22:39:11 +01:00
|
|
|
it.skip(platform !== 'linux');
|
2023-07-25 16:47:04 -07:00
|
|
|
it.skip(mode.startsWith('service'));
|
2024-11-13 10:52:28 +00:00
|
|
|
it.skip(channel === 'chromium-headless-shell', 'shell is never headed');
|
2024-12-11 18:11:33 -08:00
|
|
|
it.skip(channel === 'chromium-tip-of-tree-headless-shell', 'shell is never headed');
|
2023-02-07 18:25:33 -08:00
|
|
|
|
2022-03-18 22:39:11 +01:00
|
|
|
const error: Error = await browserType.launch({
|
|
|
|
headless: false,
|
|
|
|
env: {
|
|
|
|
...process.env,
|
|
|
|
DISPLAY: undefined,
|
|
|
|
},
|
|
|
|
}).catch(e => e);
|
|
|
|
expect(error).toBeInstanceOf(Error);
|
|
|
|
expect(error.message).toMatch(/Looks like you launched a headed browser without having a XServer running./);
|
|
|
|
expect(error.message).toMatch(/xvfb-run/);
|
|
|
|
});
|