mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			87 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * 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, expect } from './playwright-test-fixtures';
 | 
						|
 | 
						|
test('should expose request fixture', async ({ runInlineTest, server }) => {
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'a.test.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('pass', async ({ request }) => {
 | 
						|
        const response = await request.get('${server.PREFIX}/simple.json');
 | 
						|
        const json = await response.json();
 | 
						|
        expect(json).toEqual({ foo: 'bar' });
 | 
						|
      });
 | 
						|
    `,
 | 
						|
  }, { workers: 1 });
 | 
						|
 | 
						|
  expect(result.exitCode).toBe(0);
 | 
						|
  expect(result.passed).toBe(1);
 | 
						|
});
 | 
						|
 | 
						|
test('should use baseURL in request fixture', async ({ runInlineTest, server }) => {
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'playwright.config.ts': `
 | 
						|
      module.exports = { use: { baseURL: '${server.PREFIX}' } };
 | 
						|
    `,
 | 
						|
    'a.test.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('pass', async ({ request }) => {
 | 
						|
        const response = await request.get('/simple.json');
 | 
						|
        const json = await response.json();
 | 
						|
        expect(json).toEqual({ foo: 'bar' });
 | 
						|
      });
 | 
						|
    `,
 | 
						|
  }, { workers: 1 });
 | 
						|
 | 
						|
  expect(result.exitCode).toBe(0);
 | 
						|
  expect(result.passed).toBe(1);
 | 
						|
});
 | 
						|
 | 
						|
test('should stop tracing on requestContex.dispose()', async ({ runInlineTest, server }) => {
 | 
						|
  server.setRoute('/slow', (req, resp) => {
 | 
						|
    resp.writeHead(200, {
 | 
						|
      'Content-Type': 'text/plain; charset=utf-8',
 | 
						|
      'Content-Length': '3',
 | 
						|
    });
 | 
						|
    setTimeout(() => {
 | 
						|
      resp.end('Hi!');
 | 
						|
    }, 500);
 | 
						|
  });
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'playwright.config.ts': `
 | 
						|
      module.exports = {
 | 
						|
        reporter: [['html', { open: 'never' }]],
 | 
						|
        use: {
 | 
						|
          browserName: 'firefox',
 | 
						|
          trace:'retain-on-failure'
 | 
						|
        }
 | 
						|
      };
 | 
						|
    `,
 | 
						|
    'a.test.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('hanging request', async ({ page, request }) => {
 | 
						|
        const response = await page.goto('${server.EMPTY_PAGE}');
 | 
						|
        expect(response.status()).toBe(200);
 | 
						|
        await request.get('${server.PREFIX}/slow');
 | 
						|
      });
 | 
						|
    `,
 | 
						|
  }, { workers: 1, timeout: 1000 });
 | 
						|
  expect(result.output).not.toContain('ENOENT');
 | 
						|
  expect(result.exitCode).toBe(1);
 | 
						|
  expect(result.failed).toBe(1);
 | 
						|
});
 |