chore: send structured codegen info to the debug controller (#18491)

This commit is contained in:
Pavel Feldman 2022-11-01 18:02:14 -07:00 коммит произвёл GitHub
Родитель 2183d9e9a2
Коммит 67c9624924
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
9 изменённых файлов: 39 добавлений и 15 удалений

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

@ -340,6 +340,9 @@ scheme.DebugControllerStateChangedEvent = tObject({
});
scheme.DebugControllerSourceChangedEvent = tObject({
text: tString,
header: tOptional(tString),
footer: tOptional(tString),
actions: tOptional(tArray(tString)),
});
scheme.DebugControllerBrowsersChangedEvent = tObject({
browsers: tArray(tObject({

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

@ -231,6 +231,7 @@ class InspectingRecorderApp extends EmptyRecorderApp {
override async setSources(sources: Source[]): Promise<void> {
const source = sources.find(s => s.id === this._debugController._codegenId);
this._debugController.emit(DebugController.Events.SourceChanged, source?.text || '');
const { text, header, footer, actions } = source || { text: '' };
this._debugController.emit(DebugController.Events.SourceChanged, { text, header, footer, actions });
}
}

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

@ -31,8 +31,8 @@ export class DebugControllerDispatcher extends Dispatcher<DebugController, chann
this._object.on(DebugController.Events.InspectRequested, ({ selector, locator }) => {
this._dispatchEvent('inspectRequested', { selector, locator });
});
this._object.on(DebugController.Events.SourceChanged, text => {
this._dispatchEvent('sourceChanged', { text });
this._object.on(DebugController.Events.SourceChanged, ({ text, header, footer, actions }) => {
this._dispatchEvent('sourceChanged', ({ text, header, footer, actions }));
});
}

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

@ -340,16 +340,20 @@ class ContextRecorder extends EventEmitter {
generator.on('change', () => {
this._recorderSources = [];
for (const languageGenerator of this._orderedLanguages) {
const { header, footer, actions, text } = generator.generateStructure(languageGenerator);
const source: Source = {
isRecorded: true,
label: languageGenerator.name,
group: languageGenerator.groupName,
id: languageGenerator.id,
text: generator.generateText(languageGenerator),
text,
header,
footer,
actions,
language: languageGenerator.highlighter,
highlight: []
};
source.revealLine = source.text.split('\n').length - 1;
source.revealLine = text.split('\n').length - 1;
this._recorderSources.push(source);
if (languageGenerator === this._orderedLanguages[0])
this._throttledOutputFile?.setContent(source.text);

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

@ -158,15 +158,11 @@ export class CodeGenerator extends EventEmitter {
}
}
generateText(languageGenerator: LanguageGenerator) {
const text = [];
text.push(languageGenerator.generateHeader(this._options));
for (const action of this._actions) {
const actionText = languageGenerator.generateAction(action);
if (actionText)
text.push(actionText);
}
text.push(languageGenerator.generateFooter(this._options.saveStorage));
return text.join('\n');
generateStructure(languageGenerator: LanguageGenerator) {
const header = languageGenerator.generateHeader(this._options);
const footer = languageGenerator.generateFooter(this._options.saveStorage);
const actions = this._actions.map(a => languageGenerator.generateAction(a)).filter(Boolean);
const text = [header, ...actions, footer].join('\n');
return { header, footer, actions, text };
}
}

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

@ -615,6 +615,9 @@ export type DebugControllerStateChangedEvent = {
};
export type DebugControllerSourceChangedEvent = {
text: string,
header?: string,
footer?: string,
actions?: string[],
};
export type DebugControllerBrowsersChangedEvent = {
browsers: {

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

@ -716,6 +716,12 @@ DebugController:
sourceChanged:
parameters:
text: string
header: string?
footer: string?
actions:
type: array?
items: string
# Deprecated
browsersChanged:

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

@ -63,6 +63,9 @@ export type Source = {
revealLine?: number;
// used to group the language generators
group?: string;
header?: string;
footer?: string;
actions?: string[];
};
declare global {

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

@ -161,6 +161,14 @@ test('should record', async ({ backend, connectedBrowser }) => {
await page.getByRole('button').click();
await expect.poll(() => events[events.length - 1]).toEqual({
header: `import { test, expect } from '@playwright/test';
test('test', async ({ page }) => {`,
footer: `});`,
actions: [
` await page.goto('about:blank');`,
` await page.getByRole('button', { name: 'Submit' }).click();`,
],
text: `import { test, expect } from '@playwright/test';
test('test', async ({ page }) => {