kibana/test/functional/page_objects/vega_chart_page.ts
Spencer 4f4cf054de
[7.x] [ts] migrate root test dir to project refs (#99148) (#101416)
* [ts] migrate root test dir to project refs (#99148)

Co-authored-by: spalger <spalger@users.noreply.github.com>

* include schema files in telemetry ts project

Co-authored-by: spalger <spalger@users.noreply.github.com>
2021-06-04 16:22:00 -04:00

110 lines
3.3 KiB
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
import expect from '@kbn/expect';
import { FtrService } from '../ftr_provider_context';
const compareSpecs = (first: string, second: string) => {
const normalizeSpec = (spec: string) => spec.replace(/[\n ]/g, '');
return normalizeSpec(first) === normalizeSpec(second);
};
export class VegaChartPageObject extends FtrService {
private readonly find = this.ctx.getService('find');
private readonly testSubjects = this.ctx.getService('testSubjects');
private readonly browser = this.ctx.getService('browser');
private readonly retry = this.ctx.getService('retry');
public getEditor() {
return this.testSubjects.find('vega-editor');
}
public getViewContainer() {
return this.find.byCssSelector('div.vgaVis__view');
}
public getControlContainer() {
return this.find.byCssSelector('div.vgaVis__controls');
}
public getYAxisContainer() {
return this.find.byCssSelector('[aria-label^="Y-axis"]');
}
public async getAceGutterContainer() {
const editor = await this.getEditor();
return editor.findByClassName('ace_gutter');
}
public async getRawSpec() {
// Adapted from console_page.js:getVisibleTextFromAceEditor(). Is there a common utilities file?
const editor = await this.getEditor();
const lines = await editor.findAllByClassName('ace_line_group');
return await Promise.all(
lines.map(async (line) => {
return await line.getVisibleText();
})
);
}
public async getSpec() {
return (await this.getRawSpec()).join('\n');
}
public async focusEditor() {
const editor = await this.getEditor();
const textarea = await editor.findByClassName('ace_content');
await textarea.click();
}
public async fillSpec(newSpec: string) {
await this.retry.try(async () => {
await this.cleanSpec();
await this.focusEditor();
await this.browser.pressKeys(newSpec);
expect(compareSpecs(await this.getSpec(), newSpec)).to.be(true);
});
}
public async typeInSpec(text: string) {
const aceGutter = await this.getAceGutterContainer();
await aceGutter.doubleClick();
await this.browser.pressKeys(this.browser.keys.RIGHT);
await this.browser.pressKeys(this.browser.keys.LEFT);
await this.browser.pressKeys(this.browser.keys.LEFT);
await this.browser.pressKeys(text);
}
public async cleanSpec() {
const aceGutter = await this.getAceGutterContainer();
await this.retry.try(async () => {
await aceGutter.doubleClick();
await this.browser.pressKeys(this.browser.keys.BACK_SPACE);
expect(await this.getSpec()).to.be('');
});
}
public async getYAxisLabels() {
const yAxis = await this.getYAxisContainer();
const tickGroup = await yAxis.findByClassName('role-axis-label');
const labels = await tickGroup.findAllByCssSelector('text');
const labelTexts: string[] = [];
for (const label of labels) {
labelTexts.push(await label.getVisibleText());
}
return labelTexts;
}
}