[Security Solutions][Detection Engine] Fixes bug with not being able to duplicate indicator matches#92565
Merged
FrankHassanabad merged 7 commits intoelastic:masterfrom Feb 24, 2021
Conversation
yctercero
reviewed
Feb 24, 2021
| }); | ||
| }); | ||
|
|
||
| describe('Duplicates the indicator rule', () => { |
Contributor
There was a problem hiding this comment.
🎉 nice, this always feels great to add more tests here.
yctercero
reviewed
Feb 24, 2021
x-pack/plugins/security_solution/cypress/screens/alerts_detection_rules.ts
Show resolved
Hide resolved
rylnd
approved these changes
Feb 24, 2021
Contributor
rylnd
left a comment
There was a problem hiding this comment.
LGTM, thanks for the fix and the added coverage!
yctercero
reviewed
Feb 24, 2021
| const response = await duplicateRules({ | ||
| // We cast this back and forth here as the front end types are not really the right io-ts ones | ||
| // and the two types conflict with each other. | ||
| rules: rules.map((rule) => transformOutput(rule as CreateRulesSchema) as Rule), |
Contributor
There was a problem hiding this comment.
I ran into the same thing with exceptions. I ended up creating two functions to deal with the two type scenarios, but thought about doing the as as well.
export const transformOutput = (
exceptionItem: UpdateExceptionListItemSchema | ExceptionListItemSchema
): UpdateExceptionListItemSchema | ExceptionListItemSchema =>
flow(removeIdFromExceptionItemsEntries)(exceptionItem);
export const transformNewItemOutput = (
exceptionItem: CreateExceptionListItemSchema
): CreateExceptionListItemSchema => flow(removeIdFromExceptionItemsEntries)(exceptionItem);
Contributor
Author
There was a problem hiding this comment.
Thanks for letting me know
yctercero
approved these changes
Feb 24, 2021
Contributor
yctercero
left a comment
There was a problem hiding this comment.
LGTM - awesome tests! Curious to see how much pipe helps.
kibanamachine
pushed a commit
to kibanamachine/kibana
that referenced
this pull request
Feb 24, 2021
…to duplicate indicator matches (elastic#92565) ## Summary Fixes an unreleased regression bug where indicator rules could not be be duplicated. elastic#90356 - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios
kibanamachine
pushed a commit
to kibanamachine/kibana
that referenced
this pull request
Feb 24, 2021
…to duplicate indicator matches (elastic#92565) ## Summary Fixes an unreleased regression bug where indicator rules could not be be duplicated. elastic#90356 - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios
Contributor
kibanamachine
added a commit
that referenced
this pull request
Feb 25, 2021
…to duplicate indicator matches (#92565) (#92717) ## Summary Fixes an unreleased regression bug where indicator rules could not be be duplicated. #90356 - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios Co-authored-by: Frank Hassanabad <frank.hassanabad@elastic.co>
gmmorris
added a commit
to gmmorris/kibana
that referenced
this pull request
Feb 25, 2021
* master: (38 commits) Fixes Cypress flake by adding pipe, click, and should (elastic#92762) [Discover] Fix filtering selected sidebar fields (elastic#91828) [ML] Fixes positions of calendar arrow buttons in start datafeed modal (elastic#92625) [dev/build_ts_refs] check that commit in outDirs matches mergeBase (elastic#92513) add dep on `@kbn/config` so it is built first [Expressions] [Lens] Add id and copyMetaFrom arg to mapColumn fn + add configurable onError argument to math fn (elastic#90481) [Lens] Fix Workspace hidden when using Safari (elastic#92616) [Lens] Fixes vertical alignment validation messages (elastic#91878) forbid x-elastic-product-origin header in elasticsearch configuration (elastic#92359) [Security Solution][Detections] Set default indicator path to reduce friction with new filebeat modules (elastic#92081) [ILM][Accessibility] Added A11y test for ILM new policy form. (elastic#92570) [Security Solution][Exceptions] - Fixes exceptions builder UI where invalid values can cause overwrites of other values (elastic#90634) Automatically generated Api documentation (elastic#86232) Increase index pattern select limit to 1000 (elastic#92093) [core.logging] Add RewriteAppender for filtering LogMeta. (elastic#91492) [Security Solution][Detection Rules] Update prebuilt rule threats to match schema (elastic#92281) [Security Solutions][Detection Engine] Fixes bug with not being able to duplicate indicator matches (elastic#92565) [Dashboard] Export appropriate references from byValue panels (elastic#91567) [Upgrade Assistant] Align code between branches (elastic#91862) [Security Solution][Case] Fix alerts push (elastic#91638) ...
kibanamachine
added a commit
that referenced
this pull request
Feb 25, 2021
…to duplicate indicator matches (#92565) (#92716) ## Summary Fixes an unreleased regression bug where indicator rules could not be be duplicated. #90356 - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios Co-authored-by: Frank Hassanabad <frank.hassanabad@elastic.co>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes an unreleased regression bug where indicator rules could not be be duplicated.
#90356