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 {
|
2016-12-14 18:02:28 -05:00
|
|
|
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
|
|
|
|
testCompile project(path: ':x-pack:elasticsearch-transport-client', configuration: 'runtime')
|
2015-11-24 19:40:05 -05:00
|
|
|
}
|
|
|
|
|
2016-04-12 09:19:07 -04:00
|
|
|
String outputDir = "generated-resources/${project.name}"
|
|
|
|
task copyXPackPluginProps(type: Copy) {
|
2016-12-14 18:02:28 -05:00
|
|
|
from project(':x-pack:elasticsearch').file('src/main/plugin-metadata')
|
|
|
|
from project(':x-pack:elasticsearch').tasks.pluginProperties
|
2016-04-12 09:19:07 -04:00
|
|
|
into outputDir
|
|
|
|
}
|
|
|
|
project.sourceSets.test.output.dir(outputDir, builtBy: copyXPackPluginProps)
|
|
|
|
|
2015-11-24 19:40:05 -05:00
|
|
|
integTest {
|
2016-12-21 14:46:18 -05:00
|
|
|
systemProperty 'tests.security.manager', 'false'
|
2015-11-24 19:40:05 -05:00
|
|
|
cluster {
|
2016-12-14 18:02:28 -05:00
|
|
|
plugin ':x-pack:elasticsearch'
|
2015-11-24 19:40:05 -05:00
|
|
|
setupCommand 'setupDummyUser',
|
2016-02-10 09:42:59 -05:00
|
|
|
'bin/x-pack/users', 'useradd', 'test_user', '-p', 'changeme', '-r', 'superuser'
|
2015-11-24 19:40:05 -05:00
|
|
|
setupCommand 'setupTransportClientUser',
|
2016-03-30 03:07:57 -04:00
|
|
|
'bin/x-pack/users', 'useradd', 'transport', '-p', 'changeme', '-r', 'transport_client'
|
2015-11-24 19:40:05 -05:00
|
|
|
waitCondition = { node, ant ->
|
|
|
|
File tmpFile = new File(node.cwd, 'wait.success')
|
2015-12-11 21:23:01 -05:00
|
|
|
ant.get(src: "http://${node.httpUri()}",
|
2015-11-24 19:40:05 -05:00
|
|
|
dest: tmpFile.toString(),
|
|
|
|
username: 'test_user',
|
|
|
|
password: 'changeme',
|
|
|
|
ignoreerrors: true,
|
|
|
|
retries: 10)
|
|
|
|
return tmpFile.exists()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|