mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
Introduce javaRestTest source set/task and convert modules (#59939)
Introduce a javaRestTest source set and task to compliment the yamlRestTest. javaRestTest differs such that the code is sourced from Java and may have different dependencies and setup requirements for the test clusters. This also allows the tests to run in parallel in different cluster instances to prevent any cross test contamination between the two types of tests. Included in this PR is all :modules no longer use the integTest task. The tests are now driven by test, yamlRestTest, javaRestTest, and internalClusterTest. Since only :modules (and :rest-api-spec) have been converted to yamlRestTest we can now disable the integTest task if either yamlRestTest or javaRestTest have been applied. Once all projects are converted, we can delete the integTest task. related: #56841 related: #59444
This commit is contained in:
parent
ad3a3f07d4
commit
7dd57c9415
48 changed files with 260 additions and 103 deletions
|
@ -117,6 +117,14 @@ class PluginBuildPlugin implements Plugin<Project> {
|
|||
}
|
||||
}
|
||||
|
||||
//disable integTest task if project has been converted to use yaml or java rest test plugin
|
||||
project.pluginManager.withPlugin("elasticsearch.yaml-rest-test") {
|
||||
project.tasks.integTest.enabled = false
|
||||
}
|
||||
project.pluginManager.withPlugin("elasticsearch.java-rest-test") {
|
||||
project.tasks.integTest.enabled = false
|
||||
}
|
||||
|
||||
project.tasks.named('testingConventions').configure {
|
||||
naming.clear()
|
||||
naming {
|
||||
|
|
|
@ -0,0 +1,68 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
package org.elasticsearch.gradle.test.rest;
|
||||
|
||||
import org.elasticsearch.gradle.ElasticsearchJavaPlugin;
|
||||
import org.elasticsearch.gradle.test.RestIntegTestTask;
|
||||
import org.elasticsearch.gradle.testclusters.TestClustersPlugin;
|
||||
import org.elasticsearch.gradle.util.GradleUtils;
|
||||
import org.gradle.api.Plugin;
|
||||
import org.gradle.api.Project;
|
||||
import org.gradle.api.plugins.JavaBasePlugin;
|
||||
import org.gradle.api.tasks.SourceSet;
|
||||
import org.gradle.api.tasks.SourceSetContainer;
|
||||
|
||||
import static org.elasticsearch.gradle.test.rest.RestTestUtil.setupDependencies;
|
||||
import static org.elasticsearch.gradle.test.rest.RestTestUtil.setupRunnerTask;
|
||||
import static org.elasticsearch.gradle.test.rest.RestTestUtil.setupTask;
|
||||
|
||||
/**
|
||||
* Apply this plugin to run the Java based REST tests.
|
||||
*/
|
||||
public class JavaRestTestPlugin implements Plugin<Project> {
|
||||
|
||||
public static final String SOURCE_SET_NAME = "javaRestTest";
|
||||
|
||||
@Override
|
||||
public void apply(Project project) {
|
||||
|
||||
project.getPluginManager().apply(ElasticsearchJavaPlugin.class);
|
||||
project.getPluginManager().apply(TestClustersPlugin.class);
|
||||
|
||||
// create source set
|
||||
SourceSetContainer sourceSets = project.getExtensions().getByType(SourceSetContainer.class);
|
||||
SourceSet javaTestSourceSet = sourceSets.create(SOURCE_SET_NAME);
|
||||
|
||||
// setup the javaRestTest task
|
||||
RestIntegTestTask javaRestTestTask = setupTask(project, SOURCE_SET_NAME);
|
||||
|
||||
// setup the runner task
|
||||
setupRunnerTask(project, javaRestTestTask, javaTestSourceSet);
|
||||
|
||||
// setup dependencies
|
||||
setupDependencies(project, javaTestSourceSet);
|
||||
|
||||
// setup IDE
|
||||
GradleUtils.setupIdeForTestSourceSet(project, javaTestSourceSet);
|
||||
|
||||
// wire this task into check
|
||||
project.getTasks().named(JavaBasePlugin.CHECK_TASK_NAME).configure(check -> check.dependsOn(javaRestTestTask));
|
||||
}
|
||||
}
|
|
@ -0,0 +1,105 @@
|
|||
/*
|
||||
* 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.
|
||||
*/
|
||||
|
||||
package org.elasticsearch.gradle.test.rest;
|
||||
|
||||
import org.elasticsearch.gradle.VersionProperties;
|
||||
import org.elasticsearch.gradle.info.BuildParams;
|
||||
import org.elasticsearch.gradle.plugin.PluginPropertiesExtension;
|
||||
import org.elasticsearch.gradle.test.RestIntegTestTask;
|
||||
import org.elasticsearch.gradle.testclusters.RestTestRunnerTask;
|
||||
import org.gradle.api.Project;
|
||||
import org.gradle.api.plugins.JavaBasePlugin;
|
||||
import org.gradle.api.tasks.SourceSet;
|
||||
import org.gradle.api.tasks.bundling.Zip;
|
||||
|
||||
/**
|
||||
* Utility class to configure the necessary tasks and dependencies.
|
||||
*/
|
||||
public class RestTestUtil {
|
||||
|
||||
private RestTestUtil() {}
|
||||
|
||||
/**
|
||||
* Creates a task with the source set name of type {@link RestIntegTestTask}
|
||||
*/
|
||||
static RestIntegTestTask setupTask(Project project, String sourceSetName) {
|
||||
// create task - note can not use .register due to the work in RestIntegTestTask's constructor :(
|
||||
// see: https://github.com/elastic/elasticsearch/issues/47804
|
||||
RestIntegTestTask testTask = project.getTasks().create(sourceSetName, RestIntegTestTask.class);
|
||||
testTask.setGroup(JavaBasePlugin.VERIFICATION_GROUP);
|
||||
testTask.setDescription("Runs the REST tests against an external cluster");
|
||||
// make the new test run after unit tests
|
||||
testTask.mustRunAfter(project.getTasks().named("test"));
|
||||
return testTask;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates the runner task and configures the test clusters
|
||||
*/
|
||||
static RestTestRunnerTask setupRunnerTask(Project project, RestIntegTestTask testTask, SourceSet sourceSet) {
|
||||
RestTestRunnerTask runner = testTask.getRunner();
|
||||
runner.setTestClassesDirs(sourceSet.getOutput().getClassesDirs());
|
||||
runner.setClasspath(sourceSet.getRuntimeClasspath());
|
||||
|
||||
// if this a module or plugin, it may have an associated zip file with it's contents, add that to the test cluster
|
||||
project.getPluginManager().withPlugin("elasticsearch.esplugin", plugin -> {
|
||||
Zip bundle = (Zip) project.getTasks().getByName("bundlePlugin");
|
||||
testTask.dependsOn(bundle);
|
||||
if (project.getPath().startsWith(":modules:")) {
|
||||
runner.getClusters().forEach(c -> c.module(bundle.getArchiveFile()));
|
||||
} else {
|
||||
runner.getClusters().forEach(c -> c.plugin(project.getObjects().fileProperty().value(bundle.getArchiveFile())));
|
||||
}
|
||||
});
|
||||
|
||||
// es-plugins may declare dependencies on additional modules, add those to the test cluster too.
|
||||
project.afterEvaluate(p -> {
|
||||
PluginPropertiesExtension pluginPropertiesExtension = project.getExtensions().findByType(PluginPropertiesExtension.class);
|
||||
if (pluginPropertiesExtension != null) { // not all projects are defined as plugins
|
||||
pluginPropertiesExtension.getExtendedPlugins().forEach(pluginName -> {
|
||||
Project extensionProject = project.getProject().findProject(":modules:" + pluginName);
|
||||
if (extensionProject != null) { // extension plugin may be defined, but not required to be a module
|
||||
Zip extensionBundle = (Zip) extensionProject.getTasks().getByName("bundlePlugin");
|
||||
testTask.dependsOn(extensionBundle);
|
||||
runner.getClusters().forEach(c -> c.module(extensionBundle.getArchiveFile()));
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
return runner;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setup the dependencies needed for the REST tests.
|
||||
*/
|
||||
static void setupDependencies(Project project, SourceSet sourceSet) {
|
||||
if (BuildParams.isInternal()) {
|
||||
project.getDependencies().add(sourceSet.getImplementationConfigurationName(), project.project(":test:framework"));
|
||||
} else {
|
||||
project.getDependencies()
|
||||
.add(
|
||||
sourceSet.getImplementationConfigurationName(),
|
||||
"org.elasticsearch.test:framework:" + VersionProperties.getElasticsearch()
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
|
@ -20,11 +20,7 @@
|
|||
package org.elasticsearch.gradle.test.rest;
|
||||
|
||||
import org.elasticsearch.gradle.ElasticsearchJavaPlugin;
|
||||
import org.elasticsearch.gradle.VersionProperties;
|
||||
import org.elasticsearch.gradle.info.BuildParams;
|
||||
import org.elasticsearch.gradle.plugin.PluginPropertiesExtension;
|
||||
import org.elasticsearch.gradle.test.RestIntegTestTask;
|
||||
import org.elasticsearch.gradle.testclusters.RestTestRunnerTask;
|
||||
import org.elasticsearch.gradle.testclusters.TestClustersPlugin;
|
||||
import org.elasticsearch.gradle.util.GradleUtils;
|
||||
import org.gradle.api.Plugin;
|
||||
|
@ -32,7 +28,10 @@ import org.gradle.api.Project;
|
|||
import org.gradle.api.plugins.JavaBasePlugin;
|
||||
import org.gradle.api.tasks.SourceSet;
|
||||
import org.gradle.api.tasks.SourceSetContainer;
|
||||
import org.gradle.api.tasks.bundling.Zip;
|
||||
|
||||
import static org.elasticsearch.gradle.test.rest.RestTestUtil.setupDependencies;
|
||||
import static org.elasticsearch.gradle.test.rest.RestTestUtil.setupRunnerTask;
|
||||
import static org.elasticsearch.gradle.test.rest.RestTestUtil.setupTask;
|
||||
|
||||
/**
|
||||
* Apply this plugin to run the YAML based REST tests.
|
||||
|
@ -44,37 +43,22 @@ public class YamlRestTestPlugin implements Plugin<Project> {
|
|||
@Override
|
||||
public void apply(Project project) {
|
||||
|
||||
// yaml Rest tests require a Java test runner
|
||||
project.getPluginManager().apply(ElasticsearchJavaPlugin.class);
|
||||
// to spin up the external cluster
|
||||
project.getPluginManager().apply(TestClustersPlugin.class);
|
||||
// to copy around the yaml tests and json spec
|
||||
project.getPluginManager().apply(RestResourcesPlugin.class);
|
||||
|
||||
// note - source sets are not created via org.elasticsearch.gradle.util.GradleUtils.addTestSourceSet since unlike normal tests
|
||||
// we only want the yamlRestTestSourceSet on the classpath by default. The yaml tests should be pure black box testing over HTTP and
|
||||
// such it should not need the main class on the class path. Also, there are some special setup steps unique to YAML REST tests.
|
||||
|
||||
// create source set
|
||||
SourceSetContainer sourceSets = project.getExtensions().getByType(SourceSetContainer.class);
|
||||
SourceSet yamlTestSourceSet = sourceSets.create(SOURCE_SET_NAME);
|
||||
|
||||
// create task - note can not use .register due to the work in RestIntegTestTask's constructor :(
|
||||
// see: https://github.com/elastic/elasticsearch/issues/47804
|
||||
RestIntegTestTask yamlRestTestTask = project.getTasks().create(SOURCE_SET_NAME, RestIntegTestTask.class);
|
||||
yamlRestTestTask.setGroup(JavaBasePlugin.VERIFICATION_GROUP);
|
||||
yamlRestTestTask.setDescription("Runs the YAML based REST tests against an external cluster");
|
||||
// setup the yamlRestTest task
|
||||
RestIntegTestTask yamlRestTestTask = setupTask(project, SOURCE_SET_NAME);
|
||||
|
||||
// setup task dependency
|
||||
if (BuildParams.isInternal()) {
|
||||
project.getDependencies().add(yamlTestSourceSet.getImplementationConfigurationName(), project.project(":test:framework"));
|
||||
} else {
|
||||
project.getDependencies()
|
||||
.add(
|
||||
yamlTestSourceSet.getImplementationConfigurationName(),
|
||||
"org.elasticsearch.test:framework:" + VersionProperties.getElasticsearch()
|
||||
);
|
||||
}
|
||||
// setup the runner task
|
||||
setupRunnerTask(project, yamlRestTestTask, yamlTestSourceSet);
|
||||
|
||||
// setup the dependencies
|
||||
setupDependencies(project, yamlTestSourceSet);
|
||||
|
||||
// setup the copy for the rest resources
|
||||
project.getTasks().withType(CopyRestApiTask.class, copyRestApiTask -> {
|
||||
|
@ -83,40 +67,6 @@ public class YamlRestTestPlugin implements Plugin<Project> {
|
|||
});
|
||||
project.getTasks().withType(CopyRestTestsTask.class, copyRestTestTask -> { copyRestTestTask.sourceSetName = SOURCE_SET_NAME; });
|
||||
|
||||
// make the new test run after unit tests
|
||||
yamlRestTestTask.mustRunAfter(project.getTasks().named("test"));
|
||||
|
||||
// setup the runner
|
||||
RestTestRunnerTask runner = yamlRestTestTask.getRunner();
|
||||
runner.setTestClassesDirs(yamlTestSourceSet.getOutput().getClassesDirs());
|
||||
runner.setClasspath(yamlTestSourceSet.getRuntimeClasspath());
|
||||
|
||||
// if this a module or plugin, it may have an associated zip file with it's contents, add that to the test cluster
|
||||
project.getPluginManager().withPlugin("elasticsearch.esplugin", plugin -> {
|
||||
Zip bundle = (Zip) project.getTasks().getByName("bundlePlugin");
|
||||
yamlRestTestTask.dependsOn(bundle);
|
||||
if (project.getPath().startsWith(":modules:")) {
|
||||
runner.getClusters().forEach(c -> c.module(bundle.getArchiveFile()));
|
||||
} else {
|
||||
runner.getClusters().forEach(c -> c.plugin(project.getObjects().fileProperty().value(bundle.getArchiveFile())));
|
||||
}
|
||||
});
|
||||
|
||||
// es-plugins may declare dependencies on additional modules, add those to the test cluster too.
|
||||
project.afterEvaluate(p -> {
|
||||
PluginPropertiesExtension pluginPropertiesExtension = project.getExtensions().findByType(PluginPropertiesExtension.class);
|
||||
if (pluginPropertiesExtension != null) { // not all projects are defined as plugins
|
||||
pluginPropertiesExtension.getExtendedPlugins().forEach(pluginName -> {
|
||||
Project extensionProject = project.getProject().findProject(":modules:" + pluginName);
|
||||
if (extensionProject != null) { // extension plugin may be defined, but not required to be a module
|
||||
Zip extensionBundle = (Zip) extensionProject.getTasks().getByName("bundlePlugin");
|
||||
yamlRestTestTask.dependsOn(extensionBundle);
|
||||
runner.getClusters().forEach(c -> c.module(extensionBundle.getArchiveFile()));
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
// setup IDE
|
||||
GradleUtils.setupIdeForTestSourceSet(project, yamlTestSourceSet);
|
||||
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
implementation-class=org.elasticsearch.gradle.test.rest.JavaRestTestPlugin
|
|
@ -28,5 +28,3 @@ restResources {
|
|||
includeCore '_common', 'indices', 'cluster', 'index', 'search', 'nodes'
|
||||
}
|
||||
}
|
||||
|
||||
integTest.enabled = false
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
apply plugin: 'elasticsearch.yaml-rest-test'
|
||||
apply plugin: 'elasticsearch.internal-cluster-test'
|
||||
|
||||
esplugin {
|
||||
description 'Adds "built in" analyzers to Elasticsearch.'
|
||||
|
|
|
@ -31,6 +31,4 @@ restResources {
|
|||
artifacts {
|
||||
restTests(project.file('src/yamlRestTest/resources/rest-api-spec/test'))
|
||||
}
|
||||
|
||||
integTest.enabled = false
|
||||
test.enabled = false
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
apply plugin: 'elasticsearch.yaml-rest-test'
|
||||
apply plugin: 'elasticsearch.internal-cluster-test'
|
||||
|
||||
esplugin {
|
||||
description 'Module for ingest processors that do not require additional security permissions or have large dependencies and resources'
|
||||
|
|
|
@ -43,8 +43,6 @@ restResources {
|
|||
}
|
||||
}
|
||||
|
||||
integTest.enabled = false
|
||||
|
||||
task copyDefaultGeoIp2DatabaseFiles(type: Copy) {
|
||||
from { zipTree(configurations.testCompileClasspath.files.find { it.name.contains('geolite2-databases') }) }
|
||||
into "${project.buildDir}/ingest-geoip"
|
||||
|
|
|
@ -33,4 +33,3 @@ testClusters.all {
|
|||
extraConfigFile 'ingest-user-agent/test-regexes.yml', file('src/test/test-regexes.yml')
|
||||
}
|
||||
|
||||
integTest.enabled = false
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
apply plugin: 'elasticsearch.java-rest-test'
|
||||
|
||||
esplugin {
|
||||
description 'Plugin exposing APIs for Kibana system indices'
|
||||
|
@ -26,6 +27,7 @@ dependencies {
|
|||
api project(path: ':modules:reindex')
|
||||
}
|
||||
|
||||
testClusters.integTest {
|
||||
testClusters.all {
|
||||
module file(project(':modules:reindex').tasks.bundlePlugin.archiveFile)
|
||||
}
|
||||
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
* under the License.
|
||||
*/
|
||||
apply plugin: 'elasticsearch.yaml-rest-test'
|
||||
apply plugin: 'elasticsearch.java-rest-test'
|
||||
apply plugin: 'elasticsearch.internal-cluster-test'
|
||||
|
||||
esplugin {
|
||||
description 'Mustache scripting integration for Elasticsearch'
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
apply plugin: 'elasticsearch.yaml-rest-test'
|
||||
apply plugin: 'elasticsearch.java-rest-test'
|
||||
|
||||
esplugin {
|
||||
description 'Adds advanced field mappers'
|
||||
|
|
|
@ -21,7 +21,6 @@ package org.elasticsearch.index.mapper;
|
|||
|
||||
import com.carrotsearch.randomizedtesting.annotations.Name;
|
||||
import com.carrotsearch.randomizedtesting.annotations.ParametersFactory;
|
||||
|
||||
import org.elasticsearch.ElasticsearchException;
|
||||
import org.elasticsearch.action.DocWriteResponse;
|
||||
import org.elasticsearch.action.bulk.BulkResponse;
|
|
@ -17,6 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
apply plugin: 'elasticsearch.yaml-rest-test'
|
||||
apply plugin: 'elasticsearch.internal-cluster-test'
|
||||
|
||||
esplugin {
|
||||
description 'This module adds the support parent-child queries and aggregations'
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
apply plugin: 'elasticsearch.yaml-rest-test'
|
||||
apply plugin: 'elasticsearch.internal-cluster-test'
|
||||
|
||||
esplugin {
|
||||
description 'Percolator module adds capability to index queries and query these queries by specifying documents'
|
||||
|
@ -28,22 +29,8 @@ dependencies {
|
|||
testImplementation project(':modules:geo')
|
||||
}
|
||||
|
||||
tasks.named('integTestRunner').configure {
|
||||
exclude '**/PercolatorQuerySearchIT.class'
|
||||
}
|
||||
|
||||
tasks.register('internalClusterTest', Test) {
|
||||
include '**/PercolatorQuerySearchIT.class'
|
||||
}
|
||||
|
||||
tasks.named('check').configure {
|
||||
dependsOn 'internalClusterTest'
|
||||
}
|
||||
|
||||
restResources {
|
||||
restApi {
|
||||
includeCore '_common', 'indices', 'index', 'search', 'msearch'
|
||||
}
|
||||
}
|
||||
|
||||
integTest.enabled = false
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
* under the License.
|
||||
*/
|
||||
apply plugin: 'elasticsearch.yaml-rest-test'
|
||||
apply plugin: 'elasticsearch.internal-cluster-test'
|
||||
|
||||
esplugin {
|
||||
description 'The Rank Eval module adds APIs to evaluate ranking quality.'
|
||||
|
|
|
@ -25,6 +25,8 @@ import org.elasticsearch.gradle.info.BuildParams
|
|||
apply plugin: 'elasticsearch.test-with-dependencies'
|
||||
apply plugin: 'elasticsearch.jdk-download'
|
||||
apply plugin: 'elasticsearch.yaml-rest-test'
|
||||
apply plugin: 'elasticsearch.java-rest-test'
|
||||
apply plugin: 'elasticsearch.internal-cluster-test'
|
||||
|
||||
esplugin {
|
||||
description 'The Reindex module adds APIs to reindex from one index to another or update documents in place.'
|
||||
|
@ -107,12 +109,12 @@ jdks {
|
|||
|
||||
if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
||||
logger.warn("Disabling reindex-from-old tests because we can't get the pid file on windows")
|
||||
integTest.runner {
|
||||
javaRestTest.runner {
|
||||
systemProperty "tests.fromOld", "false"
|
||||
}
|
||||
} else if (rootProject.rootDir.toString().contains(" ")) {
|
||||
logger.warn("Disabling reindex-from-old tests because Elasticsearch 1.7 won't start with spaces in the path")
|
||||
integTest.runner {
|
||||
javaRestTest.runner {
|
||||
systemProperty "tests.fromOld", "false"
|
||||
}
|
||||
} else {
|
||||
|
@ -153,7 +155,7 @@ if (Os.isFamily(Os.FAMILY_WINDOWS)) {
|
|||
}
|
||||
}
|
||||
|
||||
integTest {
|
||||
javaRestTest {
|
||||
dependsOn fixture
|
||||
runner {
|
||||
systemProperty "tests.fromOld", "true"
|
||||
|
|
|
@ -36,8 +36,6 @@ restResources {
|
|||
}
|
||||
}
|
||||
|
||||
integTest.enabled = false
|
||||
|
||||
// This directory is shared between two URL repositories and one FS repository in YAML integration tests
|
||||
File repositoryDir = new File(project.buildDir, "shared-repository")
|
||||
|
||||
|
|
|
@ -20,8 +20,12 @@
|
|||
|
||||
import org.elasticsearch.gradle.info.BuildParams
|
||||
import org.elasticsearch.gradle.test.RestIntegTestTask
|
||||
import org.elasticsearch.gradle.test.rest.JavaRestTestPlugin
|
||||
import org.elasticsearch.gradle.test.InternalClusterTestPlugin
|
||||
|
||||
apply plugin: 'elasticsearch.yaml-rest-test'
|
||||
apply plugin: 'elasticsearch.java-rest-test'
|
||||
apply plugin: 'elasticsearch.internal-cluster-test'
|
||||
|
||||
/*
|
||||
TODOs:
|
||||
|
@ -63,11 +67,11 @@ test {
|
|||
systemProperty 'es.set.netty.runtime.available.processors', 'false'
|
||||
}
|
||||
|
||||
integTestRunner {
|
||||
/*
|
||||
* We have to disable setting the number of available processors as tests in the same JVM randomize processors and will step on each
|
||||
* other if we allow them to set the number of available processors as it's set-once in Netty.
|
||||
*/
|
||||
internalClusterTest {
|
||||
systemProperty 'es.set.netty.runtime.available.processors', 'false'
|
||||
}
|
||||
|
||||
javaRestTestRunner {
|
||||
systemProperty 'es.set.netty.runtime.available.processors', 'false'
|
||||
}
|
||||
|
||||
|
@ -77,15 +81,29 @@ TaskProvider<Test> pooledTest = tasks.register("pooledTest", Test) {
|
|||
systemProperty 'es.use_unpooled_allocator', 'false'
|
||||
}
|
||||
|
||||
RestIntegTestTask pooledIntegTest = tasks.create("pooledIntegTest", RestIntegTestTask) {
|
||||
TaskProvider<Test> pooledInternalClusterTest = tasks.register("pooledInternalClusterTest", Test) {
|
||||
include '**/*IT.class'
|
||||
systemProperty 'es.set.netty.runtime.available.processors', 'false'
|
||||
systemProperty 'es.use_unpooled_allocator', 'false'
|
||||
SourceSetContainer sourceSets = project.getExtensions().getByType(SourceSetContainer.class);
|
||||
SourceSet internalTestSourceSet = sourceSets.getByName(InternalClusterTestPlugin.SOURCE_SET_NAME)
|
||||
setTestClassesDirs(internalTestSourceSet.getOutput().getClassesDirs())
|
||||
setClasspath(internalTestSourceSet.getRuntimeClasspath())
|
||||
}
|
||||
|
||||
RestIntegTestTask pooledJavaRestTest = tasks.create("pooledJavaRestTest", RestIntegTestTask) {
|
||||
runner {
|
||||
systemProperty 'es.set.netty.runtime.available.processors', 'false'
|
||||
SourceSetContainer sourceSets = project.getExtensions().getByType(SourceSetContainer.class);
|
||||
SourceSet javaRestTestSourceSet = sourceSets.getByName(JavaRestTestPlugin.SOURCE_SET_NAME)
|
||||
setTestClassesDirs(javaRestTestSourceSet.getOutput().getClassesDirs())
|
||||
setClasspath(javaRestTestSourceSet.getRuntimeClasspath())
|
||||
}
|
||||
}
|
||||
testClusters.pooledIntegTest {
|
||||
testClusters.pooledJavaRestTest {
|
||||
systemProperty 'es.use_unpooled_allocator', 'false'
|
||||
}
|
||||
check.dependsOn(pooledTest, pooledIntegTest)
|
||||
check.dependsOn(pooledTest, pooledJavaRestTest, pooledInternalClusterTest)
|
||||
|
||||
thirdPartyAudit {
|
||||
ignoreMissingClasses(
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
package org.elasticsearch.http.netty4;
|
||||
|
||||
import io.netty.handler.codec.http.FullHttpResponse;
|
||||
import io.netty.handler.codec.http.HttpResponseStatus;
|
||||
import io.netty.util.ReferenceCounted;
|
||||
import org.elasticsearch.ESNetty4IntegTestCase;
|
||||
import org.elasticsearch.common.collect.Tuple;
|
||||
|
@ -31,7 +32,6 @@ import org.elasticsearch.http.HttpServerTransport;
|
|||
import org.elasticsearch.indices.breaker.HierarchyCircuitBreakerService;
|
||||
import org.elasticsearch.test.ESIntegTestCase.ClusterScope;
|
||||
import org.elasticsearch.test.ESIntegTestCase.Scope;
|
||||
import io.netty.handler.codec.http.HttpResponseStatus;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collection;
|
Loading…
Add table
Add a link
Reference in a new issue