2021-04-09 15:28:18 -04:00
|
|
|
/*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* The OpenSearch Contributors require contributions made to
|
|
|
|
* this file be licensed under the Apache-2.0 license or a
|
|
|
|
* compatible open source license.
|
|
|
|
*
|
|
|
|
* Modifications Copyright OpenSearch Contributors. See
|
|
|
|
* GitHub history for details.
|
|
|
|
*/
|
2019-10-24 10:04:57 -04:00
|
|
|
|
2016-12-29 12:16:04 -05: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.
|
|
|
|
*/
|
2021-04-09 15:28:18 -04:00
|
|
|
|
|
|
|
import org.opensearch.gradle.test.RestIntegTestTask
|
|
|
|
import org.opensearch.gradle.info.BuildParams
|
|
|
|
|
2021-03-15 20:37:05 -04:00
|
|
|
apply plugin: 'opensearch.testclusters'
|
|
|
|
apply plugin: 'opensearch.build'
|
|
|
|
apply plugin: 'opensearch.rest-test'
|
|
|
|
apply plugin: 'opensearch.publish'
|
|
|
|
apply plugin: 'opensearch.rest-resources'
|
2016-12-29 12:16:04 -05:00
|
|
|
|
2021-03-15 20:37:05 -04:00
|
|
|
group = 'org.opensearch.client'
|
|
|
|
archivesBaseName = 'opensearch-rest-high-level-client'
|
2017-07-13 03:44:25 -04:00
|
|
|
|
2020-02-26 09:13:41 -05:00
|
|
|
restResources {
|
|
|
|
//we need to copy the yaml spec so we can check naming (see RestHighlevelClientTests#testApiNamingConventions)
|
|
|
|
restApi {
|
|
|
|
includeCore '*'
|
2018-12-05 07:06:11 -05:00
|
|
|
}
|
|
|
|
}
|
2018-07-17 05:26:28 -04:00
|
|
|
|
2016-12-29 12:16:04 -05:00
|
|
|
dependencies {
|
2020-06-30 09:57:41 -04:00
|
|
|
api project(':server')
|
|
|
|
api project(':client:rest')
|
|
|
|
api project(':modules:mapper-extras')
|
|
|
|
api project(':modules:parent-join')
|
|
|
|
api project(':modules:aggs-matrix-stats')
|
|
|
|
api project(':modules:rank-eval')
|
|
|
|
api project(':modules:lang-mustache')
|
2016-12-29 12:16:04 -05:00
|
|
|
|
2020-06-14 16:30:44 -04:00
|
|
|
testImplementation project(':client:test')
|
|
|
|
testImplementation project(':test:framework')
|
|
|
|
testImplementation "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
|
|
|
|
testImplementation "junit:junit:${versions.junit}"
|
2018-07-17 05:26:28 -04:00
|
|
|
//this is needed to make RestHighLevelClientTests#testApiNamingConventions work from IDEs
|
2020-06-14 16:30:44 -04:00
|
|
|
testImplementation project(":rest-api-spec")
|
2018-12-05 07:06:11 -05:00
|
|
|
}
|
|
|
|
|
2020-04-15 16:23:55 -04:00
|
|
|
tasks.named('forbiddenApisMain').configure {
|
2017-02-17 14:45:41 -05:00
|
|
|
// core does not depend on the httpclient for compile so we add the signatures here. We don't add them for test as they are already
|
|
|
|
// specified
|
2018-08-22 02:05:22 -04:00
|
|
|
addSignatureFiles 'http-signatures'
|
|
|
|
signaturesFiles += files('src/main/resources/forbidden/rest-high-level-signatures.txt')
|
2017-12-13 10:26:47 -05:00
|
|
|
}
|
2019-10-03 03:50:46 -04:00
|
|
|
|
2018-10-15 12:20:34 -04:00
|
|
|
File nodeCert = file("./testnode.crt")
|
|
|
|
File nodeTrustStore = file("./testnode.jks")
|
2021-03-15 20:37:05 -04:00
|
|
|
File pkiTrustCert = file("./src/test/resources/org/opensearch/client/security/delegate_pki/testRootCA.crt")
|
2018-07-19 04:40:54 -04:00
|
|
|
|
2020-08-04 08:46:32 -04:00
|
|
|
integTest {
|
2019-10-24 10:04:57 -04:00
|
|
|
systemProperty 'tests.rest.async', 'false'
|
2018-09-05 12:56:30 -04:00
|
|
|
systemProperty 'tests.rest.cluster.username', System.getProperty('tests.rest.cluster.username', 'test_user')
|
|
|
|
systemProperty 'tests.rest.cluster.password', System.getProperty('tests.rest.cluster.password', 'test-password')
|
|
|
|
}
|
|
|
|
|
2019-10-24 10:04:57 -04:00
|
|
|
RestIntegTestTask asyncIntegTest = tasks.create("asyncIntegTest", RestIntegTestTask) {
|
|
|
|
systemProperty 'tests.rest.async', 'true'
|
|
|
|
systemProperty 'tests.rest.cluster.username', System.getProperty('tests.rest.cluster.username', 'test_user')
|
|
|
|
systemProperty 'tests.rest.cluster.password', System.getProperty('tests.rest.cluster.password', 'test-password')
|
|
|
|
}
|
|
|
|
|
|
|
|
check.dependsOn(asyncIntegTest)
|
|
|
|
|
|
|
|
testClusters.all {
|
2021-04-22 17:21:32 -04:00
|
|
|
testDistribution = 'ARCHIVE'
|
2021-03-18 16:19:22 -04:00
|
|
|
systemProperty 'opensearch.scripting.update.ctx_in_params', 'false'
|
2019-06-20 02:21:29 -04:00
|
|
|
setting 'reindex.remote.whitelist', '[ "[::1]:*", "127.0.0.1:*" ]'
|
2019-08-27 07:42:46 -04:00
|
|
|
|
2019-10-21 06:15:05 -04:00
|
|
|
extraConfigFile 'roles.yml', file('roles.yml')
|
2019-10-24 10:04:57 -04:00
|
|
|
user username: System.getProperty('tests.rest.cluster.username', 'test_user'),
|
2019-11-14 06:01:23 -05:00
|
|
|
password: System.getProperty('tests.rest.cluster.password', 'test-password'),
|
|
|
|
role: System.getProperty('tests.rest.cluster.role', 'admin')
|
2019-10-24 10:04:57 -04:00
|
|
|
user username: 'admin_user', password: 'admin-password'
|
2019-06-20 02:21:29 -04:00
|
|
|
|
2018-10-15 12:20:34 -04:00
|
|
|
extraConfigFile nodeCert.name, nodeCert
|
|
|
|
extraConfigFile nodeTrustStore.name, nodeTrustStore
|
2019-08-27 07:42:46 -04:00
|
|
|
extraConfigFile pkiTrustCert.name, pkiTrustCert
|
2018-07-19 04:40:54 -04:00
|
|
|
}
|