mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			198 lines
		
	
	
		
			7.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			198 lines
		
	
	
		
			7.3 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 filter by file name', async ({ runInlineTest }) => {
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'a.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('fails', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
    'b.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('fails', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
  }, undefined, undefined, { additionalArgs: ['a.spec.ts'] });
 | 
						|
  expect(result.exitCode).toBe(1);
 | 
						|
  expect(result.failed).toBe(1);
 | 
						|
  expect(result.output).toContain('1) a.spec.ts');
 | 
						|
});
 | 
						|
 | 
						|
test('should filter by folder', async ({ runInlineTest }) => {
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'foo/x.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('fails', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
    'foo/y.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('fails', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
    'bar/x.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('fails', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
    'bar/y.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('fails', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
  }, undefined, undefined, { additionalArgs: ['bar'] });
 | 
						|
  expect(result.exitCode).toBe(1);
 | 
						|
  expect(result.failed).toBe(2);
 | 
						|
  expect(result.output).toMatch(/bar[\\/]x.spec.ts/);
 | 
						|
  expect(result.output).toMatch(/bar[\\/]y.spec.ts/);
 | 
						|
});
 | 
						|
 | 
						|
test('should filter by line', async ({ runInlineTest }) => {
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'foo/x.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('one', () => { expect(1).toBe(2); });
 | 
						|
      test('two', () => { expect(1).toBe(2); });
 | 
						|
      test('three', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
    'foo/y.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('fails', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
  }, undefined, undefined, { additionalArgs: ['x.spec.ts:4'] });
 | 
						|
  expect(result.exitCode).toBe(1);
 | 
						|
  expect(result.failed).toBe(1);
 | 
						|
  expect(result.output).toMatch(/x\.spec\.ts.*two/);
 | 
						|
});
 | 
						|
 | 
						|
test('should filter by line and column', async ({ runInlineTest }) => {
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'foo/x.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('yes-full-match', () => { expect(1).toBe(1); });
 | 
						|
          test('no-wrong-column', () => { expect(1).toBe(2); });
 | 
						|
  test('yes-no-column-specified', () => { expect(1).toBe(1); });
 | 
						|
  test('no-match', () => { expect(1).toBe(1); });
 | 
						|
      test('yes-full-match-with-dirname', () => { expect(1).toBe(1); });
 | 
						|
      `,
 | 
						|
  }, undefined, undefined, { additionalArgs: ['x.spec.ts:3:11', 'x.spec.ts:4:99999', 'x.spec.ts:5', 'foo/x.spec.ts:7:11'] });
 | 
						|
  expect(result.exitCode).toBe(0);
 | 
						|
  expect(result.skipped).toBe(0);
 | 
						|
  expect(result.passed).toBe(3);
 | 
						|
  expect(result.report.suites[0].specs.map(spec => spec.title)).toEqual(['yes-full-match', 'yes-no-column-specified', 'yes-full-match-with-dirname']);
 | 
						|
});
 | 
						|
 | 
						|
test('line should override focused test', async ({ runInlineTest }) => {
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'foo/x.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test.only('one', () => { expect(1).toBe(2); });
 | 
						|
      test('two', () => { expect(1).toBe(2); });
 | 
						|
      test.only('three', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
    'foo/y.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('fails', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
  }, undefined, undefined, { additionalArgs: ['x.spec.ts:4'] });
 | 
						|
  expect(result.exitCode).toBe(1);
 | 
						|
  expect(result.failed).toBe(1);
 | 
						|
  expect(result.output).toMatch(/x\.spec\.ts.*two/);
 | 
						|
});
 | 
						|
 | 
						|
test('should merge filtered line and filtered file', async ({ runInlineTest }) => {
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'foo/x.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('one', () => { expect(1).toBe(2); });
 | 
						|
      test('two', () => { expect(1).toBe(2); });
 | 
						|
      test('three', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
    'foo/y.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('fails', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
  }, undefined, undefined, { additionalArgs: ['x.spec.ts:4', 'x.spec.ts'] });
 | 
						|
  expect(result.exitCode).toBe(1);
 | 
						|
  expect(result.failed).toBe(3);
 | 
						|
});
 | 
						|
 | 
						|
test('should run nothing for missing line', async ({ runInlineTest }) => {
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'foo/x.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('one', () => { expect(1).toBe(2); });
 | 
						|
      test('two', () => { expect(1).toBe(2); });
 | 
						|
      test('three', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
    'foo/y.spec.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('fails', () => { expect(1).toBe(2); });
 | 
						|
    `,
 | 
						|
  }, undefined, undefined, { additionalArgs: ['x.spec.ts:8', 'y.spec.ts'] });
 | 
						|
  expect(result.exitCode).toBe(1);
 | 
						|
  expect(result.failed).toBe(1);
 | 
						|
});
 | 
						|
 | 
						|
test('should focus a single nested test spec', async ({ runInlineTest }) => {
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'foo.test.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('pass1', ({}) => {});
 | 
						|
      test.describe('suite-1', () => {
 | 
						|
        test.describe('suite-2', () => {
 | 
						|
          test('pass2', ({}) => {});
 | 
						|
        });
 | 
						|
      });
 | 
						|
      test('pass3', ({}) => {});
 | 
						|
    `,
 | 
						|
    'bar.test.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('pass3', ({}) => {});
 | 
						|
    `,
 | 
						|
    'noooo.test.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('no-pass1', ({}) => {});
 | 
						|
    `,
 | 
						|
  }, {}, {}, { additionalArgs: ['foo.test.ts:6', 'bar.test.ts'] });
 | 
						|
  expect(result.exitCode).toBe(0);
 | 
						|
  expect(result.passed).toBe(2);
 | 
						|
  expect(result.skipped).toBe(0);
 | 
						|
  expect(result.report.suites[0].specs[0].title).toEqual('pass3');
 | 
						|
  expect(result.report.suites[1].suites[0].suites[0].specs[0].title).toEqual('pass2');
 | 
						|
});
 | 
						|
 | 
						|
test('should focus a single test suite', async ({ runInlineTest }) => {
 | 
						|
  const result = await runInlineTest({
 | 
						|
    'foo.test.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('pass1', ({}) => {});
 | 
						|
      test.describe('suite-1', () => {
 | 
						|
        test.describe('suite-2', () => {
 | 
						|
          test('pass2', ({}) => {});
 | 
						|
          test('pass3', ({}) => {});
 | 
						|
        });
 | 
						|
      });
 | 
						|
      test('pass4', ({}) => {});
 | 
						|
    `,
 | 
						|
    'bar.test.ts': `
 | 
						|
      import { test, expect } from '@playwright/test';
 | 
						|
      test('no-pass1', ({}) => {});
 | 
						|
    `,
 | 
						|
  }, {}, {}, { additionalArgs: ['foo.test.ts:5'] });
 | 
						|
  expect(result.exitCode).toBe(0);
 | 
						|
  expect(result.passed).toBe(2);
 | 
						|
  expect(result.skipped).toBe(0);
 | 
						|
  expect(result.report.suites[0].suites[0].suites[0].specs[0].title).toEqual('pass2');
 | 
						|
  expect(result.report.suites[0].suites[0].suites[0].specs[1].title).toEqual('pass3');
 | 
						|
}); |