33 lines
1003 B
Groovy
33 lines
1003 B
Groovy
import org.elasticsearch.gradle.util.GradleUtils
|
|
|
|
apply plugin: 'elasticsearch.java-rest-test'
|
|
|
|
dependencies {
|
|
javaRestTestImplementation project(path: xpackProject('plugin').path, configuration: 'testArtifacts')
|
|
}
|
|
|
|
// let the javaRestTest see the classpath of main
|
|
GradleUtils.extendSourceSet(project, "main", "javaRestTest", javaRestTest)
|
|
|
|
|
|
File repoDir = file("$buildDir/testclusters/repo")
|
|
|
|
javaRestTest {
|
|
/* To support taking index snapshots, we have to set path.repo setting */
|
|
systemProperty 'tests.path.repo', repoDir
|
|
}
|
|
|
|
testClusters.all {
|
|
testDistribution = 'DEFAULT'
|
|
numberOfNodes = 4
|
|
|
|
setting 'path.repo', repoDir.absolutePath
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.watcher.enabled', 'false'
|
|
setting 'xpack.ml.enabled', 'false'
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
setting 'indices.lifecycle.poll_interval', '1000ms'
|
|
setting 'logger.org.elasticsearch.xpack.core.ilm', 'TRACE'
|
|
setting 'logger.org.elasticsearch.xpack.ilm', 'TRACE'
|
|
}
|