2017-01-04 14:27:53 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
2015-11-24 19:40:05 -05:00
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2019-06-04 16:50:23 -04:00
|
|
|
testCompile project(xpackModule('core'))
|
2018-01-27 00:48:30 -05:00
|
|
|
testCompile project(path: xpackProject('transport-client').path, configuration: 'runtime')
|
2015-11-24 19:40:05 -05:00
|
|
|
}
|
|
|
|
|
2018-04-26 18:36:14 -04:00
|
|
|
String outputDir = "${buildDir}/generated-resources/${project.name}"
|
2016-04-12 09:19:07 -04:00
|
|
|
task copyXPackPluginProps(type: Copy) {
|
2018-01-27 00:48:30 -05:00
|
|
|
from project(xpackModule('core')).file('src/main/plugin-metadata')
|
|
|
|
from project(xpackModule('core')).tasks.pluginProperties
|
2016-04-12 09:19:07 -04:00
|
|
|
into outputDir
|
|
|
|
}
|
|
|
|
project.sourceSets.test.output.dir(outputDir, builtBy: copyXPackPluginProps)
|
|
|
|
|
2019-10-07 04:43:57 -04:00
|
|
|
integTest.runner {
|
2016-12-21 14:46:18 -05:00
|
|
|
systemProperty 'tests.security.manager', 'false'
|
2017-02-22 03:56:52 -05:00
|
|
|
}
|
|
|
|
|
2019-10-07 04:43:57 -04:00
|
|
|
testClusters.integTest {
|
2019-11-14 06:01:23 -05:00
|
|
|
testDistribution = "default"
|
2018-08-02 13:05:11 -04:00
|
|
|
setting 'xpack.ilm.enabled', 'false'
|
2018-03-21 23:09:44 -04:00
|
|
|
setting 'xpack.security.enabled', 'true'
|
2017-03-02 12:01:05 -05:00
|
|
|
setting 'xpack.ml.enabled', 'false'
|
2018-02-12 14:57:04 -05:00
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
2019-10-07 04:43:57 -04:00
|
|
|
user username: "test_user", password: "x-pack-test-password"
|
|
|
|
user username: "transport", password: "x-pack-test-password", role: "transport_client"
|
2015-11-24 19:40:05 -05:00
|
|
|
}
|