2018-02-23 07:31:28 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2018-08-21 20:03:28 -04:00
|
|
|
testCompile "org.elasticsearch.plugin:x-pack-core:${version}"
|
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
|
|
|
|
|
|
|
integTestCluster {
|
|
|
|
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'
|
2018-03-26 03:10:04 -04:00
|
|
|
keystoreSetting 'xpack.notification.pagerduty.account.test_account.secure_service_api_key', pagerDutyServiceKey
|
2018-02-23 07:31:28 -05:00
|
|
|
}
|
|
|
|
|
2018-03-26 03:10:04 -04:00
|
|
|
if (!pagerDutyServiceKey) {
|
2018-02-23 07:31:28 -05:00
|
|
|
integTest.enabled = false
|
|
|
|
}
|