mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-27 18:38:41 +00:00
* Merge test runner task into RestIntegTest (#60261) * Merge test runner task into RestIntegTest * Reorganizing Standalone runner and RestIntegTest task * Rework general test task configuration and extension * Fix merge issues * use former 7.x common test configuration
20 lines
646 B
Groovy
20 lines
646 B
Groovy
import org.elasticsearch.gradle.info.BuildParams
|
|
|
|
apply plugin: 'elasticsearch.test-with-ssl'
|
|
|
|
integTest {
|
|
onlyIf {
|
|
// Do not attempt to form a cluster in a FIPS JVM, as doing so with a JKS keystore will fail.
|
|
// TODO Revisit this when SQL CLI client can handle key/certificate instead of only Keystores.
|
|
// https://github.com/elastic/elasticsearch/issues/32306
|
|
BuildParams.inFipsJvm == false
|
|
}
|
|
}
|
|
|
|
testClusters.integTest {
|
|
// The setup that we actually want
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
setting 'xpack.security.http.ssl.enabled', 'true'
|
|
setting 'xpack.security.transport.ssl.enabled', 'true'
|
|
}
|