mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
In https://github.com/elastic/kibana/pull/31234 there were some extra changes that I've reverted, like use of the `tsconfig-paths` package to magically rewrite import statements to defy the standard node module resolution algorithm, the inclusion of several unnecessary options in the `test/tsconfig.json` file, and changes of the line-endings in the config files. This also brings a few enhancements from https://github.com/elastic/kibana/pull/30190 including a modularized version of the expect.js types, and options for explicit mappings for the PageObjects and services used in ftr tests.
54 lines
1.8 KiB
TypeScript
54 lines
1.8 KiB
TypeScript
/*
|
|
* 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.
|
|
*/
|
|
|
|
import { format as formatUrl } from 'url';
|
|
import { FtrProviderContext } from '../ftr_provider_context';
|
|
|
|
import { EsArchiver } from '../../../src/es_archiver';
|
|
// @ts-ignore not TS yet
|
|
import * as KibanaServer from './kibana_server';
|
|
|
|
export function EsArchiverProvider({ getService, hasService }: FtrProviderContext): EsArchiver {
|
|
const config = getService('config');
|
|
const client = getService('es');
|
|
const log = getService('log');
|
|
|
|
if (!config.get('esArchiver')) {
|
|
throw new Error(`esArchiver can't be used unless you specify it's config in your config file`);
|
|
}
|
|
|
|
const dataDir = config.get('esArchiver.directory');
|
|
|
|
const esArchiver = new EsArchiver({
|
|
client,
|
|
dataDir,
|
|
log,
|
|
kibanaUrl: formatUrl(config.get('servers.kibana')),
|
|
});
|
|
|
|
if (hasService('kibanaServer')) {
|
|
KibanaServer.extendEsArchiver({
|
|
esArchiver,
|
|
kibanaServer: getService('kibanaServer'),
|
|
defaults: config.get('uiSettings.defaults'),
|
|
});
|
|
}
|
|
|
|
return esArchiver;
|
|
}
|