34 lines
1.1 KiB
Groovy
34 lines
1.1 KiB
Groovy
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('ilm'), configuration: 'runtime')
|
|
}
|
|
|
|
def clusterCredentials = [username: System.getProperty('tests.rest.cluster.username', 'test_admin'),
|
|
password: System.getProperty('tests.rest.cluster.password', 'x-pack-test-password')]
|
|
|
|
task restTest(type: RestIntegTestTask) {
|
|
mustRunAfter(precommit)
|
|
runner {
|
|
systemProperty 'tests.rest.cluster.username', clusterCredentials.username
|
|
systemProperty 'tests.rest.cluster.password', clusterCredentials.password
|
|
}
|
|
}
|
|
|
|
testClusters.restTest {
|
|
distribution = 'DEFAULT'
|
|
setting 'xpack.ilm.enabled', 'true'
|
|
setting 'xpack.ml.enabled', 'false'
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
setting 'xpack.security.enabled', 'true'
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
user clusterCredentials
|
|
}
|
|
|
|
check.dependsOn restTest
|
|
test.enabled = false
|