2015-10-30 02:25:24 -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.
|
|
|
|
*/
|
2018-12-05 07:20:01 -05:00
|
|
|
import com.carrotsearch.gradle.junit4.RandomizedTestingTask;
|
|
|
|
|
2015-10-29 14:40:19 -04:00
|
|
|
dependencies {
|
2017-07-24 13:55:43 -04:00
|
|
|
compile "org.elasticsearch.client:elasticsearch-rest-client:${version}"
|
2018-06-11 17:07:27 -04:00
|
|
|
compile "org.elasticsearch.client:elasticsearch-rest-client-sniffer:${version}"
|
2017-12-20 17:29:16 -05:00
|
|
|
compile "org.elasticsearch:elasticsearch-nio:${version}"
|
2015-10-29 14:40:19 -04:00
|
|
|
compile "org.elasticsearch:elasticsearch:${version}"
|
2017-11-18 22:42:57 -05:00
|
|
|
compile "org.elasticsearch:elasticsearch-cli:${version}"
|
2015-10-30 02:25:24 -04:00
|
|
|
compile "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
2015-11-10 17:58:46 -05:00
|
|
|
compile "junit:junit:${versions.junit}"
|
2016-06-06 09:02:52 -04:00
|
|
|
compile "org.hamcrest:hamcrest-all:${versions.hamcrest}"
|
2015-11-10 17:58:46 -05:00
|
|
|
compile "org.apache.lucene:lucene-test-framework:${versions.lucene}"
|
|
|
|
compile "org.apache.lucene:lucene-codecs:${versions.lucene}"
|
|
|
|
compile "commons-logging:commons-logging:${versions.commonslogging}"
|
|
|
|
compile "commons-codec:commons-codec:${versions.commonscodec}"
|
2016-06-06 09:02:52 -04:00
|
|
|
compile "org.elasticsearch:securemock:${versions.securemock}"
|
2017-01-04 15:38:51 -05:00
|
|
|
compile "org.elasticsearch:mocksocket:${versions.mocksocket}"
|
2015-10-29 14:40:19 -04:00
|
|
|
}
|
|
|
|
|
2016-01-11 13:35:59 -05:00
|
|
|
compileJava.options.compilerArgs << '-Xlint:-cast,-rawtypes,-try,-unchecked'
|
2015-10-30 02:25:24 -04:00
|
|
|
compileTestJava.options.compilerArgs << '-Xlint:-rawtypes'
|
2015-10-29 14:40:19 -04:00
|
|
|
|
2016-03-09 13:01:15 -05:00
|
|
|
// the main files are actually test files, so use the appropriate forbidden api sigs
|
2015-12-28 22:38:55 -05:00
|
|
|
forbiddenApisMain {
|
2018-08-22 02:05:22 -04:00
|
|
|
replaceSignatureFiles 'jdk-signatures', 'es-all-signatures', 'es-test-signatures'
|
2015-12-28 22:38:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: should we have licenses for our test deps?
|
|
|
|
dependencyLicenses.enabled = false
|
2017-12-26 04:51:47 -05:00
|
|
|
dependenciesInfo.enabled = false
|
2015-12-28 22:38:55 -05:00
|
|
|
|
2019-01-07 10:24:19 -05:00
|
|
|
thirdPartyAudit.ignoreMissingClasses (
|
2015-12-28 22:38:55 -05:00
|
|
|
// classes are missing
|
2016-06-22 13:40:01 -04:00
|
|
|
'javax.servlet.ServletContextEvent',
|
|
|
|
'javax.servlet.ServletContextListener',
|
|
|
|
'org.apache.avalon.framework.logger.Logger',
|
|
|
|
'org.apache.log.Hierarchy',
|
|
|
|
'org.apache.log.Logger',
|
2015-12-28 22:38:55 -05:00
|
|
|
// we intentionally exclude the ant tasks because people were depending on them from their tests!!!!!!!
|
2016-06-22 13:40:01 -04:00
|
|
|
'org.apache.tools.ant.BuildException',
|
|
|
|
'org.apache.tools.ant.DirectoryScanner',
|
|
|
|
'org.apache.tools.ant.Task',
|
|
|
|
'org.apache.tools.ant.types.FileSet',
|
|
|
|
'org.easymock.EasyMock',
|
|
|
|
'org.easymock.IArgumentMatcher',
|
2019-01-07 10:24:19 -05:00
|
|
|
'org.jmock.core.Constraint'
|
|
|
|
)
|
2017-04-25 21:11:47 -04:00
|
|
|
|
2018-12-19 01:25:20 -05:00
|
|
|
unitTest {
|
2018-02-09 15:55:10 -05:00
|
|
|
systemProperty 'tests.gradle_index_compat_versions', bwcVersions.indexCompatible.join(',')
|
|
|
|
systemProperty 'tests.gradle_wire_compat_versions', bwcVersions.wireCompatible.join(',')
|
2018-11-01 23:27:40 -04:00
|
|
|
systemProperty 'tests.gradle_unreleased_versions', bwcVersions.unreleased.join(',')
|
2017-06-02 21:30:47 -04:00
|
|
|
}
|
2018-12-05 07:20:01 -05:00
|
|
|
|
|
|
|
task integTest(type: RandomizedTestingTask) {
|
|
|
|
include "**/*IT.class"
|
|
|
|
}
|