-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[lens] re-group functional tests in 6 groups
- Loading branch information
1 parent
f2e7825
commit 9c386f9
Showing
45 changed files
with
147 additions
and
84 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
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
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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,17 @@ | ||
/* | ||
* 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; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import { FtrConfigProviderContext } from '@kbn/test'; | ||
|
||
export default async function ({ readConfigFile }: FtrConfigProviderContext) { | ||
const functionalConfig = await readConfigFile(require.resolve('../../../config.base.js')); | ||
|
||
return { | ||
...functionalConfig.getAll(), | ||
testFiles: [require.resolve('.')], | ||
}; | ||
} |
File renamed without changes.
File renamed without changes.
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,88 @@ | ||
/* | ||
* 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; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import { EsArchiver } from '@kbn/es-archiver'; | ||
import { FtrProviderContext } from '../../../ftr_provider_context'; | ||
|
||
export default ({ getService, loadTestFile, getPageObjects }: FtrProviderContext) => { | ||
const browser = getService('browser'); | ||
const log = getService('log'); | ||
const esArchiver = getService('esArchiver'); | ||
const kibanaServer = getService('kibanaServer'); | ||
const PageObjects = getPageObjects(['timePicker']); | ||
const config = getService('config'); | ||
let remoteEsArchiver; | ||
|
||
describe('lens app - group 6', () => { | ||
const esArchive = 'x-pack/test/functional/es_archives/logstash_functional'; | ||
const localIndexPatternString = 'logstash-*'; | ||
const remoteIndexPatternString = 'ftr-remote:logstash-*'; | ||
const localFixtures = { | ||
lensBasic: 'x-pack/test/functional/fixtures/kbn_archiver/lens/lens_basic.json', | ||
lensDefault: 'x-pack/test/functional/fixtures/kbn_archiver/lens/default', | ||
}; | ||
|
||
const remoteFixtures = { | ||
lensBasic: 'x-pack/test/functional/fixtures/kbn_archiver/lens/ccs/lens_basic.json', | ||
lensDefault: 'x-pack/test/functional/fixtures/kbn_archiver/lens/ccs/default', | ||
}; | ||
let esNode: EsArchiver; | ||
let fixtureDirs: { | ||
lensBasic: string; | ||
lensDefault: string; | ||
}; | ||
let indexPatternString: string; | ||
before(async () => { | ||
log.debug('Starting lens before method'); | ||
await browser.setWindowSize(1280, 1200); | ||
await kibanaServer.savedObjects.cleanStandardList(); | ||
try { | ||
config.get('esTestCluster.ccs'); | ||
remoteEsArchiver = getService('remoteEsArchiver' as 'esArchiver'); | ||
esNode = remoteEsArchiver; | ||
fixtureDirs = remoteFixtures; | ||
indexPatternString = remoteIndexPatternString; | ||
} catch (error) { | ||
esNode = esArchiver; | ||
fixtureDirs = localFixtures; | ||
indexPatternString = localIndexPatternString; | ||
} | ||
|
||
await esNode.load(esArchive); | ||
// changing the timepicker default here saves us from having to set it in Discover (~8s) | ||
await PageObjects.timePicker.setDefaultAbsoluteRangeViaUiSettings(); | ||
await kibanaServer.uiSettings.update({ | ||
defaultIndex: indexPatternString, | ||
'dateFormat:tz': 'UTC', | ||
}); | ||
await kibanaServer.importExport.load(fixtureDirs.lensBasic); | ||
await kibanaServer.importExport.load(fixtureDirs.lensDefault); | ||
}); | ||
|
||
after(async () => { | ||
await esArchiver.unload(esArchive); | ||
await PageObjects.timePicker.resetDefaultAbsoluteRangeViaUiSettings(); | ||
await kibanaServer.importExport.unload(fixtureDirs.lensBasic); | ||
await kibanaServer.importExport.unload(fixtureDirs.lensDefault); | ||
await kibanaServer.savedObjects.cleanStandardList(); | ||
}); | ||
|
||
// total run time ~16m | ||
loadTestFile(require.resolve('./metric')); // 4m 7s | ||
loadTestFile(require.resolve('./legacy_metric')); // 29s | ||
loadTestFile(require.resolve('./disable_auto_apply')); // 1m 6s | ||
loadTestFile(require.resolve('./reference_lines')); // 1m | ||
loadTestFile(require.resolve('./annotations')); // 1m | ||
loadTestFile(require.resolve('./inspector')); // 1m 19s | ||
loadTestFile(require.resolve('./error_handling')); // 1m 8s | ||
loadTestFile(require.resolve('./lens_tagging')); // 1m 9s | ||
loadTestFile(require.resolve('./lens_reporting')); // 3m | ||
// keep these two last in the group in this order because they are messing with the default saved objects | ||
loadTestFile(require.resolve('./rollup')); // 1m 30s | ||
loadTestFile(require.resolve('./no_data')); // 36s | ||
}); | ||
}; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.