forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[discover] Enable data view editing from flyout (elastic#149453)
## Summary Currently, changes to a data view require a round trip to management when you're in discover. This PR allows editing of data views via flyout from within discover. Closes elastic#144801 ### Checklist Delete any items that are not applicable to this PR. - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios --------- Co-authored-by: Matthias Wilhelm <ankertal@gmail.com> Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
- Loading branch information
1 parent
97d3790
commit 9697e20
Showing
5 changed files
with
131 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* | ||
* 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 esArchiver = getService('esArchiver'); | ||
const kibanaServer = getService('kibanaServer'); | ||
const security = getService('security'); | ||
const es = getService('es'); | ||
const retry = getService('retry'); | ||
const PageObjects = getPageObjects([ | ||
'common', | ||
'unifiedSearch', | ||
'discover', | ||
'timePicker', | ||
'dashboard', | ||
]); | ||
|
||
describe('data view flyout', function () { | ||
before(async () => { | ||
await security.testUser.setRoles(['kibana_admin', 'test_logstash_reader']); | ||
await kibanaServer.importExport.load('test/functional/fixtures/kbn_archiver/discover.json'); | ||
await esArchiver.loadIfNeeded('test/functional/fixtures/es_archiver/logstash_functional'); | ||
|
||
await PageObjects.timePicker.setDefaultAbsoluteRangeViaUiSettings(); | ||
await PageObjects.common.navigateToApp('discover'); | ||
await PageObjects.timePicker.setCommonlyUsedTime('This_week'); | ||
}); | ||
|
||
after(async () => { | ||
await kibanaServer.savedObjects.cleanStandardList(); | ||
await esArchiver.unload('x-pack/test/functional/es_archives/logstash_functional'); | ||
await es.transport.request({ | ||
path: '/my-index-000001', | ||
method: 'DELETE', | ||
}); | ||
await es.transport.request({ | ||
path: '/my-index-000002', | ||
method: 'DELETE', | ||
}); | ||
}); | ||
|
||
it('create data view', async function () { | ||
const initialPattern = 'my-index-'; | ||
await es.transport.request({ | ||
path: '/my-index-000001/_doc', | ||
method: 'POST', | ||
body: { | ||
'@timestamp': new Date().toISOString(), | ||
a: 'GET /search HTTP/1.1 200 1070000', | ||
}, | ||
}); | ||
|
||
await es.transport.request({ | ||
path: '/my-index-000002/_doc', | ||
method: 'POST', | ||
body: { | ||
'@timestamp': new Date().toISOString(), | ||
b: 'GET /search HTTP/1.1 200 1070000', | ||
}, | ||
}); | ||
|
||
await PageObjects.discover.createAdHocDataView(initialPattern, true); | ||
expect(await PageObjects.discover.getCurrentlySelectedDataView()).to.be(`${initialPattern}*`); | ||
await PageObjects.discover.waitUntilSidebarHasLoaded(); | ||
|
||
expect(await PageObjects.discover.getHitCountInt()).to.be(2); | ||
expect((await PageObjects.discover.getAllFieldNames()).length).to.be(3); | ||
}); | ||
|
||
it('update data view', async function () { | ||
const updatedPattern = 'my-index-000001'; | ||
await PageObjects.discover.clickIndexPatternActions(); | ||
await PageObjects.unifiedSearch.editDataView(updatedPattern); | ||
|
||
await retry.try(async () => { | ||
expect(await PageObjects.discover.getHitCountInt()).to.be(1); | ||
}); | ||
expect((await PageObjects.discover.getAllFieldNames()).length).to.be(2); | ||
}); | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters