2019-06-18 04:51:20 -04:00
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
2019-04-07 23:23:12 -04:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'default')
|
|
|
|
testCompile project(path: xpackModule('security'), configuration: 'testArtifacts')
|
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
|
|
}
|
|
|
|
|
|
|
|
forbiddenPatterns {
|
|
|
|
exclude '**/*.key'
|
|
|
|
exclude '**/*.p12'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-18 04:51:20 -04:00
|
|
|
testClusters.integTest {
|
|
|
|
distribution = "DEFAULT"
|
|
|
|
numberOfNodes = 2
|
2019-04-07 23:23:12 -04:00
|
|
|
|
2019-06-18 04:51:20 -04:00
|
|
|
extraConfigFile 'http.key', file('src/test/resources/ssl/http.key')
|
|
|
|
extraConfigFile 'http.crt', file('src/test/resources/ssl/http.crt')
|
|
|
|
extraConfigFile 'transport.key', file('src/test/resources/ssl/transport.key')
|
|
|
|
extraConfigFile 'transport.crt', file('src/test/resources/ssl/transport.crt')
|
|
|
|
extraConfigFile 'ca.crt', file('src/test/resources/ssl/ca.crt')
|
2019-04-07 23:23:12 -04:00
|
|
|
|
|
|
|
setting 'xpack.ilm.enabled', 'false'
|
|
|
|
setting 'xpack.ml.enabled', 'false'
|
|
|
|
setting 'xpack.license.self_generated.type', 'basic'
|
|
|
|
setting 'xpack.security.http.ssl.enabled', 'true'
|
|
|
|
setting 'xpack.security.http.ssl.certificate', 'http.crt'
|
|
|
|
setting 'xpack.security.http.ssl.key', 'http.key'
|
|
|
|
setting 'xpack.security.http.ssl.key_passphrase', 'http-password'
|
2019-06-18 04:51:20 -04:00
|
|
|
setting 'xpack.security.http.ssl.certificate_authorities', 'ca.crt'
|
2019-04-07 23:23:12 -04:00
|
|
|
setting 'xpack.security.transport.ssl.enabled', 'true'
|
|
|
|
setting 'xpack.security.transport.ssl.certificate', 'transport.crt'
|
|
|
|
setting 'xpack.security.transport.ssl.key', 'transport.key'
|
|
|
|
setting 'xpack.security.transport.ssl.key_passphrase', 'transport-password'
|
|
|
|
setting 'xpack.security.transport.ssl.certificate_authorities', 'ca.crt'
|
|
|
|
}
|
|
|
|
|