37 lines
1.1 KiB
Groovy
37 lines
1.1 KiB
Groovy
import org.elasticsearch.gradle.info.BuildParams
|
|
import org.elasticsearch.gradle.test.RestIntegTestTask
|
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
|
apply plugin: 'elasticsearch.standalone-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
testCompile project(path: xpackModule('autoscaling'), configuration: 'runtime')
|
|
}
|
|
|
|
restResources {
|
|
restApi {
|
|
includeCore '_common'
|
|
includeXpack 'autoscaling'
|
|
}
|
|
}
|
|
|
|
task restTest(type: RestIntegTestTask) {
|
|
mustRunAfter(precommit)
|
|
}
|
|
|
|
testClusters.restTest {
|
|
testDistribution = 'DEFAULT'
|
|
if (BuildParams.isSnapshotBuild() == false) {
|
|
systemProperty 'es.autoscaling_feature_flag_registered', 'true'
|
|
}
|
|
setting 'xpack.autoscaling.enabled', 'true'
|
|
setting 'xpack.security.enabled', 'true'
|
|
extraConfigFile 'roles.yml', file('autoscaling-roles.yml')
|
|
user username: 'autoscaling-admin', password: 'autoscaling-admin-password', role: 'superuser'
|
|
user username: 'autoscaling-user', password: 'autoscaling-user-password', role: 'autoscaling'
|
|
}
|
|
|
|
check.dependsOn restTest
|
|
test.enabled = false
|