2018-03-26 03:10:04 -04:00
|
|
|
import org.elasticsearch.gradle.LoggedExec
|
|
|
|
|
2018-02-23 07:31:28 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'runtime')
|
|
|
|
testCompile project(path: xpackModule('watcher'), configuration: 'runtime')
|
|
|
|
}
|
|
|
|
|
2018-03-26 03:10:04 -04:00
|
|
|
String integrationAccount = System.getenv('hipchat_auth_token_integration')
|
|
|
|
String userAccount = System.getenv('hipchat_auth_token_user')
|
|
|
|
String v1Account = System.getenv('hipchat_auth_token_v1')
|
2018-02-23 07:31:28 -05:00
|
|
|
|
|
|
|
integTestCluster {
|
|
|
|
plugin xpackProject('plugin').path
|
|
|
|
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'
|
|
|
|
setting 'xpack.notification.hipchat.account.integration_account.profile', 'integration'
|
|
|
|
setting 'xpack.notification.hipchat.account.integration_account.room', 'test-watcher'
|
|
|
|
setting 'xpack.notification.hipchat.account.user_account.profile', 'user'
|
|
|
|
setting 'xpack.notification.hipchat.account.v1_account.profile', 'v1'
|
2018-03-26 03:10:04 -04:00
|
|
|
keystoreSetting 'xpack.notification.hipchat.account.integration_account.secure_auth_token', integrationAccount
|
|
|
|
keystoreSetting 'xpack.notification.hipchat.account.user_account.secure_auth_token', userAccount
|
|
|
|
keystoreSetting 'xpack.notification.hipchat.account.v1_account.secure_auth_token', v1Account
|
2018-02-23 07:31:28 -05:00
|
|
|
}
|
|
|
|
|
2018-03-26 03:10:04 -04:00
|
|
|
if (!integrationAccount && !userAccount && !v1Account) {
|
|
|
|
integTest.enabled = false
|
2018-02-23 07:31:28 -05:00
|
|
|
}
|