mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	This patch introduces 109 "#smoke" tests - a subset of tests that makes sure that basic Playwright functionality works. This set is loosely defined; feel free to add/remove tests to the set. The only goal is to keep this set minimal & fast to run. I tried to pick tests so that various parts of Playwright functionality are exercised.
		
			
				
	
	
		
			79 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * Copyright 2018 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.
 | 
						|
 */
 | 
						|
 | 
						|
import { test as it, expect } from './pageTest';
 | 
						|
 | 
						|
it('should evaluate before anything else on the page', async ({ page, server }) => {
 | 
						|
  await page.addInitScript(function() {
 | 
						|
    window['injected'] = 123;
 | 
						|
  });
 | 
						|
  await page.goto(server.PREFIX + '/tamperable.html');
 | 
						|
  expect(await page.evaluate(() => window['result'])).toBe(123);
 | 
						|
});
 | 
						|
 | 
						|
it('should work with a path', async ({ page, server, asset }) => {
 | 
						|
  await page.addInitScript({ path: asset('injectedfile.js') });
 | 
						|
  await page.goto(server.PREFIX + '/tamperable.html');
 | 
						|
  expect(await page.evaluate(() => window['result'])).toBe(123);
 | 
						|
});
 | 
						|
 | 
						|
it('should work with content #smoke', async ({ page, server }) => {
 | 
						|
  await page.addInitScript({ content: 'window["injected"] = 123' });
 | 
						|
  await page.goto(server.PREFIX + '/tamperable.html');
 | 
						|
  expect(await page.evaluate(() => window['result'])).toBe(123);
 | 
						|
});
 | 
						|
 | 
						|
it('should throw without path and content', async ({ page }) => {
 | 
						|
  // @ts-expect-error foo is not a real option of addInitScript
 | 
						|
  const error = await page.addInitScript({ foo: 'bar' }).catch(e => e);
 | 
						|
  expect(error.message).toContain('Either path or content property must be present');
 | 
						|
});
 | 
						|
 | 
						|
it('should support multiple scripts', async ({ page, server }) => {
 | 
						|
  await page.addInitScript(function() {
 | 
						|
    window['script1'] = 1;
 | 
						|
  });
 | 
						|
  await page.addInitScript(function() {
 | 
						|
    window['script2'] = 2;
 | 
						|
  });
 | 
						|
  await page.goto(server.PREFIX + '/tamperable.html');
 | 
						|
  expect(await page.evaluate(() => window['script1'])).toBe(1);
 | 
						|
  expect(await page.evaluate(() => window['script2'])).toBe(2);
 | 
						|
});
 | 
						|
 | 
						|
it('should work with CSP', async ({ page, server }) => {
 | 
						|
  server.setCSP('/empty.html', 'script-src ' + server.PREFIX);
 | 
						|
  await page.addInitScript(function() {
 | 
						|
    window['injected'] = 123;
 | 
						|
  });
 | 
						|
  await page.goto(server.PREFIX + '/empty.html');
 | 
						|
  expect(await page.evaluate(() => window['injected'])).toBe(123);
 | 
						|
 | 
						|
  // Make sure CSP works.
 | 
						|
  await page.addScriptTag({ content: 'window.e = 10;' }).catch(e => void e);
 | 
						|
  expect(await page.evaluate(() => window['e'])).toBe(undefined);
 | 
						|
});
 | 
						|
 | 
						|
it('should work after a cross origin navigation', async ({ page, server }) => {
 | 
						|
  await page.goto(server.CROSS_PROCESS_PREFIX);
 | 
						|
  await page.addInitScript(function() {
 | 
						|
    window['injected'] = 123;
 | 
						|
  });
 | 
						|
  await page.goto(server.PREFIX + '/tamperable.html');
 | 
						|
  expect(await page.evaluate(() => window['result'])).toBe(123);
 | 
						|
});
 |