mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 21:18:31 +00:00
* Restrict which tasks can use testclusters This PR fixes a problem between the interaction of test-clusters and build cache. Before this any task could have used a cluster without tracking it as input. With this change a new interface is introduced to track the tasks that can use clusters and we do consider the cluster as input for all of them.
56 lines
1.9 KiB
Groovy
56 lines
1.9 KiB
Groovy
import org.elasticsearch.gradle.test.RestIntegTestTask
|
|
import org.elasticsearch.gradle.testclusters.RestTestRunnerTask
|
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
|
apply plugin: 'elasticsearch.standalone-test'
|
|
|
|
dependencies {
|
|
testCompile project(':x-pack:plugin:ccr:qa')
|
|
}
|
|
|
|
task 'leader-cluster'(type: RestIntegTestTask) {
|
|
mustRunAfter(precommit)
|
|
runner {
|
|
systemProperty 'tests.target_cluster', 'leader'
|
|
}
|
|
}
|
|
testClusters.'leader-cluster' {
|
|
testDistribution = 'DEFAULT'
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
}
|
|
|
|
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)}"
|
|
}
|
|
}
|
|
testClusters.'follow-cluster' {
|
|
testDistribution = 'DEFAULT'
|
|
setting 'xpack.monitoring.collection.enabled', 'true'
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
setting 'cluster.remote.leader_cluster.seeds',
|
|
{ "\"${testClusters.'leader-cluster'.getAllTransportPortURI().get(0)}\"" }
|
|
nameCustomization = { 'follow' }
|
|
}
|
|
|
|
task followClusterRestartTest(type: RestTestRunnerTask) {
|
|
dependsOn tasks.'follow-cluster'
|
|
useCluster testClusters.'leader-cluster'
|
|
useCluster testClusters.'follow-cluster'
|
|
|
|
systemProperty 'tests.rest.load_packaged', 'false'
|
|
systemProperty 'tests.target_cluster', 'follow-restart'
|
|
doFirst {
|
|
testClusters.'follow-cluster'.restart()
|
|
nonInputProperties.systemProperty 'tests.leader_host', "${-> testClusters.'leader-cluster'.getAllHttpSocketURI().get(0)}"
|
|
nonInputProperties.systemProperty 'tests.rest.cluster', "${-> testClusters.'follow-cluster'.getAllHttpSocketURI().join(",")}"
|
|
}
|
|
}
|
|
|
|
check.dependsOn followClusterRestartTest
|
|
test.enabled = false
|