2017-06-16 11:44:51 -04:00
|
|
|
import org.elasticsearch.gradle.test.NodeInfo
|
|
|
|
import org.elasticsearch.gradle.test.RestIntegTestTask
|
|
|
|
import org.elasticsearch.gradle.Version
|
|
|
|
|
|
|
|
import java.nio.charset.StandardCharsets
|
|
|
|
|
|
|
|
// Apply the java plugin to this project so the sources can be edited in an IDE
|
2019-04-01 16:23:24 -04:00
|
|
|
apply plugin: 'elasticsearch.standalone-test'
|
|
|
|
|
2019-04-09 14:52:50 -04:00
|
|
|
test.enabled = false
|
2017-06-16 11:44:51 -04:00
|
|
|
|
|
|
|
dependencies {
|
2018-08-21 20:03:28 -04:00
|
|
|
// "org.elasticsearch.plugin:x-pack-core:${version}" doesn't work with idea because the testArtifacts are also here
|
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'default')
|
2018-01-27 00:48:30 -05:00
|
|
|
testCompile (project(path: xpackModule('security'), configuration: 'runtime')) {
|
2018-01-20 17:43:00 -05:00
|
|
|
// Need to drop the guava dependency here or we get a conflict with watcher's guava dependency.
|
|
|
|
// This is total #$%, but the solution is to get the SAML realm (which uses guava) out of security proper
|
|
|
|
exclude group: "com.google.guava", module: "guava"
|
|
|
|
}
|
2018-01-27 00:48:30 -05:00
|
|
|
testCompile project(path: xpackModule('watcher'), configuration: 'runtime')
|
2018-01-20 00:30:17 -05:00
|
|
|
|
2018-01-27 00:48:30 -05:00
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
|
|
testCompile (project(path: xpackModule('security'), configuration: 'testArtifacts')) {
|
2018-01-20 17:43:00 -05:00
|
|
|
// Need to drop the guava dependency here or we get a conflict with watcher's guava dependency.
|
|
|
|
// This is total #$%, but the solution is to get the SAML realm (which uses guava) out of security proper
|
|
|
|
exclude group: "com.google.guava", module: "guava"
|
|
|
|
}
|
2019-04-08 10:05:12 -04:00
|
|
|
testCompile project(path: ':qa:full-cluster-restart', configuration: 'testArtifacts')
|
2017-06-16 11:44:51 -04:00
|
|
|
}
|
|
|
|
|
2017-07-06 11:37:48 -04:00
|
|
|
Closure waitWithAuth = { NodeInfo node, AntBuilder ant ->
|
2017-06-29 16:27:57 -04:00
|
|
|
File tmpFile = new File(node.cwd, 'wait.success')
|
|
|
|
|
|
|
|
// wait up to twenty seconds
|
|
|
|
final long stopTime = System.currentTimeMillis() + 20000L;
|
|
|
|
Exception lastException = null;
|
|
|
|
|
|
|
|
while (System.currentTimeMillis() < stopTime) {
|
|
|
|
lastException = null;
|
|
|
|
// we use custom wait logic here as the elastic user is not available immediately and ant.get will fail when a 401 is returned
|
|
|
|
HttpURLConnection httpURLConnection = null;
|
|
|
|
try {
|
|
|
|
httpURLConnection = (HttpURLConnection) new URL("http://${node.httpUri()}/_cluster/health?wait_for_nodes=${node.config.numNodes}&wait_for_status=yellow").openConnection();
|
|
|
|
httpURLConnection.setRequestProperty("Authorization", "Basic " +
|
2017-07-13 20:59:50 -04:00
|
|
|
Base64.getEncoder().encodeToString("test_user:x-pack-test-password".getBytes(StandardCharsets.UTF_8)));
|
2017-06-16 11:44:51 -04:00
|
|
|
httpURLConnection.setRequestMethod("GET");
|
|
|
|
httpURLConnection.setConnectTimeout(1000);
|
|
|
|
httpURLConnection.setReadTimeout(30000); // read needs to wait for nodes!
|
|
|
|
httpURLConnection.connect();
|
|
|
|
if (httpURLConnection.getResponseCode() == 200) {
|
|
|
|
tmpFile.withWriter StandardCharsets.UTF_8.name(), {
|
|
|
|
it.write(httpURLConnection.getInputStream().getText(StandardCharsets.UTF_8.name()))
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
logger.debug("failed to call cluster health", e)
|
|
|
|
lastException = e
|
|
|
|
} finally {
|
|
|
|
if (httpURLConnection != null) {
|
|
|
|
httpURLConnection.disconnect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// did not start, so wait a bit before trying again
|
|
|
|
Thread.sleep(500L);
|
|
|
|
}
|
|
|
|
if (tmpFile.exists() == false && lastException != null) {
|
|
|
|
logger.error("final attempt of calling cluster health failed", lastException)
|
|
|
|
}
|
|
|
|
return tmpFile.exists()
|
|
|
|
}
|
|
|
|
|
2017-09-08 15:33:33 -04:00
|
|
|
licenseHeaders {
|
|
|
|
approvedLicenses << 'Apache'
|
|
|
|
}
|
|
|
|
|
2018-12-11 07:15:44 -05:00
|
|
|
forbiddenPatterns {
|
|
|
|
exclude '**/system_key'
|
|
|
|
}
|
2019-01-08 06:39:03 -05:00
|
|
|
|
2019-04-01 16:23:24 -04:00
|
|
|
String outputDir = "${buildDir}/generated-resources/${project.name}"
|
2017-06-16 11:44:51 -04:00
|
|
|
|
2019-04-01 16:23: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 {
|
2017-06-16 11:44:51 -04:00
|
|
|
description = 'Runs backwards compatibility tests.'
|
|
|
|
group = 'verification'
|
2019-04-01 16:23:24 -04:00
|
|
|
}
|
2017-06-16 11:44:51 -04:00
|
|
|
|
2019-04-01 16:23:24 -04:00
|
|
|
task copyTestNodeKeyMaterial(type: Copy) {
|
2019-03-18 02:52:14 -04:00
|
|
|
from project(':x-pack:plugin:core').files('src/test/resources/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testnode.pem',
|
2019-04-01 16:23:24 -04:00
|
|
|
'src/test/resources/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testnode.crt',
|
|
|
|
'src/test/resources/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testnode.jks')
|
2017-06-16 11:44:51 -04:00
|
|
|
into outputDir
|
2019-04-01 16:23:24 -04:00
|
|
|
}
|
2017-06-16 11:44:51 -04:00
|
|
|
|
2019-04-01 16:23:24 -04:00
|
|
|
for (Version version : bwcVersions.indexCompatible) {
|
2017-06-16 11:44:51 -04:00
|
|
|
String baseName = "v${version}"
|
|
|
|
|
|
|
|
Task oldClusterTest = tasks.create(name: "${baseName}#oldClusterTest", type: RestIntegTestTask) {
|
2019-04-01 16:23:24 -04:00
|
|
|
mustRunAfter(precommit)
|
2017-06-16 11:44:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Object extension = extensions.findByName("${baseName}#oldClusterTestCluster")
|
|
|
|
configure(extensions.findByName("${baseName}#oldClusterTestCluster")) {
|
2019-04-01 16:23:24 -04:00
|
|
|
dependsOn copyTestNodeKeyMaterial
|
|
|
|
if (version.before('6.3.0')) {
|
|
|
|
String depVersion = version;
|
|
|
|
if (project.bwcVersions.unreleased.contains(version)) {
|
|
|
|
depVersion += "-SNAPSHOT"
|
|
|
|
}
|
|
|
|
mavenPlugin 'x-pack', "org.elasticsearch.plugin:x-pack:${depVersion}"
|
|
|
|
|
2017-06-16 11:44:51 -04:00
|
|
|
}
|
2019-04-01 16:23:24 -04:00
|
|
|
bwcVersion = version
|
|
|
|
numBwcNodes = 2
|
|
|
|
numNodes = 2
|
|
|
|
clusterName = 'full-cluster-restart'
|
|
|
|
String usersCli = version.before('6.3.0') ? 'bin/x-pack/users' : 'bin/elasticsearch-users'
|
|
|
|
setupCommand 'setupTestUser', usersCli, 'useradd', 'test_user', '-p', 'x-pack-test-password', '-r', 'superuser'
|
|
|
|
waitCondition = waitWithAuth
|
|
|
|
|
|
|
|
// some tests rely on the translog not being flushed
|
|
|
|
setting 'indices.memory.shard_inactive_time', '20m'
|
|
|
|
|
|
|
|
setting 'xpack.security.enabled', 'true'
|
|
|
|
setting 'xpack.security.transport.ssl.enabled', 'true'
|
|
|
|
if (project.inFipsJvm) {
|
|
|
|
setting 'xpack.security.transport.ssl.key', 'testnode.pem'
|
|
|
|
setting 'xpack.security.transport.ssl.certificate', 'testnode.crt'
|
|
|
|
keystoreSetting 'xpack.security.transport.ssl.secure_key_passphrase', 'testnode'
|
2017-07-28 12:31:44 -04:00
|
|
|
} else {
|
2019-04-01 16:23:24 -04:00
|
|
|
setting 'xpack.security.transport.ssl.keystore.path', 'testnode.jks'
|
|
|
|
setting 'xpack.security.transport.ssl.keystore.password', 'testnode'
|
2017-07-28 12:31:44 -04:00
|
|
|
}
|
2019-04-01 16:23:24 -04:00
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
|
|
dependsOn copyTestNodeKeyMaterial
|
|
|
|
extraConfigFile 'testnode.pem', new File(outputDir + '/testnode.pem')
|
|
|
|
extraConfigFile 'testnode.crt', new File(outputDir + '/testnode.crt')
|
|
|
|
extraConfigFile 'testnode.jks', new File(outputDir + '/testnode.jks')
|
|
|
|
|
|
|
|
keystoreFile 'xpack.watcher.encryption_key', "${project.projectDir}/src/test/resources/system_key"
|
2017-06-29 16:58:35 -04:00
|
|
|
setting 'xpack.watcher.encrypt_sensitive_data', 'true'
|
2017-06-16 11:44:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Task oldClusterTestRunner = tasks.getByName("${baseName}#oldClusterTestRunner")
|
|
|
|
oldClusterTestRunner.configure {
|
2019-04-01 16:23:24 -04:00
|
|
|
systemProperty 'tests.is_old_cluster', 'true'
|
|
|
|
systemProperty 'tests.old_cluster_version', version.toString().minus("-SNAPSHOT")
|
|
|
|
systemProperty 'tests.path.repo', new File(buildDir, "cluster/shared/repo")
|
|
|
|
exclude 'org/elasticsearch/upgrades/FullClusterRestartIT.class'
|
|
|
|
exclude 'org/elasticsearch/upgrades/FullClusterRestartSettingsUpgradeIT.class'
|
|
|
|
exclude 'org/elasticsearch/upgrades/QueryBuilderBWCIT.class'
|
2017-06-16 11:44:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Task upgradedClusterTest = tasks.create(name: "${baseName}#upgradedClusterTest", type: RestIntegTestTask)
|
|
|
|
|
|
|
|
configure(extensions.findByName("${baseName}#upgradedClusterTestCluster")) {
|
2019-04-01 16:23:24 -04:00
|
|
|
dependsOn oldClusterTestRunner,
|
|
|
|
"${baseName}#oldClusterTestCluster#node0.stop",
|
|
|
|
"${baseName}#oldClusterTestCluster#node1.stop"
|
|
|
|
numNodes = 2
|
|
|
|
clusterName = 'full-cluster-restart'
|
|
|
|
dataDir = { nodeNum -> oldClusterTest.nodes[nodeNum].dataDir }
|
|
|
|
cleanShared = false // We want to keep snapshots made by the old cluster!
|
|
|
|
setupCommand 'setupTestUser', 'bin/elasticsearch-users', 'useradd', 'test_user', '-p', 'x-pack-test-password', '-r', 'superuser'
|
|
|
|
waitCondition = waitWithAuth
|
|
|
|
|
|
|
|
// some tests rely on the translog not being flushed
|
|
|
|
setting 'indices.memory.shard_inactive_time', '20m'
|
|
|
|
setting 'xpack.security.enabled', 'true'
|
|
|
|
if (project.inFipsJvm) {
|
|
|
|
setting 'xpack.security.transport.ssl.key', 'testnode.pem'
|
|
|
|
setting 'xpack.security.transport.ssl.certificate', 'testnode.crt'
|
|
|
|
keystoreSetting 'xpack.security.transport.ssl.secure_key_passphrase', 'testnode'
|
|
|
|
} else {
|
|
|
|
setting 'xpack.security.transport.ssl.keystore.path', 'testnode.jks'
|
|
|
|
setting 'xpack.security.transport.ssl.keystore.password', 'testnode'
|
|
|
|
}
|
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
|
|
dependsOn copyTestNodeKeyMaterial
|
|
|
|
extraConfigFile 'testnode.jks', new File(outputDir + '/testnode.jks')
|
|
|
|
extraConfigFile 'testnode.pem', new File(outputDir + '/testnode.pem')
|
|
|
|
extraConfigFile 'testnode.crt', new File(outputDir + '/testnode.crt')
|
|
|
|
|
|
|
|
setting 'xpack.watcher.encrypt_sensitive_data', 'true'
|
|
|
|
keystoreFile 'xpack.watcher.encryption_key', "${project.projectDir}/src/test/resources/system_key"
|
2017-06-16 11:44:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Task upgradedClusterTestRunner = tasks.getByName("${baseName}#upgradedClusterTestRunner")
|
|
|
|
upgradedClusterTestRunner.configure {
|
2019-04-01 16:23:24 -04:00
|
|
|
systemProperty 'tests.is_old_cluster', 'false'
|
|
|
|
systemProperty 'tests.old_cluster_version', version.toString().minus("-SNAPSHOT")
|
|
|
|
systemProperty 'tests.path.repo', new File(buildDir, "cluster/shared/repo")
|
|
|
|
exclude 'org/elasticsearch/upgrades/FullClusterRestartIT.class'
|
|
|
|
exclude 'org/elasticsearch/upgrades/FullClusterRestartSettingsUpgradeIT.class'
|
|
|
|
exclude 'org/elasticsearch/upgrades/QueryBuilderBWCIT.class'
|
2017-06-16 11:44:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Task versionBwcTest = tasks.create(name: "${baseName}#bwcTest") {
|
2019-04-01 16:23:24 -04:00
|
|
|
dependsOn = [upgradedClusterTest]
|
2017-06-16 11:44:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (project.bwc_tests_enabled) {
|
2019-04-01 16:23:24 -04:00
|
|
|
bwcTest.dependsOn(versionBwcTest)
|
2017-06-16 11:44:51 -04:00
|
|
|
}
|
2019-04-01 16:23:24 -04:00
|
|
|
}
|
2017-06-16 11:44:51 -04:00
|
|
|
|
2019-04-01 16:23:24 -04:00
|
|
|
// basic integ tests includes testing bwc against the most recent version
|
|
|
|
task bwcTestSnapshots {
|
2017-06-16 11:44:51 -04:00
|
|
|
if (project.bwc_tests_enabled) {
|
2019-04-01 16:23:24 -04:00
|
|
|
for (final def version : bwcVersions.unreleasedIndexCompatible) {
|
|
|
|
dependsOn "v${version}#bwcTest"
|
|
|
|
}
|
2017-06-16 11:44:51 -04:00
|
|
|
}
|
2019-04-01 16:23:24 -04:00
|
|
|
}
|
2017-06-16 11:44:51 -04:00
|
|
|
|
2019-04-01 16:23:24 -04:00
|
|
|
check.dependsOn(bwcTestSnapshots)
|
2017-06-16 11:44:51 -04:00
|
|
|
|
2019-04-01 16:23:24 -04:00
|
|
|
// copy x-pack plugin info so it is on the classpath and security manager has the right permissions
|
|
|
|
task copyXPackRestSpec(type: Copy) {
|
2017-06-16 11:44:51 -04:00
|
|
|
dependsOn(project.configurations.restSpec, 'processTestResources')
|
2018-01-27 00:48:30 -05:00
|
|
|
from project(xpackModule('core')).sourceSets.test.resources
|
2017-06-16 11:44:51 -04:00
|
|
|
include 'rest-api-spec/api/**'
|
|
|
|
into project.sourceSets.test.output.resourcesDir
|
2019-04-01 16:23:24 -04:00
|
|
|
}
|
2017-06-16 11:44:51 -04:00
|
|
|
|
2019-04-01 16:23:24 -04:00
|
|
|
task copyXPackPluginProps(type: Copy) {
|
2017-06-16 11:44:51 -04:00
|
|
|
dependsOn(copyXPackRestSpec)
|
2018-01-27 00:48:30 -05:00
|
|
|
from project(xpackModule('core')).file('src/main/plugin-metadata')
|
|
|
|
from project(xpackModule('core')).tasks.pluginProperties
|
2017-06-16 11:44:51 -04:00
|
|
|
into outputDir
|
|
|
|
}
|
2019-04-01 16:23:24 -04:00
|
|
|
project.sourceSets.test.output.dir(outputDir, builtBy: copyXPackPluginProps)
|