2019-06-20 02:21:29 -04:00
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
2018-02-23 07:31:28 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2019-06-04 16:50:23 -04:00
|
|
|
testCompile project(':x-pack:plugin:core')
|
2018-02-23 07:31:28 -05:00
|
|
|
testCompile project(path: xpackModule('watcher'), configuration: 'runtime')
|
|
|
|
}
|
|
|
|
|
2018-03-26 03:10:04 -04:00
|
|
|
String pagerDutyServiceKey = System.getenv('pagerduty_service_api_key')
|
2018-02-23 07:31:28 -05:00
|
|
|
|
2020-02-26 09:13:41 -05:00
|
|
|
restResources {
|
|
|
|
restApi {
|
|
|
|
includeXpack 'watcher'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-26 03:10:04 -04:00
|
|
|
if (!pagerDutyServiceKey) {
|
2018-12-05 07:20:01 -05:00
|
|
|
integTest.enabled = false
|
|
|
|
testingConventions.enabled = false
|
2019-06-20 02:21:29 -04:00
|
|
|
} else {
|
|
|
|
testClusters.integTest {
|
2020-02-26 09:13:41 -05:00
|
|
|
testDistribution = 'DEFAULT'
|
2019-06-20 02:21:29 -04:00
|
|
|
setting 'xpack.security.enabled', 'false'
|
|
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
|
|
setting 'xpack.ml.enabled', 'false'
|
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
|
|
setting 'logger.org.elasticsearch.xpack.watcher', 'DEBUG'
|
|
|
|
keystore 'xpack.notification.pagerduty.account.test_account.secure_service_api_key', pagerDutyServiceKey
|
|
|
|
}
|
2018-02-23 07:31:28 -05:00
|
|
|
}
|