mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
Add CCS Tests For Data Views (#138861)
* Updated test to use uiSettings. * Added ccs tests for data views. * [CI] Auto-commit changed files from 'node scripts/eslint --no-cache --fix' * Added more tests. * Removed exclusive suites * [CI] Auto-commit changed files from 'node scripts/precommit_hook.js --ref HEAD~1..HEAD --fix' * Reenabled all other CCS tests. * Fixed merge conflict. * Removed this from beforeeach and aftereach calls. * Removed erroneous comment. Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
0d7770898f
commit
ba4f11f7e9
3 changed files with 126 additions and 0 deletions
|
@ -0,0 +1,95 @@
|
|||
/*
|
||||
* 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 { FtrProviderContext } from '../../../ftr_provider_context';
|
||||
|
||||
export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
||||
const kibanaServer = getService('kibanaServer');
|
||||
const testSubjects = getService('testSubjects');
|
||||
const es = getService('es');
|
||||
const PageObjects = getPageObjects(['settings', 'common', 'header']);
|
||||
const security = getService('security');
|
||||
|
||||
describe('data views ccs', function () {
|
||||
before(async function () {
|
||||
await security.testUser.setRoles(['kibana_admin']);
|
||||
});
|
||||
|
||||
describe('index pattern wizard ccs', () => {
|
||||
describe('remote cluster only', async () => {
|
||||
beforeEach(async function () {
|
||||
await kibanaServer.uiSettings.replace({});
|
||||
await PageObjects.settings.navigateTo();
|
||||
await PageObjects.settings.clickKibanaIndexPatterns();
|
||||
});
|
||||
it('create index pattern using remote name', async () => {
|
||||
await PageObjects.settings.createIndexPattern('ftr-remote:logstash*', null);
|
||||
await PageObjects.settings.clickKibanaIndexPatterns();
|
||||
const indexPatternList = await PageObjects.settings.getIndexPatternList();
|
||||
expect(indexPatternList.length).to.eql(1);
|
||||
});
|
||||
it('create index pattern with wildcards in remote name', async () => {
|
||||
await PageObjects.settings.createIndexPattern('*t*-remo*:log*', null);
|
||||
await PageObjects.settings.clickKibanaIndexPatterns();
|
||||
const indexPatternList = await PageObjects.settings.getIndexPatternList();
|
||||
expect(indexPatternList.length).to.eql(1);
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
await PageObjects.header.waitUntilLoadingHasFinished();
|
||||
await testSubjects.exists('indexPatternTable');
|
||||
await kibanaServer.savedObjects.cleanStandardList();
|
||||
});
|
||||
});
|
||||
describe('remote and local clusters', async () => {
|
||||
before(async () => {
|
||||
await es.transport.request({
|
||||
path: '/blogs/_doc',
|
||||
method: 'POST',
|
||||
body: { user: 'cuffs', message: 20 },
|
||||
});
|
||||
});
|
||||
|
||||
beforeEach(async function () {
|
||||
// delete .kibana index and then wait for Kibana to re-create it
|
||||
await kibanaServer.uiSettings.replace({});
|
||||
await PageObjects.settings.navigateTo();
|
||||
await PageObjects.settings.clickKibanaIndexPatterns();
|
||||
});
|
||||
it('combined remote cluster and local cluster data view without wildcards', async () => {
|
||||
await PageObjects.settings.createIndexPattern('blog*, ftr-remote:log*', null);
|
||||
await PageObjects.settings.clickKibanaIndexPatterns();
|
||||
const indexPatternList = await PageObjects.settings.getIndexPatternList();
|
||||
expect(indexPatternList.length).to.eql(1);
|
||||
});
|
||||
it('combined remote cluster and local cluster data view with wildcards', async () => {
|
||||
await PageObjects.settings.createIndexPattern('blog*, *t*-remo*:lo*', null);
|
||||
await PageObjects.settings.clickKibanaIndexPatterns();
|
||||
const indexPatternList = await PageObjects.settings.getIndexPatternList();
|
||||
expect(indexPatternList.length).to.eql(1);
|
||||
});
|
||||
|
||||
afterEach(async () => {
|
||||
await PageObjects.header.waitUntilLoadingHasFinished();
|
||||
await testSubjects.exists('indexPatternTable');
|
||||
await kibanaServer.savedObjects.cleanStandardList();
|
||||
});
|
||||
after(async () => {
|
||||
await es.transport.request({
|
||||
path: '/blogs',
|
||||
method: 'DELETE',
|
||||
});
|
||||
});
|
||||
});
|
||||
after(async () => {
|
||||
await security.testUser.restoreDefaults();
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
30
test/functional/apps/management/ccs_compatibility/index.ts
Normal file
30
test/functional/apps/management/ccs_compatibility/index.ts
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* 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 { FtrProviderContext } from '../../../ftr_provider_context';
|
||||
|
||||
export default function ({ getService, loadTestFile }: FtrProviderContext) {
|
||||
const remoteEsArchiver = getService('remoteEsArchiver' as 'esArchiver');
|
||||
const esArchiver = getService('esArchiver');
|
||||
|
||||
describe('management', function () {
|
||||
before(async () => {
|
||||
await remoteEsArchiver.loadIfNeeded(
|
||||
'test/functional/fixtures/es_archiver/logstash_functional'
|
||||
);
|
||||
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/makelogs');
|
||||
});
|
||||
|
||||
after(async () => {
|
||||
await remoteEsArchiver.unload('test/functional/fixtures/es_archiver/logstash_functional');
|
||||
await esArchiver.unload('test/functional/fixtures/es_archiver/makelogs');
|
||||
});
|
||||
|
||||
loadTestFile(require.resolve('./_data_views_ccs'));
|
||||
});
|
||||
}
|
|
@ -21,6 +21,7 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
|
|||
require.resolve('./apps/dashboard/group3'),
|
||||
require.resolve('./apps/discover/ccs_compatibility'),
|
||||
require.resolve('./apps/console/_console_ccs'),
|
||||
require.resolve('./apps/management/ccs_compatibility'),
|
||||
],
|
||||
|
||||
services: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue