mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* Add feature flag to display a blank overview page when enabled * Add tests for overview page feature flag * Fix types * Fix more types * Remove duplicated BucketSize type * fix linter Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
114 lines
3.9 KiB
TypeScript
114 lines
3.9 KiB
TypeScript
/*
|
|
* 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 { useTimeRange } from './use_time_range';
|
|
import * as pluginContext from './use_plugin_context';
|
|
import { AppMountParameters, CoreStart } from 'kibana/public';
|
|
import { ObservabilityPublicPluginsStart } from '../plugin';
|
|
import * as kibanaUISettings from './use_kibana_ui_settings';
|
|
import { createObservabilityRuleTypeRegistryMock } from '../rules/observability_rule_type_registry_mock';
|
|
|
|
jest.mock('react-router-dom', () => ({
|
|
useLocation: () => ({
|
|
pathname: '/observability/overview/',
|
|
search: '',
|
|
}),
|
|
}));
|
|
|
|
describe('useTimeRange', () => {
|
|
beforeAll(() => {
|
|
jest.spyOn(pluginContext, 'usePluginContext').mockImplementation(() => ({
|
|
core: {} as CoreStart,
|
|
appMountParameters: {} as AppMountParameters,
|
|
config: {
|
|
unsafe: {
|
|
alertingExperience: { enabled: true },
|
|
cases: { enabled: true },
|
|
overviewNext: { enabled: false },
|
|
},
|
|
},
|
|
plugins: {
|
|
data: {
|
|
query: {
|
|
timefilter: {
|
|
timefilter: {
|
|
getTime: jest.fn().mockImplementation(() => ({
|
|
from: '2020-10-08T06:00:00.000Z',
|
|
to: '2020-10-08T07:00:00.000Z',
|
|
})),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
} as unknown as ObservabilityPublicPluginsStart,
|
|
observabilityRuleTypeRegistry: createObservabilityRuleTypeRegistryMock(),
|
|
ObservabilityPageTemplate: () => null,
|
|
}));
|
|
jest.spyOn(kibanaUISettings, 'useKibanaUISettings').mockImplementation(() => ({
|
|
from: '2020-10-08T05:00:00.000Z',
|
|
to: '2020-10-08T06:00:00.000Z',
|
|
}));
|
|
});
|
|
|
|
describe('when range from and to are not provided', () => {
|
|
describe('when data plugin has time set', () => {
|
|
it('returns ranges and absolute times from data plugin', () => {
|
|
const relativeStart = '2020-10-08T06:00:00.000Z';
|
|
const relativeEnd = '2020-10-08T07:00:00.000Z';
|
|
const timeRange = useTimeRange();
|
|
expect(timeRange).toEqual({
|
|
relativeStart,
|
|
relativeEnd,
|
|
absoluteStart: new Date(relativeStart).valueOf(),
|
|
absoluteEnd: new Date(relativeEnd).valueOf(),
|
|
});
|
|
});
|
|
});
|
|
describe("when data plugin doesn't have time set", () => {
|
|
beforeAll(() => {
|
|
jest.spyOn(pluginContext, 'usePluginContext').mockImplementation(() => ({
|
|
core: {} as CoreStart,
|
|
appMountParameters: {} as AppMountParameters,
|
|
config: {
|
|
unsafe: {
|
|
alertingExperience: { enabled: true },
|
|
cases: { enabled: true },
|
|
overviewNext: { enabled: false },
|
|
},
|
|
},
|
|
plugins: {
|
|
data: {
|
|
query: {
|
|
timefilter: {
|
|
timefilter: {
|
|
getTime: jest.fn().mockImplementation(() => ({
|
|
from: undefined,
|
|
to: undefined,
|
|
})),
|
|
},
|
|
},
|
|
},
|
|
},
|
|
} as unknown as ObservabilityPublicPluginsStart,
|
|
observabilityRuleTypeRegistry: createObservabilityRuleTypeRegistryMock(),
|
|
ObservabilityPageTemplate: () => null,
|
|
}));
|
|
});
|
|
it('returns ranges and absolute times from kibana default settings', () => {
|
|
const relativeStart = '2020-10-08T05:00:00.000Z';
|
|
const relativeEnd = '2020-10-08T06:00:00.000Z';
|
|
const timeRange = useTimeRange();
|
|
expect(timeRange).toEqual({
|
|
relativeStart,
|
|
relativeEnd,
|
|
absoluteStart: new Date(relativeStart).valueOf(),
|
|
absoluteEnd: new Date(relativeEnd).valueOf(),
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|