2019-06-13 05:18:55 -04:00
|
|
|
import org.elasticsearch.gradle.test.RestIntegTestTask
|
|
|
|
|
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
2018-10-18 15:33:33 -04:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile project(path: xpackProject('plugin').path, configuration: 'testArtifacts')
|
|
|
|
}
|
|
|
|
|
2019-06-13 05:18:55 -04:00
|
|
|
File repoDir = file("$buildDir/testclusters/repo")
|
|
|
|
|
|
|
|
integTest.runner {
|
2019-01-23 11:46:31 -05:00
|
|
|
/* To support taking index snapshots, we have to set path.repo setting */
|
2019-06-13 05:18:55 -04:00
|
|
|
systemProperty 'tests.path.repo', repoDir
|
2019-01-23 11:46:31 -05:00
|
|
|
}
|
|
|
|
|
2019-06-13 05:18:55 -04:00
|
|
|
testClusters.integTest {
|
|
|
|
distribution = 'DEFAULT'
|
|
|
|
numberOfNodes = 4
|
2018-10-18 15:33:33 -04:00
|
|
|
|
2019-06-13 05:18:55 -04:00
|
|
|
setting 'path.repo', repoDir.absolutePath
|
2018-10-18 15:33:33 -04:00
|
|
|
setting 'xpack.ilm.enabled', 'true'
|
|
|
|
setting 'xpack.security.enabled', 'false'
|
|
|
|
setting 'xpack.watcher.enabled', 'false'
|
|
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
|
|
setting 'xpack.ml.enabled', 'false'
|
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
2018-10-31 20:09:35 -04:00
|
|
|
setting 'indices.lifecycle.poll_interval', '1000ms'
|
2018-10-18 15:33:33 -04:00
|
|
|
}
|