2016-09-02 11:10:17 -04:00
|
|
|
/*
|
|
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
|
|
* license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright
|
|
|
|
* ownership. Elasticsearch licenses this file to you under
|
|
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*/
|
2016-08-31 19:45:03 -04:00
|
|
|
|
|
|
|
import org.elasticsearch.gradle.test.RestIntegTestTask
|
2017-05-18 04:14:24 -04:00
|
|
|
import org.elasticsearch.gradle.Version
|
2016-08-31 19:45:03 -04:00
|
|
|
|
2016-09-06 18:51:14 -04:00
|
|
|
apply plugin: 'elasticsearch.standalone-test'
|
|
|
|
|
2017-05-18 04:14:24 -04:00
|
|
|
// This is a top level task which we will add dependencies to below.
|
|
|
|
// It is a single task that can be used to backcompat tests against all versions.
|
|
|
|
task bwcTest {
|
|
|
|
description = 'Runs backwards compatibility tests.'
|
|
|
|
group = 'verification'
|
Build: Rework integ test setup and shutdown to ensure stop runs when desired (#23304)
Gradle's finalizedBy on tasks only ensures one task runs after another,
but not immediately after. This is problematic for our integration tests
since it allows multiple project's integ test clusters to be
simultaneously. While this has not been a problem thus far (gradle 2.13
happened to keep the finalizedBy tasks close enough that no clusters
were running in parallel), with gradle 3.3 the task graph generation has
changed, and numerous clusters may be running simultaneously, causing
memory pressure, and thus generally slower tests, or even failure if the
system has a limited amount of memory (eg in a vagrant host).
This commit reworks how integ tests are configured. It adds an
`integTestCluster` extension to gradle which is equivalent to the current
`integTest.cluster` and moves the rest test runner task to
`integTestRunner`. The `integTest` task is then just a dummy task,
which depends on the cluster runner task, as well as the cluster stop
task. This means running `integTest` in one project will both run the
rest tests, and shut down the cluster, before running `integTest` in
another project.
2017-02-22 15:43:15 -05:00
|
|
|
}
|
|
|
|
|
2018-02-09 15:55:10 -05:00
|
|
|
for (Version version : bwcVersions.wireCompatible) {
|
2018-05-21 13:15:13 -04:00
|
|
|
/*
|
|
|
|
* The goal here is to:
|
|
|
|
* <ul>
|
|
|
|
* <li>start three nodes on the old version
|
|
|
|
* <li>run tests with systemProperty 'tests.rest.suite', 'old_cluster'
|
|
|
|
* <li>shut down one node
|
|
|
|
* <li>start a node with the new version
|
|
|
|
* <li>run tests with systemProperty 'tests.rest.suite', 'mixed_cluster'
|
|
|
|
* <li>shut down one node on the old version
|
|
|
|
* <li>start a node with the new version
|
|
|
|
* <li>run tests with systemProperty 'tests.rest.suite', 'mixed_cluster' again
|
|
|
|
* <li>shut down the last node with the old version
|
|
|
|
* <li>start a node with the new version
|
|
|
|
* <li>run tests with systemProperty 'tests.rest.suite', 'upgraded_cluster'
|
|
|
|
* <li>shut down the entire cluster
|
|
|
|
* </ul>
|
|
|
|
*
|
|
|
|
* Be careful: gradle dry run spits out tasks in the wrong order but,
|
|
|
|
* strangely, running the tasks works properly.
|
|
|
|
*/
|
2017-05-18 04:14:24 -04:00
|
|
|
String baseName = "v${version}"
|
Build: Rework integ test setup and shutdown to ensure stop runs when desired (#23304)
Gradle's finalizedBy on tasks only ensures one task runs after another,
but not immediately after. This is problematic for our integration tests
since it allows multiple project's integ test clusters to be
simultaneously. While this has not been a problem thus far (gradle 2.13
happened to keep the finalizedBy tasks close enough that no clusters
were running in parallel), with gradle 3.3 the task graph generation has
changed, and numerous clusters may be running simultaneously, causing
memory pressure, and thus generally slower tests, or even failure if the
system has a limited amount of memory (eg in a vagrant host).
This commit reworks how integ tests are configured. It adds an
`integTestCluster` extension to gradle which is equivalent to the current
`integTest.cluster` and moves the rest test runner task to
`integTestRunner`. The `integTest` task is then just a dummy task,
which depends on the cluster runner task, as well as the cluster stop
task. This means running `integTest` in one project will both run the
rest tests, and shut down the cluster, before running `integTest` in
another project.
2017-02-22 15:43:15 -05:00
|
|
|
|
2017-05-18 04:14:24 -04:00
|
|
|
Task oldClusterTest = tasks.create(name: "${baseName}#oldClusterTest", type: RestIntegTestTask) {
|
|
|
|
mustRunAfter(precommit)
|
|
|
|
}
|
2016-08-31 19:45:03 -04:00
|
|
|
|
2017-05-18 04:14:24 -04:00
|
|
|
configure(extensions.findByName("${baseName}#oldClusterTestCluster")) {
|
|
|
|
bwcVersion = version
|
2018-05-21 13:15:13 -04:00
|
|
|
numBwcNodes = 3
|
|
|
|
numNodes = 3
|
2017-05-18 04:14:24 -04:00
|
|
|
clusterName = 'rolling-upgrade'
|
|
|
|
setting 'repositories.url.allowed_urls', 'http://snapshot.test*'
|
|
|
|
if (version.onOrAfter('5.3.0')) {
|
|
|
|
setting 'http.content_type.required', 'true'
|
|
|
|
}
|
|
|
|
}
|
Build: Rework integ test setup and shutdown to ensure stop runs when desired (#23304)
Gradle's finalizedBy on tasks only ensures one task runs after another,
but not immediately after. This is problematic for our integration tests
since it allows multiple project's integ test clusters to be
simultaneously. While this has not been a problem thus far (gradle 2.13
happened to keep the finalizedBy tasks close enough that no clusters
were running in parallel), with gradle 3.3 the task graph generation has
changed, and numerous clusters may be running simultaneously, causing
memory pressure, and thus generally slower tests, or even failure if the
system has a limited amount of memory (eg in a vagrant host).
This commit reworks how integ tests are configured. It adds an
`integTestCluster` extension to gradle which is equivalent to the current
`integTest.cluster` and moves the rest test runner task to
`integTestRunner`. The `integTest` task is then just a dummy task,
which depends on the cluster runner task, as well as the cluster stop
task. This means running `integTest` in one project will both run the
rest tests, and shut down the cluster, before running `integTest` in
another project.
2017-02-22 15:43:15 -05:00
|
|
|
|
2017-05-18 04:14:24 -04:00
|
|
|
Task oldClusterTestRunner = tasks.getByName("${baseName}#oldClusterTestRunner")
|
|
|
|
oldClusterTestRunner.configure {
|
|
|
|
systemProperty 'tests.rest.suite', 'old_cluster'
|
|
|
|
}
|
Build: Rework integ test setup and shutdown to ensure stop runs when desired (#23304)
Gradle's finalizedBy on tasks only ensures one task runs after another,
but not immediately after. This is problematic for our integration tests
since it allows multiple project's integ test clusters to be
simultaneously. While this has not been a problem thus far (gradle 2.13
happened to keep the finalizedBy tasks close enough that no clusters
were running in parallel), with gradle 3.3 the task graph generation has
changed, and numerous clusters may be running simultaneously, causing
memory pressure, and thus generally slower tests, or even failure if the
system has a limited amount of memory (eg in a vagrant host).
This commit reworks how integ tests are configured. It adds an
`integTestCluster` extension to gradle which is equivalent to the current
`integTest.cluster` and moves the rest test runner task to
`integTestRunner`. The `integTest` task is then just a dummy task,
which depends on the cluster runner task, as well as the cluster stop
task. This means running `integTest` in one project will both run the
rest tests, and shut down the cluster, before running `integTest` in
another project.
2017-02-22 15:43:15 -05:00
|
|
|
|
2018-11-09 04:47:30 -05:00
|
|
|
Closure configureUpgradeCluster = {String name, Task lastRunner, int stopNode, Closure getOtherUnicastHostAddresses ->
|
2018-05-21 13:15:13 -04:00
|
|
|
configure(extensions.findByName("${baseName}#${name}")) {
|
|
|
|
dependsOn lastRunner, "${baseName}#oldClusterTestCluster#node${stopNode}.stop"
|
|
|
|
clusterName = 'rolling-upgrade'
|
2018-11-09 04:47:30 -05:00
|
|
|
otherUnicastHostAddresses = { getOtherUnicastHostAddresses() }
|
2018-12-10 05:00:57 -05:00
|
|
|
autoSetInitialMasterNodes = false
|
2018-05-21 13:15:13 -04:00
|
|
|
/* Override the data directory so the new node always gets the node we
|
|
|
|
* just stopped's data directory. */
|
|
|
|
dataDir = { nodeNumber -> oldClusterTest.nodes[stopNode].dataDir }
|
|
|
|
setting 'repositories.url.allowed_urls', 'http://snapshot.test*'
|
2018-06-07 11:19:34 -04:00
|
|
|
setting 'node.name', "upgraded-node-${stopNode}"
|
2018-05-21 13:15:13 -04:00
|
|
|
}
|
|
|
|
}
|
2016-08-31 19:45:03 -04:00
|
|
|
|
2018-05-21 13:15:13 -04:00
|
|
|
Task oneThirdUpgradedTest = tasks.create(name: "${baseName}#oneThirdUpgradedTest", type: RestIntegTestTask)
|
|
|
|
|
2018-06-07 13:05:36 -04:00
|
|
|
configureUpgradeCluster("oneThirdUpgradedTestCluster", oldClusterTestRunner, 0,
|
|
|
|
// Use all running nodes as seed nodes so there is no race between pinging and the tests
|
2018-11-09 04:47:30 -05:00
|
|
|
{ [oldClusterTest.nodes.get(1).transportUri(), oldClusterTest.nodes.get(2).transportUri()] })
|
2018-05-21 13:15:13 -04:00
|
|
|
|
|
|
|
Task oneThirdUpgradedTestRunner = tasks.getByName("${baseName}#oneThirdUpgradedTestRunner")
|
|
|
|
oneThirdUpgradedTestRunner.configure {
|
|
|
|
systemProperty 'tests.rest.suite', 'mixed_cluster'
|
|
|
|
systemProperty 'tests.first_round', 'true'
|
|
|
|
finalizedBy "${baseName}#oldClusterTestCluster#node1.stop"
|
2017-05-18 04:14:24 -04:00
|
|
|
}
|
Build: Rework integ test setup and shutdown to ensure stop runs when desired (#23304)
Gradle's finalizedBy on tasks only ensures one task runs after another,
but not immediately after. This is problematic for our integration tests
since it allows multiple project's integ test clusters to be
simultaneously. While this has not been a problem thus far (gradle 2.13
happened to keep the finalizedBy tasks close enough that no clusters
were running in parallel), with gradle 3.3 the task graph generation has
changed, and numerous clusters may be running simultaneously, causing
memory pressure, and thus generally slower tests, or even failure if the
system has a limited amount of memory (eg in a vagrant host).
This commit reworks how integ tests are configured. It adds an
`integTestCluster` extension to gradle which is equivalent to the current
`integTest.cluster` and moves the rest test runner task to
`integTestRunner`. The `integTest` task is then just a dummy task,
which depends on the cluster runner task, as well as the cluster stop
task. This means running `integTest` in one project will both run the
rest tests, and shut down the cluster, before running `integTest` in
another project.
2017-02-22 15:43:15 -05:00
|
|
|
|
2018-05-21 13:15:13 -04:00
|
|
|
Task twoThirdsUpgradedTest = tasks.create(name: "${baseName}#twoThirdsUpgradedTest", type: RestIntegTestTask)
|
|
|
|
|
2018-06-07 13:05:36 -04:00
|
|
|
configureUpgradeCluster("twoThirdsUpgradedTestCluster", oneThirdUpgradedTestRunner, 1,
|
|
|
|
// Use all running nodes as seed nodes so there is no race between pinging and the tests
|
2018-11-09 04:47:30 -05:00
|
|
|
{ [oldClusterTest.nodes.get(2).transportUri(), oneThirdUpgradedTest.nodes.get(0).transportUri()] })
|
2018-05-21 13:15:13 -04:00
|
|
|
|
|
|
|
Task twoThirdsUpgradedTestRunner = tasks.getByName("${baseName}#twoThirdsUpgradedTestRunner")
|
|
|
|
twoThirdsUpgradedTestRunner.configure {
|
2017-05-18 04:14:24 -04:00
|
|
|
systemProperty 'tests.rest.suite', 'mixed_cluster'
|
2018-05-21 13:15:13 -04:00
|
|
|
systemProperty 'tests.first_round', 'false'
|
|
|
|
finalizedBy "${baseName}#oldClusterTestCluster#node2.stop"
|
2017-05-18 04:14:24 -04:00
|
|
|
}
|
Build: Rework integ test setup and shutdown to ensure stop runs when desired (#23304)
Gradle's finalizedBy on tasks only ensures one task runs after another,
but not immediately after. This is problematic for our integration tests
since it allows multiple project's integ test clusters to be
simultaneously. While this has not been a problem thus far (gradle 2.13
happened to keep the finalizedBy tasks close enough that no clusters
were running in parallel), with gradle 3.3 the task graph generation has
changed, and numerous clusters may be running simultaneously, causing
memory pressure, and thus generally slower tests, or even failure if the
system has a limited amount of memory (eg in a vagrant host).
This commit reworks how integ tests are configured. It adds an
`integTestCluster` extension to gradle which is equivalent to the current
`integTest.cluster` and moves the rest test runner task to
`integTestRunner`. The `integTest` task is then just a dummy task,
which depends on the cluster runner task, as well as the cluster stop
task. This means running `integTest` in one project will both run the
rest tests, and shut down the cluster, before running `integTest` in
another project.
2017-02-22 15:43:15 -05:00
|
|
|
|
2018-01-09 17:20:55 -05:00
|
|
|
Task upgradedClusterTest = tasks.create(name: "${baseName}#upgradedClusterTest", type: RestIntegTestTask)
|
2016-08-31 19:45:03 -04:00
|
|
|
|
2018-06-07 13:05:36 -04:00
|
|
|
configureUpgradeCluster("upgradedClusterTestCluster", twoThirdsUpgradedTestRunner, 2,
|
|
|
|
// Use all running nodes as seed nodes so there is no race between pinging and the tests
|
2018-11-09 04:47:30 -05:00
|
|
|
{ [oneThirdUpgradedTest.nodes.get(0).transportUri(), twoThirdsUpgradedTest.nodes.get(0).transportUri()] })
|
2017-05-18 04:14:24 -04:00
|
|
|
|
|
|
|
Task upgradedClusterTestRunner = tasks.getByName("${baseName}#upgradedClusterTestRunner")
|
|
|
|
upgradedClusterTestRunner.configure {
|
|
|
|
systemProperty 'tests.rest.suite', 'upgraded_cluster'
|
2018-05-21 13:15:13 -04:00
|
|
|
/*
|
|
|
|
* Force stopping all the upgraded nodes after the test runner
|
|
|
|
* so they are alive during the test.
|
|
|
|
*/
|
|
|
|
finalizedBy "${baseName}#oneThirdUpgradedTestCluster#stop"
|
|
|
|
finalizedBy "${baseName}#twoThirdsUpgradedTestCluster#stop"
|
2017-05-18 04:14:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Task versionBwcTest = tasks.create(name: "${baseName}#bwcTest") {
|
2017-06-15 01:01:49 -04:00
|
|
|
enabled = project.bwc_tests_enabled
|
2017-05-18 04:14:24 -04:00
|
|
|
dependsOn = [upgradedClusterTest]
|
|
|
|
}
|
|
|
|
|
2017-06-15 01:01:49 -04:00
|
|
|
if (project.bwc_tests_enabled) {
|
|
|
|
bwcTest.dependsOn(versionBwcTest)
|
|
|
|
}
|
2016-08-31 19:45:03 -04:00
|
|
|
}
|
2016-09-16 11:32:28 -04:00
|
|
|
|
2018-12-19 01:25:20 -05:00
|
|
|
unitTest.enabled = false // no unit tests for rolling upgrades, only the rest integration test
|
2016-09-16 11:32:28 -04:00
|
|
|
|
2017-05-18 04:14:24 -04:00
|
|
|
// basic integ tests includes testing bwc against the most recent version
|
2019-02-11 07:58:00 -05:00
|
|
|
task bwcTestSnapshots {
|
2017-06-15 01:01:49 -04:00
|
|
|
if (project.bwc_tests_enabled) {
|
2018-11-01 11:43:57 -04:00
|
|
|
for (final def version : bwcVersions.unreleasedWireCompatible) {
|
2017-11-21 03:26:45 -05:00
|
|
|
dependsOn "v${version}#bwcTest"
|
|
|
|
}
|
2017-06-15 01:01:49 -04:00
|
|
|
}
|
2016-11-14 08:26:49 -05:00
|
|
|
}
|
2017-05-18 04:14:24 -04:00
|
|
|
|
2019-02-11 07:58:00 -05:00
|
|
|
check.dependsOn(bwcTestSnapshots)
|