-
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.
[RAM] Bring back API integration (#146930)
Bring back API integration
- Loading branch information
Showing
10 changed files
with
76 additions
and
16 deletions.
There are no files selected for viewing
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
19 changes: 19 additions & 0 deletions
19
x-pack/test/alerting_api_integration/security_and_spaces/group3/config.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,19 @@ | ||
/* | ||
* 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 { createTestConfig } from '../../common/config'; | ||
|
||
// eslint-disable-next-line import/no-default-export | ||
export default createTestConfig('security_and_spaces', { | ||
disabledPlugins: [], | ||
license: 'trial', | ||
ssl: true, | ||
enableActionsProxy: true, | ||
publicBaseUrl: true, | ||
testFiles: [require.resolve('./tests')], | ||
useDedicatedTaskRunner: true, | ||
}); |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
30 changes: 30 additions & 0 deletions
30
x-pack/test/alerting_api_integration/security_and_spaces/group3/tests/alerting/index.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,30 @@ | ||
/* | ||
* 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 { FtrProviderContext } from '../../../../common/ftr_provider_context'; | ||
import { setupSpacesAndUsers, tearDown } from '../../../setup'; | ||
|
||
// eslint-disable-next-line import/no-default-export | ||
export default function alertingTests({ loadTestFile, getService }: FtrProviderContext) { | ||
describe('Alerts - Group 3', () => { | ||
describe('alerts', () => { | ||
before(async () => { | ||
await setupSpacesAndUsers(getService); | ||
}); | ||
|
||
after(async () => { | ||
await tearDown(getService); | ||
}); | ||
|
||
loadTestFile(require.resolve('./bulk_edit')); | ||
loadTestFile(require.resolve('./bulk_delete')); | ||
loadTestFile(require.resolve('./bulk_enable')); | ||
loadTestFile(require.resolve('./bulk_disable')); | ||
loadTestFile(require.resolve('./clone')); | ||
}); | ||
}); | ||
} |
15 changes: 15 additions & 0 deletions
15
x-pack/test/alerting_api_integration/security_and_spaces/group3/tests/index.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,15 @@ | ||
/* | ||
* 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 { FtrProviderContext } from '../../../../common/ftr_provider_context'; | ||
|
||
// eslint-disable-next-line import/no-default-export | ||
export default function alertingApiIntegrationTests({ loadTestFile }: FtrProviderContext) { | ||
describe('alerting api integration security and spaces enabled - Group 3', function () { | ||
loadTestFile(require.resolve('./alerting')); | ||
}); | ||
} |