2018-06-15 09:49:14 -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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
import org.elasticsearch.gradle.MavenFilteringHack
|
2019-11-01 14:33:11 -04:00
|
|
|
import org.elasticsearch.gradle.info.BuildParams
|
2018-06-15 09:49:14 -04:00
|
|
|
import org.elasticsearch.gradle.test.AntFixture
|
2019-05-08 03:26:37 -04:00
|
|
|
import org.elasticsearch.gradle.test.RestIntegTestTask
|
2018-06-15 09:49:14 -04:00
|
|
|
|
2019-07-10 18:42:28 -04:00
|
|
|
import static org.elasticsearch.gradle.PropertyNormalization.IGNORE_VALUE
|
|
|
|
|
2018-06-15 09:49:14 -04:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2019-11-14 06:01:23 -05:00
|
|
|
testCompile project(path: ':plugins:discovery-ec2', configuration: 'runtime')
|
2018-06-15 09:49:14 -04:00
|
|
|
}
|
|
|
|
|
2020-03-19 13:28:59 -04:00
|
|
|
restResources {
|
|
|
|
restApi {
|
|
|
|
includeCore '_common', 'cluster', 'nodes'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-15 09:49:14 -04:00
|
|
|
final int ec2NumberOfNodes = 3
|
|
|
|
|
|
|
|
Map<String, Object> expansions = [
|
2019-11-14 06:01:23 -05:00
|
|
|
'expected_nodes': ec2NumberOfNodes
|
2018-06-15 09:49:14 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
processTestResources {
|
2019-11-14 06:01:23 -05:00
|
|
|
inputs.properties(expansions)
|
|
|
|
MavenFilteringHack.filter(it, expansions)
|
2018-06-15 09:49:14 -04:00
|
|
|
}
|
|
|
|
|
2019-05-08 03:26:37 -04:00
|
|
|
// disable default test task, use spezialized ones below
|
|
|
|
integTest.enabled = false
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Test using various credential providers (see also https://docs.aws.amazon.com/sdk-for-java/v2/developer-guide/credentials.html):
|
|
|
|
* - Elasticsearch Keystore (secure settings discovery.ec2.access_key and discovery.ec2.secret_key)
|
|
|
|
* - Java system properties (aws.accessKeyId and aws.secretAccessKey)
|
|
|
|
* - Environment variables (AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY)
|
|
|
|
* - ECS container credentials (loaded from ECS if the environment variable AWS_CONTAINER_CREDENTIALS_RELATIVE_URI is set)
|
|
|
|
* - Instance profile credentials (delivered through the EC2 metadata service)
|
|
|
|
*
|
|
|
|
* Notably missing is a test for the default credential profiles file, which is located at ~/.aws/credentials and would at least require a
|
|
|
|
* custom Java security policy to work.
|
|
|
|
*/
|
|
|
|
['KeyStore', 'EnvVariables', 'SystemProperties', 'ContainerCredentials', 'InstanceProfile'].forEach { action ->
|
2019-11-14 06:01:23 -05:00
|
|
|
AntFixture fixture = tasks.create(name: "ec2Fixture${action}", type: AntFixture) {
|
|
|
|
dependsOn compileTestJava
|
|
|
|
env 'CLASSPATH', "${-> project.sourceSets.test.runtimeClasspath.asPath}"
|
|
|
|
executable = "${BuildParams.runtimeJavaHome}/bin/java"
|
|
|
|
args 'org.elasticsearch.discovery.ec2.AmazonEC2Fixture', baseDir, "${buildDir}/testclusters/integTest${action}-1/config/unicast_hosts.txt"
|
|
|
|
}
|
2019-05-08 03:26:37 -04:00
|
|
|
|
2019-11-14 06:01:23 -05:00
|
|
|
tasks.create(name: "integTest${action}", type: RestIntegTestTask) {
|
|
|
|
dependsOn fixture, project(':plugins:discovery-ec2').bundlePlugin
|
|
|
|
}
|
2019-05-08 03:26:37 -04:00
|
|
|
|
2019-11-14 06:01:23 -05:00
|
|
|
check.dependsOn("integTest${action}")
|
2019-05-08 03:26:37 -04:00
|
|
|
|
2019-11-14 06:01:23 -05:00
|
|
|
testClusters."integTest${action}" {
|
|
|
|
numberOfNodes = ec2NumberOfNodes
|
|
|
|
plugin file(project(':plugins:discovery-ec2').bundlePlugin.archiveFile)
|
2019-04-26 11:34:03 -04:00
|
|
|
|
2019-11-14 06:01:23 -05:00
|
|
|
setting 'discovery.seed_providers', 'ec2'
|
|
|
|
setting 'network.host', '_ec2_'
|
|
|
|
setting 'discovery.ec2.endpoint', { "http://${-> fixture.addressAndPort}" }, IGNORE_VALUE
|
2019-04-26 11:34:03 -04:00
|
|
|
|
2019-11-14 06:01:23 -05:00
|
|
|
systemProperty "com.amazonaws.sdk.ec2MetadataServiceEndpointOverride", { "http://${-> fixture.addressAndPort}" }, IGNORE_VALUE
|
|
|
|
}
|
2019-05-08 03:26:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Extra config for KeyStore
|
|
|
|
testClusters.integTestKeyStore {
|
2019-11-14 06:01:23 -05:00
|
|
|
keystore 'discovery.ec2.access_key', 'ec2_integration_test_access_key'
|
|
|
|
keystore 'discovery.ec2.secret_key', 'ec2_integration_test_secret_key'
|
2018-06-15 09:49:14 -04:00
|
|
|
}
|
2019-05-08 03:26:37 -04:00
|
|
|
|
|
|
|
// Extra config for EnvVariables
|
|
|
|
testClusters.integTestEnvVariables {
|
2019-11-14 06:01:23 -05:00
|
|
|
environment 'AWS_ACCESS_KEY_ID', 'ec2_integration_test_access_key'
|
|
|
|
environment 'AWS_SECRET_ACCESS_KEY', 'ec2_integration_test_secret_key'
|
2019-05-08 03:26:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Extra config for SystemProperties
|
|
|
|
testClusters.integTestSystemProperties {
|
2019-11-14 06:01:23 -05:00
|
|
|
systemProperty 'aws.accessKeyId', 'ec2_integration_test_access_key'
|
|
|
|
systemProperty 'aws.secretKey', 'ec2_integration_test_secret_key'
|
2019-05-08 03:26:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Extra config for ContainerCredentials
|
|
|
|
ec2FixtureContainerCredentials.env 'ACTIVATE_CONTAINER_CREDENTIALS', true
|
|
|
|
|
|
|
|
testClusters.integTestContainerCredentials {
|
2019-11-14 06:01:23 -05:00
|
|
|
environment 'AWS_CONTAINER_CREDENTIALS_FULL_URI',
|
|
|
|
{ "http://${-> tasks.findByName("ec2FixtureContainerCredentials").addressAndPort}/ecs_credentials_endpoint" }, IGNORE_VALUE
|
2019-05-08 03:26:37 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Extra config for InstanceProfile
|
|
|
|
ec2FixtureInstanceProfile.env 'ACTIVATE_INSTANCE_PROFILE', true
|