forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Security Solution] Unlock Prebuil Rules Customization workflow for r…
…ules with missing base version (elastic#201301) **Resolves: elastic#200904 ## Summary This PR unlocks Prebuilt Rules Customization workflow for rules with missing base version. ## Details Each Prebuilt Rule update contains `version` diff. `version` is a special non-customizable field we use to track prebuilt rule version. It always gets target rule version's value after rule upgrade. A generic `numberDiffAlgorithm` algorithm was used for `version` field. It produces a `SOLVABLE` conflict when rule's base version is missing. It blocked the workflow in UI. We check the number of field with conflicts versus resolved conflicts to decide when a rule is ready for upgrade. In case `version` field got a conflict user had no possibility to resolve it. The fix adds a new `forceTargetVersionDiffAlgorithm` diff algorithm applied only for `version` field. It produces a non-conflict diff all the time even when base version is missing. The reason behind is that `version` always gets target rule's version.
- Loading branch information
1 parent
a0e4e30
commit 93711ee
Showing
13 changed files
with
156 additions
and
27 deletions.
There are no files selected for viewing
78 changes: 78 additions & 0 deletions
78
...built_rules/logic/diff/calculation/algorithms/force_target_version_diff_algorithm.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,78 @@ | ||
/* | ||
* 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 type { ThreeVersionsOf } from '../../../../../../../../common/api/detection_engine'; | ||
import { | ||
ThreeWayMergeOutcome, | ||
MissingVersion, | ||
ThreeWayDiffConflict, | ||
} from '../../../../../../../../common/api/detection_engine'; | ||
import { forceTargetVersionDiffAlgorithm } from './force_target_version_diff_algorithm'; | ||
|
||
describe('forceTargetVersionDiffAlgorithm', () => { | ||
describe('when base version exists', () => { | ||
it('returns a NON conflict diff', () => { | ||
const mockVersions: ThreeVersionsOf<number> = { | ||
base_version: 1, | ||
current_version: 1, | ||
target_version: 2, | ||
}; | ||
|
||
const result = forceTargetVersionDiffAlgorithm(mockVersions); | ||
|
||
expect(result).toMatchObject({ | ||
conflict: ThreeWayDiffConflict.NONE, | ||
}); | ||
}); | ||
|
||
it('return merge outcome TARGET', () => { | ||
const mockVersions: ThreeVersionsOf<number> = { | ||
base_version: 1, | ||
current_version: 1, | ||
target_version: 2, | ||
}; | ||
|
||
const result = forceTargetVersionDiffAlgorithm(mockVersions); | ||
|
||
expect(result).toMatchObject({ | ||
has_base_version: true, | ||
merge_outcome: ThreeWayMergeOutcome.Target, | ||
}); | ||
}); | ||
}); | ||
|
||
describe('when base version missing', () => { | ||
it('returns a NON conflict diff', () => { | ||
const mockVersions: ThreeVersionsOf<number> = { | ||
base_version: MissingVersion, | ||
current_version: 1, | ||
target_version: 2, | ||
}; | ||
|
||
const result = forceTargetVersionDiffAlgorithm(mockVersions); | ||
|
||
expect(result).toMatchObject({ | ||
conflict: ThreeWayDiffConflict.NONE, | ||
}); | ||
}); | ||
|
||
it('return merge outcome TARGET', () => { | ||
const mockVersions: ThreeVersionsOf<number> = { | ||
base_version: MissingVersion, | ||
current_version: 1, | ||
target_version: 2, | ||
}; | ||
|
||
const result = forceTargetVersionDiffAlgorithm(mockVersions); | ||
|
||
expect(result).toMatchObject({ | ||
has_base_version: false, | ||
merge_outcome: ThreeWayMergeOutcome.Target, | ||
}); | ||
}); | ||
}); | ||
}); |
45 changes: 45 additions & 0 deletions
45
...e/prebuilt_rules/logic/diff/calculation/algorithms/force_target_version_diff_algorithm.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,45 @@ | ||
/* | ||
* 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 type { | ||
ThreeVersionsOf, | ||
ThreeWayDiff, | ||
} from '../../../../../../../../common/api/detection_engine/prebuilt_rules'; | ||
import { | ||
MissingVersion, | ||
ThreeWayDiffConflict, | ||
ThreeWayMergeOutcome, | ||
determineDiffOutcome, | ||
} from '../../../../../../../../common/api/detection_engine/prebuilt_rules'; | ||
|
||
/** | ||
* Diff algorithm forcing target version. Useful for special fields like `version`. | ||
*/ | ||
export const forceTargetVersionDiffAlgorithm = <TValue>( | ||
versions: ThreeVersionsOf<TValue> | ||
): ThreeWayDiff<TValue> => { | ||
const { | ||
base_version: baseVersion, | ||
current_version: currentVersion, | ||
target_version: targetVersion, | ||
} = versions; | ||
const hasBaseVersion = baseVersion !== MissingVersion; | ||
const hasUpdate = targetVersion !== currentVersion; | ||
|
||
return { | ||
has_base_version: hasBaseVersion, | ||
base_version: hasBaseVersion ? baseVersion : undefined, | ||
current_version: currentVersion, | ||
target_version: targetVersion, | ||
merged_version: targetVersion, | ||
merge_outcome: ThreeWayMergeOutcome.Target, | ||
|
||
diff_outcome: determineDiffOutcome(baseVersion, currentVersion, targetVersion), | ||
has_update: hasUpdate, | ||
conflict: ThreeWayDiffConflict.NONE, | ||
}; | ||
}; |
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
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
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
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
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
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