mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 11:05:39 -04:00
[Logs UI] Prevent broken KIP references from breaking the Logs UI (#98532)
This fixes problems in handling broken KIP references and reduces the risk of broken references occurring the first place.
This commit is contained in:
parent
577948bea3
commit
0e948cffc9
33 changed files with 809 additions and 280 deletions
|
@ -5,6 +5,8 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { SavedObject } from '../../../../../../src/core/server';
|
||||
import { infraSourceConfigurationSavedObjectName } from './saved_object_type';
|
||||
import { InfraSources } from './sources';
|
||||
|
||||
describe('the InfraSources lib', () => {
|
||||
|
@ -18,9 +20,10 @@ describe('the InfraSources lib', () => {
|
|||
id: 'TEST_ID',
|
||||
version: 'foo',
|
||||
updated_at: '2000-01-01T00:00:00.000Z',
|
||||
type: infraSourceConfigurationSavedObjectName,
|
||||
attributes: {
|
||||
metricAlias: 'METRIC_ALIAS',
|
||||
logIndices: { type: 'index_pattern', indexPatternId: 'LOG_ALIAS' },
|
||||
logIndices: { type: 'index_pattern', indexPatternId: 'log_index_pattern_0' },
|
||||
fields: {
|
||||
container: 'CONTAINER',
|
||||
host: 'HOST',
|
||||
|
@ -29,6 +32,13 @@ describe('the InfraSources lib', () => {
|
|||
timestamp: 'TIMESTAMP',
|
||||
},
|
||||
},
|
||||
references: [
|
||||
{
|
||||
id: 'LOG_INDEX_PATTERN',
|
||||
name: 'log_index_pattern_0',
|
||||
type: 'index-pattern',
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
expect(
|
||||
|
@ -39,7 +49,7 @@ describe('the InfraSources lib', () => {
|
|||
updatedAt: 946684800000,
|
||||
configuration: {
|
||||
metricAlias: 'METRIC_ALIAS',
|
||||
logIndices: { type: 'index_pattern', indexPatternId: 'LOG_ALIAS' },
|
||||
logIndices: { type: 'index_pattern', indexPatternId: 'LOG_INDEX_PATTERN' },
|
||||
fields: {
|
||||
container: 'CONTAINER',
|
||||
host: 'HOST',
|
||||
|
@ -70,12 +80,14 @@ describe('the InfraSources lib', () => {
|
|||
const request: any = createRequestContext({
|
||||
id: 'TEST_ID',
|
||||
version: 'foo',
|
||||
type: infraSourceConfigurationSavedObjectName,
|
||||
updated_at: '2000-01-01T00:00:00.000Z',
|
||||
attributes: {
|
||||
fields: {
|
||||
container: 'CONTAINER',
|
||||
},
|
||||
},
|
||||
references: [],
|
||||
});
|
||||
|
||||
expect(
|
||||
|
@ -106,8 +118,10 @@ describe('the InfraSources lib', () => {
|
|||
const request: any = createRequestContext({
|
||||
id: 'TEST_ID',
|
||||
version: 'foo',
|
||||
type: infraSourceConfigurationSavedObjectName,
|
||||
updated_at: '2000-01-01T00:00:00.000Z',
|
||||
attributes: {},
|
||||
references: [],
|
||||
});
|
||||
|
||||
expect(
|
||||
|
@ -140,7 +154,7 @@ const createMockStaticConfiguration = (sources: any) => ({
|
|||
sources,
|
||||
});
|
||||
|
||||
const createRequestContext = (savedObject?: any) => {
|
||||
const createRequestContext = (savedObject?: SavedObject<unknown>) => {
|
||||
return {
|
||||
core: {
|
||||
savedObjects: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue