feat(codegen): pytest support in codegen (#13746)

feat(codegen): pytest support in codegen
This commit is contained in:
Ronie Martinez 2022-05-04 10:41:20 +02:00 коммит произвёл GitHub
Родитель fee35346f7
Коммит 2c597f06bd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 105 добавлений и 7 удалений

Просмотреть файл

@ -306,8 +306,9 @@ class ContextRecorder extends EventEmitter {
new JavaLanguageGenerator(),
new JavaScriptLanguageGenerator(false),
new JavaScriptLanguageGenerator(true),
new PythonLanguageGenerator(false),
new PythonLanguageGenerator(true),
new PythonLanguageGenerator(false, false),
new PythonLanguageGenerator(true, false),
new PythonLanguageGenerator(false, true),
new CSharpLanguageGenerator(),
]);
const primaryLanguage = [...languages].find(l => l.id === language)!;

Просмотреть файл

@ -33,17 +33,22 @@ export class PythonLanguageGenerator implements LanguageGenerator {
private _awaitPrefix: '' | 'await ';
private _asyncPrefix: '' | 'async ';
private _isAsync: boolean;
private _isTest: boolean;
constructor(isAsync: boolean) {
this.id = isAsync ? 'python-async' : 'python';
this.fileName = isAsync ? 'Python Async' : 'Python';
constructor(isAsync: boolean, isTest: boolean) {
this.id = isTest ? 'pytest' : (isAsync ? 'python-async' : 'python');
this.fileName = isTest ? 'Pytest' : (isAsync ? 'Python Async' : 'Python');
this._isAsync = isAsync;
this._isTest = isTest;
this._awaitPrefix = isAsync ? 'await ' : '';
this._asyncPrefix = isAsync ? 'async ' : '';
}
generateAction(actionInContext: ActionInContext): string {
const action = actionInContext.action;
if (this._isTest && (action.name === 'openPage' || action.name === 'closePage'))
return '';
const pageAlias = actionInContext.frame.pageAlias;
const formatter = new PythonFormatter(4);
formatter.newLine();
@ -150,7 +155,23 @@ export class PythonLanguageGenerator implements LanguageGenerator {
generateHeader(options: LanguageGeneratorOptions): string {
const formatter = new PythonFormatter();
if (this._isAsync) {
if (this._isTest) {
formatter.add(`${options.deviceName ? 'import pytest\n' : ''}
from playwright.sync_api import Page, expect
${options.deviceName ? `
@pytest.fixture(scope="session")
def browser_context_args(browser_context_args, playwright) {
device = playwright.devices["${options.deviceName}"]
return dict(
**browser_context_args,
**device,
)
}
` : ''}
def test_example(page: Page) -> None {`);
} else if (this._isAsync) {
formatter.add(`
import asyncio
@ -173,7 +194,9 @@ def run(playwright: Playwright) -> None {
}
generateFooter(saveStorage: string | undefined): string {
if (this._isAsync) {
if (this._isTest) {
return '';
} else if (this._isAsync) {
const storageStateLine = saveStorage ? `\n await context.storage_state(path=${quote(saveStorage)})` : '';
return `\n # ---------------------${storageStateLine}
await context.close()

Просмотреть файл

@ -0,0 +1,74 @@
/**
* 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 fs from 'fs';
import path from 'path';
import { test, expect } from './inspectorTest';
const emptyHTML = new URL('file://' + path.join(__dirname, '..', '..', 'assets', 'empty.html')).toString();
test('should print the correct imports and context options', async ({ runCLI }) => {
const cli = runCLI(['--target=pytest', emptyHTML]);
const expectedResult = `from playwright.sync_api import Page, expect
def test_example(page: Page) -> None:`;
await cli.waitFor(expectedResult);
expect(cli.text()).toContain(expectedResult);
});
test('should print the correct context options when using a device', async ({ browserName, runCLI }, testInfo) => {
test.skip(browserName !== 'webkit');
const tmpFile = testInfo.outputPath('script.js');
const cli = runCLI(['--target=pytest', '--device=iPhone 11', '--output', tmpFile, emptyHTML]);
await cli.exited;
const content = fs.readFileSync(tmpFile);
expect(content.toString()).toBe(`import pytest
from playwright.sync_api import Page, expect
@pytest.fixture(scope="session")
def browser_context_args(browser_context_args, playwright):
device = playwright.devices["iPhone 11"]
return dict(
**browser_context_args,
**device,
)
def test_example(page: Page) -> None:
# Go to ${emptyHTML}
page.goto("${emptyHTML}")
`);
});
test('should save the codegen output to a file if specified', async ({ runCLI }, testInfo) => {
const tmpFile = testInfo.outputPath('script.js');
const cli = runCLI(['--target=pytest', '--output', tmpFile, emptyHTML]);
await cli.exited;
const content = fs.readFileSync(tmpFile);
expect(content.toString()).toBe(`from playwright.sync_api import Page, expect
def test_example(page: Page) -> None:
# Go to ${emptyHTML}
page.goto("${emptyHTML}")
`);
});