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 action groups in the new api integration test folder #169234

Merged
merged 26 commits into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ba9743f
move add and update actions
WafaaNasr Oct 18, 2023
3a69213
Merge branch 'main' of https://github.com/elastic/kibana into move-st…
WafaaNasr Oct 18, 2023
5de22f4
remove old files from group1
WafaaNasr Oct 18, 2023
cf9b28f
Update add_actions.ts
vitaliidm Oct 19, 2023
b1c2087
Update create_new_action.ts
vitaliidm Oct 19, 2023
c0f47da
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine Oct 19, 2023
915ed9a
update apis in index.ts
WafaaNasr Oct 23, 2023
d1ea0eb
Merge branch 'move-structure-actions-api' of https://github.com/Wafaa…
WafaaNasr Oct 23, 2023
c8cf67f
Merge branch 'main' of https://github.com/elastic/kibana into move-st…
WafaaNasr Oct 23, 2023
a67bbdb
move legacy actions migrations
WafaaNasr Oct 23, 2023
d5b1a56
Merge branch 'main' of https://github.com/elastic/kibana into move-st…
WafaaNasr Oct 23, 2023
db199a8
add all actions migrations under migrations and mark 7.16 as brokenin…
WafaaNasr Oct 23, 2023
9be7abb
remove brokenInServerless
WafaaNasr Oct 23, 2023
e3e690d
Merge branch 'main' of https://github.com/elastic/kibana into move-st…
WafaaNasr Oct 23, 2023
c7b7953
Merge branch 'main' of https://github.com/elastic/kibana into move-st…
WafaaNasr Oct 24, 2023
b22dbcd
only run legacy actions migrations in ESS
WafaaNasr Oct 24, 2023
bbf3f35
Merge branch 'main' into move-structure-actions-api
WafaaNasr Oct 24, 2023
b08de34
Merge branch 'main' into move-structure-actions-api
WafaaNasr Oct 25, 2023
ffd671e
Merge branch 'main' of https://github.com/elastic/kibana into move-st…
WafaaNasr Oct 25, 2023
46463db
add qa commad for actions
WafaaNasr Oct 25, 2023
c5b6030
Merge branch 'move-structure-actions-api' of https://github.com/Wafaa…
WafaaNasr Oct 25, 2023
13b150e
Merge branch 'main' into move-structure-actions-api
WafaaNasr Oct 27, 2023
4701f95
fix conflict
WafaaNasr Oct 30, 2023
81c11e1
unify commands and skip the failing tests in qa
WafaaNasr Oct 30, 2023
3840356
Merge branch 'main' of https://github.com/elastic/kibana into move-st…
WafaaNasr Oct 30, 2023
0ee8663
Merge branch 'move-structure-actions-api' of https://github.com/Wafaa…
WafaaNasr Oct 30, 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
4 changes: 3 additions & 1 deletion .buildkite/ftr_configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,9 @@ enabled:
- x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/exceptions/operators_data_types/ips_text_array/configs/ess.config.ts
- x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_creation/configs/serverless.config.ts
- x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/rule_creation/configs/ess.config.ts

- x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/actions/configs/serverless.config.ts
- x-pack/test/security_solution_api_integration/test_suites/detections_response/default_license/actions/configs/ess.config.ts




Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ export default ({ loadTestFile }: FtrProviderContext): void => {
// existence being near 0.

loadTestFile(require.resolve('./aliases'));
loadTestFile(require.resolve('./add_actions'));
yctercero marked this conversation as resolved.
Show resolved Hide resolved
loadTestFile(require.resolve('./update_actions'));
loadTestFile(require.resolve('./check_privileges'));
loadTestFile(require.resolve('./create_index'));
loadTestFile(require.resolve('./preview_rules'));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export default ({ loadTestFile }: FtrProviderContext): void => {
loadTestFile(require.resolve('./get_rule_execution_results'));
loadTestFile(require.resolve('./import_rules'));
loadTestFile(require.resolve('./import_export_rules'));
loadTestFile(require.resolve('./legacy_actions_migrations'));
loadTestFile(require.resolve('./read_rules'));
loadTestFile(require.resolve('./resolve_read_rules'));
loadTestFile(require.resolve('./update_rules'));
Expand All @@ -36,7 +35,6 @@ export default ({ loadTestFile }: FtrProviderContext): void => {
loadTestFile(require.resolve('./runtime'));
loadTestFile(require.resolve('./throttle'));
loadTestFile(require.resolve('./ignore_fields'));
loadTestFile(require.resolve('./migrations'));
loadTestFile(require.resolve('./risk_engine/init_and_status_apis'));
loadTestFile(require.resolve('./risk_engine/risk_score_preview'));
loadTestFile(require.resolve('./risk_engine/risk_score_calculation'));
Expand Down

This file was deleted.

Loading
Loading