Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 4 additions & 0 deletions .buildkite/ftr_oblt_serverless_configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ enabled:
- x-pack/test_serverless/functional/test_suites/observability/common_configs/config.group6.ts
- x-pack/test_serverless/functional/test_suites/observability/common_configs/config.group7.ts
- x-pack/test_serverless/functional/test_suites/observability/common_configs/config.group8.ts
- x-pack/test_serverless/functional/test_suites/observability/common_configs/config.group9.ts
- x-pack/test_serverless/functional/test_suites/observability/common_configs/config.group10.ts
- x-pack/test_serverless/functional/test_suites/observability/common_configs/config.group11.ts
- x-pack/test_serverless/functional/test_suites/observability/common_configs/config.group12.ts
- x-pack/test_serverless/functional/test_suites/observability/config.screenshots.ts
- x-pack/test_serverless/functional/test_suites/observability/config.telemetry.ts
# serverless config files that run deployment-agnostic tests
Expand Down
4 changes: 4 additions & 0 deletions .buildkite/ftr_search_serverless_configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,9 @@ enabled:
- x-pack/test_serverless/functional/test_suites/search/common_configs/config.group6.ts
- x-pack/test_serverless/functional/test_suites/search/common_configs/config.group7.ts
- x-pack/test_serverless/functional/test_suites/search/common_configs/config.group8.ts
- x-pack/test_serverless/functional/test_suites/search/common_configs/config.group9.ts
- x-pack/test_serverless/functional/test_suites/search/common_configs/config.group10.ts
- x-pack/test_serverless/functional/test_suites/search/common_configs/config.group11.ts
- x-pack/test_serverless/functional/test_suites/search/common_configs/config.group12.ts
# serverless config files that run deployment-agnostic tests
- x-pack/test/api_integration/deployment_agnostic/configs/serverless/search.serverless.config.ts
4 changes: 4 additions & 0 deletions .buildkite/ftr_security_serverless_configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ enabled:
- x-pack/test_serverless/functional/test_suites/security/common_configs/config.group6.ts
- x-pack/test_serverless/functional/test_suites/security/common_configs/config.group7.ts
- x-pack/test_serverless/functional/test_suites/security/common_configs/config.group8.ts
- x-pack/test_serverless/functional/test_suites/security/common_configs/config.group9.ts
- x-pack/test_serverless/functional/test_suites/security/common_configs/config.group10.ts
- x-pack/test_serverless/functional/test_suites/security/common_configs/config.group11.ts
- x-pack/test_serverless/functional/test_suites/security/common_configs/config.group12.ts
- x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/actions/trial_license_complete_tier/configs/serverless.config.ts
- x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/alerts/basic_license_essentials_tier/configs/serverless.config.ts
- x-pack/test/security_solution_api_integration/test_suites/detections_response/detection_engine/alerts/trial_license_complete_tier/configs/serverless.config.ts
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [
require.resolve('../../common/context'),
require.resolve('../../common/discover/esql'),
],
junit: {
reportName: 'Serverless Observability Functional Tests - Common Group 6',
},
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [
require.resolve('../../common/discover/group3'),
require.resolve('../../common/discover/group4'),
require.resolve('../../common/discover/group5'),
],
junit: {
reportName: 'Serverless Observability Functional Tests - Common Group 11',
},
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [require.resolve('../../common/discover/group6')],
junit: {
reportName: 'Serverless Observability Functional Tests - Common Group 12',
},
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
testFiles: [
require.resolve('../../common/discover/group1'),
require.resolve('../../common/discover/group2'),
require.resolve('../../common/discover/group3'),
require.resolve('../../common/discover/group4'),
require.resolve('../../common/discover/group5'),
require.resolve('../../common/discover/group6'),
],
junit: {
reportName: 'Serverless Observability Functional Tests - Common Group 5',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
testFiles: [
require.resolve('../../common/discover/embeddable'),
require.resolve('../../common/discover/x_pack'),
require.resolve('../../common/discover_ml_uptime/discover'),
require.resolve('../../common/context'),
require.resolve('../../common/discover/esql'),
],
junit: {
reportName: 'Serverless Observability Functional Tests - Common Group 6',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [require.resolve('../../common/discover_ml_uptime/discover')],
junit: {
reportName: 'Serverless Observability Functional Tests - Common Group 6',
},
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [
require.resolve('../../common/context'),
require.resolve('../../common/discover/esql'),
],
junit: {
reportName: 'Serverless Search Functional Tests - Common Group 10',
},
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [
require.resolve('../../common/discover/group3'), // 4 min
require.resolve('../../common/discover/group4'), // 4 min
require.resolve('../../common/discover/group5'), // 2 min
],
junit: {
reportName: 'Serverless Search Functional Tests - Common Group 11',
},
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [
require.resolve('../../common/discover/group6'), // 13 min
],
junit: {
reportName: 'Serverless Search Functional Tests - Common Group 12',
},
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,8 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
return {
...baseTestConfig.getAll(),
testFiles: [
require.resolve('../../common/discover/group1'),
require.resolve('../../common/discover/group2'),
require.resolve('../../common/discover/group3'),
require.resolve('../../common/discover/group4'),
require.resolve('../../common/discover/group5'),
require.resolve('../../common/discover/group6'),
require.resolve('../../common/discover/group1'), // 7 min
require.resolve('../../common/discover/group2'), // 4 min
],
junit: {
reportName: 'Serverless Search Functional Tests - Common Group 5',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [require.resolve('../../common/discover_ml_uptime/discover')],
junit: {
reportName: 'Serverless Search Functional Tests - Common Group 9',
},
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [
require.resolve('../../common/context'), // 5 min
require.resolve('../../common/discover/esql'), // 7 min
],
junit: {
reportName: 'Serverless Security Functional Tests - Common Group 10',
},
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [
require.resolve('../../common/discover/group3'),
require.resolve('../../common/discover/group4'),
require.resolve('../../common/discover/group5'),
],
junit: {
reportName: 'Serverless Security Functional Tests - Common Group 11',
},
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [require.resolve('../../common/discover/group6')],
junit: {
reportName: 'Serverless Security Functional Tests - Common Group 12',
},
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
testFiles: [
require.resolve('../../common/discover/group1'),
require.resolve('../../common/discover/group2'),
require.resolve('../../common/discover/group3'),
require.resolve('../../common/discover/group4'),
require.resolve('../../common/discover/group5'),
require.resolve('../../common/discover/group6'),
],
junit: {
reportName: 'Serverless Security Functional Tests - Common Group 5',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
return {
...baseTestConfig.getAll(),
testFiles: [
require.resolve('../../common/discover/embeddable'),
require.resolve('../../common/discover/x_pack'),
require.resolve('../../common/discover_ml_uptime/discover'),
require.resolve('../../common/context'),
require.resolve('../../common/discover/esql'),
require.resolve('../../common/discover/embeddable'), // 6 min
require.resolve('../../common/discover/x_pack'), // 8 min
],
junit: {
reportName: 'Serverless Security Functional Tests - Common Group 6',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* 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 { FtrConfigProviderContext } from '@kbn/test';

export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const baseTestConfig = await readConfigFile(require.resolve('../config.ts'));

return {
...baseTestConfig.getAll(),
testFiles: [
require.resolve('../../common/discover_ml_uptime/discover'), // 8 min
],
junit: {
reportName: 'Serverless Security Functional Tests - Common Group 9',
},
};
}