-
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.
[SIEM] Add toaster logic for Machine Learning (#41401)
* Initial toaster logic * Updated toaster error handling * Cleanups of code not used * Added i18n support * Added missing i18n keys and fixed the name spaces of all of them * Added unit test * Added the rest of the unit tests * Updated from feedback from the PR review * Fix capitalization issue
- Loading branch information
1 parent
dcd2f57
commit 1f8c215
Showing
18 changed files
with
851 additions
and
301 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
x-pack/legacy/plugins/siem/public/components/ml/anomaly/translations.ts
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,14 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import { i18n } from '@kbn/i18n'; | ||
|
||
export const SIEM_TABLE_FETCH_FAILURE = i18n.translate( | ||
'xpack.siem.components.ml.anomaly.errors.anomaliesTableFetchFailureTitle', | ||
{ | ||
defaultMessage: 'Anomalies table fetch failure', | ||
} | ||
); |
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
126 changes: 126 additions & 0 deletions
126
x-pack/legacy/plugins/siem/public/components/ml/api/error_to_toaster.test.ts
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,126 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import { isAnError, isToasterError, errorToToaster } from './error_to_toaster'; | ||
import { ToasterErrors } from './throw_if_not_ok'; | ||
|
||
describe('error_to_toaster', () => { | ||
let dispatchToaster = jest.fn(); | ||
|
||
beforeEach(() => { | ||
dispatchToaster = jest.fn(); | ||
}); | ||
|
||
describe('#errorToToaster', () => { | ||
test('adds a ToastError given multiple toaster errors', () => { | ||
const error = new ToasterErrors(['some error 1', 'some error 2']); | ||
errorToToaster({ id: 'some-made-up-id', title: 'some title', error, dispatchToaster }); | ||
expect(dispatchToaster.mock.calls[0]).toEqual([ | ||
{ | ||
toast: { | ||
color: 'danger', | ||
errors: ['some error 1', 'some error 2'], | ||
iconType: 'alert', | ||
id: 'some-made-up-id', | ||
title: 'some title', | ||
}, | ||
type: 'addToaster', | ||
}, | ||
]); | ||
}); | ||
|
||
test('adds a ToastError given a single toaster errors', () => { | ||
const error = new ToasterErrors(['some error 1']); | ||
errorToToaster({ id: 'some-made-up-id', title: 'some title', error, dispatchToaster }); | ||
expect(dispatchToaster.mock.calls[0]).toEqual([ | ||
{ | ||
toast: { | ||
color: 'danger', | ||
errors: ['some error 1'], | ||
iconType: 'alert', | ||
id: 'some-made-up-id', | ||
title: 'some title', | ||
}, | ||
type: 'addToaster', | ||
}, | ||
]); | ||
}); | ||
|
||
test('adds a regular Error given a single error', () => { | ||
const error = new Error('some error 1'); | ||
errorToToaster({ id: 'some-made-up-id', title: 'some title', error, dispatchToaster }); | ||
expect(dispatchToaster.mock.calls[0]).toEqual([ | ||
{ | ||
toast: { | ||
color: 'danger', | ||
errors: ['some error 1'], | ||
iconType: 'alert', | ||
id: 'some-made-up-id', | ||
title: 'some title', | ||
}, | ||
type: 'addToaster', | ||
}, | ||
]); | ||
}); | ||
|
||
test('adds a generic Network Error given a non Error object such as a string', () => { | ||
const error = 'terrible string'; | ||
errorToToaster({ id: 'some-made-up-id', title: 'some title', error, dispatchToaster }); | ||
expect(dispatchToaster.mock.calls[0]).toEqual([ | ||
{ | ||
toast: { | ||
color: 'danger', | ||
errors: ['Network Error'], | ||
iconType: 'alert', | ||
id: 'some-made-up-id', | ||
title: 'some title', | ||
}, | ||
type: 'addToaster', | ||
}, | ||
]); | ||
}); | ||
}); | ||
|
||
describe('#isAnError', () => { | ||
test('returns true if given an error object', () => { | ||
const error = new Error('some error'); | ||
expect(isAnError(error)).toEqual(true); | ||
}); | ||
|
||
test('returns false if given a regular object', () => { | ||
expect(isAnError({})).toEqual(false); | ||
}); | ||
|
||
test('returns false if given a string', () => { | ||
expect(isAnError('som string')).toEqual(false); | ||
}); | ||
|
||
test('returns true if given a toaster error', () => { | ||
const error = new ToasterErrors(['some error']); | ||
expect(isAnError(error)).toEqual(true); | ||
}); | ||
}); | ||
|
||
describe('#isToasterError', () => { | ||
test('returns true if given a ToasterErrors object', () => { | ||
const error = new ToasterErrors(['some error']); | ||
expect(isToasterError(error)).toEqual(true); | ||
}); | ||
|
||
test('returns false if given a regular object', () => { | ||
expect(isToasterError({})).toEqual(false); | ||
}); | ||
|
||
test('returns false if given a string', () => { | ||
expect(isToasterError('som string')).toEqual(false); | ||
}); | ||
|
||
test('returns false if given a regular error', () => { | ||
const error = new Error('some error'); | ||
expect(isToasterError(error)).toEqual(false); | ||
}); | ||
}); | ||
}); |
67 changes: 67 additions & 0 deletions
67
x-pack/legacy/plugins/siem/public/components/ml/api/error_to_toaster.ts
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,67 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import { isError } from 'lodash/fp'; | ||
import uuid from 'uuid'; | ||
import { ActionToaster, AppToast } from '../../toasters'; | ||
import { ToasterErrorsType, ToasterErrors } from './throw_if_not_ok'; | ||
|
||
export type ErrorToToasterArgs = Partial<AppToast> & { | ||
error: unknown; | ||
dispatchToaster: React.Dispatch<ActionToaster>; | ||
}; | ||
|
||
export const errorToToaster = ({ | ||
id = uuid.v4(), | ||
title, | ||
error, | ||
color = 'danger', | ||
iconType = 'alert', | ||
dispatchToaster, | ||
}: ErrorToToasterArgs) => { | ||
if (isToasterError(error)) { | ||
const toast: AppToast = { | ||
id, | ||
title, | ||
color, | ||
iconType, | ||
errors: error.messages, | ||
}; | ||
dispatchToaster({ | ||
type: 'addToaster', | ||
toast, | ||
}); | ||
} else if (isAnError(error)) { | ||
const toast: AppToast = { | ||
id, | ||
title, | ||
color, | ||
iconType, | ||
errors: [error.message], | ||
}; | ||
dispatchToaster({ | ||
type: 'addToaster', | ||
toast, | ||
}); | ||
} else { | ||
const toast: AppToast = { | ||
id, | ||
title, | ||
color, | ||
iconType, | ||
errors: ['Network Error'], | ||
}; | ||
dispatchToaster({ | ||
type: 'addToaster', | ||
toast, | ||
}); | ||
} | ||
}; | ||
|
||
export const isAnError = (error: unknown): error is Error => isError(error); | ||
|
||
export const isToasterError = (error: unknown): error is ToasterErrorsType => | ||
error instanceof ToasterErrors; |
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
Oops, something went wrong.