Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Security Solution][API testing] Move and restructures Basic detection engine tests #171531

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
f14f019
move the detection engine tests that run in basic ess and essentials …
WafaaNasr Nov 20, 2023
581e862
remove old imports
WafaaNasr Nov 20, 2023
775dc58
remove the endpoint esarchive for resolver under serverless until we …
WafaaNasr Nov 20, 2023
f80b742
update codeowner
WafaaNasr Nov 20, 2023
3ace784
Merge branch 'main' of https://github.com/elastic/kibana into move-st…
WafaaNasr Nov 20, 2023
f4eae55
add the new essentials config for serverless in ftr
WafaaNasr Nov 20, 2023
d2e7149
fix basic license
WafaaNasr Nov 20, 2023
89fced2
Merge branch 'main' into move-structure-basic-detection_engine
WafaaNasr Nov 20, 2023
60e74fb
Merge branch 'main' of https://github.com/elastic/kibana into move-st…
WafaaNasr Nov 21, 2023
9739c03
Merge branch 'main' of https://github.com/elastic/kibana into move-st…
WafaaNasr Nov 21, 2023
fb0c9b4
fix runtime tests + organizing the tests
WafaaNasr Nov 21, 2023
aca34ad
Merge branch 'move-structure-basic-detection_engine' of https://githu…
WafaaNasr Nov 21, 2023
f229f3b
Merge branch 'main' of https://github.com/elastic/kibana into move-st…
WafaaNasr Nov 21, 2023
6db6a86
Merge branch 'main' into move-structure-basic-detection_engine
WafaaNasr Nov 22, 2023
a5333e0
Merge branch 'main' into move-structure-basic-detection_engine
WafaaNasr Nov 22, 2023
0d698d9
Merge branch 'main' into move-structure-basic-detection_engine
WafaaNasr Nov 22, 2023
5fe40b9
Merge branch 'main' into move-structure-basic-detection_engine
WafaaNasr Nov 22, 2023
1c2bf90
Merge branch 'main' into move-structure-basic-detection_engine
WafaaNasr Nov 23, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .buildkite/ftr_configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ disabled:
- x-pack/test/api_integration/config.ts
- x-pack/test/fleet_api_integration/config.base.ts
- x-pack/test/security_solution_api_integration/config/ess/config.base.ts
- x-pack/test/security_solution_api_integration/config/ess/config.base.basic.ts
- x-pack/test/security_solution_api_integration/config/serverless/config.base.ts
- x-pack/test/security_solution_api_integration/config/serverless/config.base.essentials.ts
- x-pack/test/security_solution_endpoint/config.base.ts
- x-pack/test/security_solution_endpoint_api_int/config.base.ts

Expand Down Expand Up @@ -486,3 +488,6 @@ enabled:
- x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/user_roles/configs/ess.config.ts
- x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/telemetry/configs/serverless.config.ts
- x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/telemetry/configs/ess.config.ts
- x-pack/test/security_solution_api_integration/test_suites/detections_response/basic_essentials_license/detection_engine/configs/serverless.config.ts
- x-pack/test/security_solution_api_integration/test_suites/detections_response/basic_essentials_license/detection_engine/configs/ess.config.ts

1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -1395,6 +1395,7 @@ x-pack/test/security_solution_api_integration/test_suites/detections_response/de
x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/actions @elastic/security-detection-engine
x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/alerts @elastic/security-detection-engine
x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/user_roles @elastic/security-detection-engine
x-pack/test/security_solution_api_integration/test_suites/detections_response/basic_essentials_license/detection_engine @elastic/security-detection-engine
/x-pack/plugins/security_solution/server/lib/detection_engine/scripts/roles_users @elastic/security-detection-engine

## Security Threat Intelligence - Under Security Platform
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { FtrProviderContext } from '../../common/ftr_provider_context';
// eslint-disable-next-line import/no-default-export
export default ({ loadTestFile }: FtrProviderContext): void => {
describe('detection engine api basic license', function () {
loadTestFile(require.resolve('./create_rules'));
loadTestFile(require.resolve('./create_rules_bulk'));
loadTestFile(require.resolve('./delete_rules'));
loadTestFile(require.resolve('./delete_rules_bulk'));
Expand All @@ -22,8 +21,6 @@ export default ({ loadTestFile }: FtrProviderContext): void => {
loadTestFile(require.resolve('./update_rules_bulk'));
loadTestFile(require.resolve('./patch_rules_bulk'));
loadTestFile(require.resolve('./patch_rules'));
loadTestFile(require.resolve('./query_signals'));
loadTestFile(require.resolve('./open_close_signals'));
loadTestFile(require.resolve('./import_timelines'));
loadTestFile(require.resolve('./coverage_overview'));
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export * from './get_rule_for_signal_testing_with_timestamp_override';
export * from './get_rule_with_web_hook_action';
export * from './get_rule_with_legacy_investigation_fields';
export * from './get_saved_query_rule_for_signal_testing';
export * from './get_signal_status';
export * from './get_signals_by_id';
export * from './get_signals_by_ids';
export * from './get_signals_by_rule_ids';
Expand Down
Loading
Loading