kibana/test/functional/page_objects/timelion_page.js
Spencer 27bd635397
[esArchiver] refresh all, stop being too clever (#35186)
* [esArchiver] refresh all, stop being too clever

* wait for save notification before ending tests

I have a hunch that Timelion/Kibana are still mucking with the .kibana index when the test ends, and the `esArchiver.unload()` call is conflicting because of those modifications being still in progress.
2019-04-17 08:20:23 -07:00

93 lines
3.4 KiB
JavaScript

/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you 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.
*/
export function TimelionPageProvider({ getService, getPageObjects }) {
const testSubjects = getService('testSubjects');
const find = getService('find');
const log = getService('log');
const PageObjects = getPageObjects(['common', 'header']);
const esArchiver = getService('esArchiver');
const kibanaServer = getService('kibanaServer');
class TimelionPage {
async initTests() {
await kibanaServer.uiSettings.replace({
'defaultIndex': 'logstash-*'
});
log.debug('load kibana index');
await esArchiver.load('timelion');
await PageObjects.common.navigateToApp('timelion');
}
async setExpression(expression) {
const input = await testSubjects.find('timelionExpressionTextArea');
await input.clearValue();
await input.type(expression);
}
async updateExpression(updates) {
const input = await testSubjects.find('timelionExpressionTextArea');
await input.type(updates);
await PageObjects.common.sleep(500);
}
async getExpression() {
const input = await testSubjects.find('timelionExpressionTextArea');
return input.getVisibleText();
}
async getSuggestionItemsText() {
const elements = await find.allByCssSelector('[data-test-subj="timelionSuggestionListItem"]');
return await Promise.all(elements.map(async element => await element.getVisibleText()));
}
async clickSuggestion(suggestionIndex = 0, waitTime = 500) {
const elements = await find.allByCssSelector('[data-test-subj="timelionSuggestionListItem"]');
if (suggestionIndex > elements.length) {
throw new Error(`Unable to select suggestion ${suggestionIndex}, only ${elements.length} suggestions available.`);
}
await elements[suggestionIndex].click();
// Wait for timelion expression to be updated after clicking suggestions
await PageObjects.common.sleep(waitTime);
}
async saveTimelionSheet() {
await testSubjects.click('timelionSaveButton');
await testSubjects.click('timelionSaveAsSheetButton');
await testSubjects.click('timelionFinishSaveButton');
await testSubjects.existOrFail('timelionSaveSuccessToast');
await testSubjects.waitForDeleted('timelionSaveSuccessToast');
}
async expectWriteControls() {
await testSubjects.existOrFail('timelionSaveButton');
await testSubjects.existOrFail('timelionDeleteButton');
}
async expectMissingWriteControls() {
await testSubjects.missingOrFail('timelionSaveButton');
await testSubjects.missingOrFail('timelionDeleteButton');
}
}
return new TimelionPage();
}