mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 13:38:49 +00:00
49e30b15a2
We believe there's no longer a need to be able to disable basic-license features completely using the "xpack.*.enabled" settings. If users don't want to use those features, they simply don't need to use them. Having such features always available lets us build more complex features that assume basic-license features are present. This commit deprecates settings of the form "xpack.*.enabled" for basic-license features, excluding "security", which is a special case. It also removes deprecated settings from integration tests and unit tests where they're not directly relevant; e.g. monitoring and ILM are no longer disabled in many integration tests.
63 lines
2.2 KiB
Groovy
63 lines
2.2 KiB
Groovy
import org.elasticsearch.gradle.test.RestIntegTestTask
|
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
|
apply plugin: 'elasticsearch.standalone-test'
|
|
|
|
dependencies {
|
|
testCompile project(':x-pack:plugin:ccr:qa')
|
|
testCompile project(':x-pack:plugin:core')
|
|
testCompile project(':x-pack:plugin:ilm')
|
|
}
|
|
|
|
File repoDir = file("$buildDir/testclusters/repo")
|
|
|
|
task 'leader-cluster'(type: RestIntegTestTask) {
|
|
mustRunAfter(precommit)
|
|
runner {
|
|
systemProperty 'tests.target_cluster', 'leader'
|
|
/* To support taking index snapshots, we have to set path.repo setting */
|
|
systemProperty 'tests.path.repo', repoDir.absolutePath
|
|
}
|
|
}
|
|
|
|
testClusters.'leader-cluster' {
|
|
testDistribution = 'DEFAULT'
|
|
setting 'path.repo', repoDir.absolutePath
|
|
setting 'xpack.ccr.enabled', 'true'
|
|
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'
|
|
}
|
|
|
|
task 'follow-cluster'(type: RestIntegTestTask) {
|
|
dependsOn 'leader-cluster'
|
|
runner {
|
|
useCluster testClusters.'leader-cluster'
|
|
systemProperty 'tests.target_cluster', 'follow'
|
|
nonInputProperties.systemProperty 'tests.leader_host',
|
|
"${-> testClusters."leader-cluster".getAllHttpSocketURI().get(0)}"
|
|
nonInputProperties.systemProperty 'tests.leader_remote_cluster_seed',
|
|
"${-> testClusters.'leader-cluster'.getAllTransportPortURI().get(0)}"
|
|
/* To support taking index snapshots, we have to set path.repo setting */
|
|
systemProperty 'tests.path.repo', repoDir.absolutePath
|
|
}
|
|
}
|
|
|
|
testClusters.'follow-cluster' {
|
|
testDistribution = 'DEFAULT'
|
|
setting 'path.repo', repoDir.absolutePath
|
|
setting 'xpack.ccr.enabled', 'true'
|
|
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 'cluster.remote.leader_cluster.seeds',
|
|
{ "\"${testClusters.'leader-cluster'.getAllTransportPortURI().get(0)}\"" }
|
|
}
|
|
|
|
check.dependsOn 'follow-cluster'
|
|
test.enabled = false // no unit tests for this module, only the rest integration test
|