mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
81 lines
3.6 KiB
JavaScript
81 lines
3.6 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 default function ({ getService, loadTestFile, getPageObjects }) {
|
|
const remote = getService('remote');
|
|
const esArchiver = getService('esArchiver');
|
|
const PageObjects = getPageObjects(['dashboard']);
|
|
|
|
describe('dashboard app', function () {
|
|
describe('using current data', function () {
|
|
before(async () => {
|
|
await remote.setWindowSize(1300, 900);
|
|
await PageObjects.dashboard.initTests({
|
|
kibanaIndex: 'dashboard/current/kibana',
|
|
dataIndex: 'dashboard/current/data',
|
|
defaultIndex: 'logstash-*',
|
|
});
|
|
await PageObjects.dashboard.preserveCrossAppState();
|
|
});
|
|
|
|
after(async function () {
|
|
await PageObjects.dashboard.clearSavedObjectsFromAppLinks();
|
|
await esArchiver.unload('dashboard/current/kibana');
|
|
await esArchiver.unload('dashboard/current/data');
|
|
});
|
|
|
|
// This has to be first since the other tests create some embeddables as side affects and our counting assumes
|
|
// a fresh index.
|
|
loadTestFile(require.resolve('./_empty_dashboard'));
|
|
loadTestFile(require.resolve('./_dark_theme'));
|
|
loadTestFile(require.resolve('./_embeddable_rendering'));
|
|
loadTestFile(require.resolve('./_create_and_add_embeddables'));
|
|
loadTestFile(require.resolve('./_time_zones'));
|
|
loadTestFile(require.resolve('./_dashboard_options'));
|
|
loadTestFile(require.resolve('./_data_shared_attributes'));
|
|
loadTestFile(require.resolve('./_embed_mode'));
|
|
loadTestFile(require.resolve('./_full_screen_mode'));
|
|
loadTestFile(require.resolve('./_dashboard_filter_bar'));
|
|
|
|
// TODO: unskip when https://github.com/elastic/kibana/issues/20442 is fixed
|
|
//loadTestFile(require.resolve('./_dashboard_filtering'));
|
|
|
|
loadTestFile(require.resolve('./_panel_expand_toggle'));
|
|
loadTestFile(require.resolve('./_dashboard_grid'));
|
|
loadTestFile(require.resolve('./_dashboard_snapshots'));
|
|
loadTestFile(require.resolve('./_view_edit'));
|
|
});
|
|
|
|
// Each of these tests call initTests themselves, the way it was originally written. The above tests only load
|
|
// the data once to save on time. Eventually, all of these tests should just use current data and we can reserve
|
|
// legacy data only for specifically testing BWC situations.
|
|
describe('using legacy data', function () {
|
|
before(() => remote.setWindowSize(1200, 900));
|
|
|
|
loadTestFile(require.resolve('./_dashboard_time_picker'));
|
|
loadTestFile(require.resolve('./_bwc_shared_urls'));
|
|
loadTestFile(require.resolve('./_panel_controls'));
|
|
loadTestFile(require.resolve('./_dashboard_state'));
|
|
loadTestFile(require.resolve('./_dashboard_save'));
|
|
loadTestFile(require.resolve('./_dashboard_time'));
|
|
loadTestFile(require.resolve('./_dashboard_listing'));
|
|
loadTestFile(require.resolve('./_dashboard_clone'));
|
|
});
|
|
});
|
|
}
|