2017-01-04 14:27:53 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
2015-11-24 19:41:50 -05:00
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2016-12-14 18:02:28 -05:00
|
|
|
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
|
2015-11-24 19:41:50 -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:41:50 -05:00
|
|
|
integTest {
|
|
|
|
cluster {
|
2016-12-14 18:02:28 -05:00
|
|
|
plugin ':x-pack:elasticsearch'
|
2016-03-22 17:40:45 -04:00
|
|
|
setting 'xpack.security.audit.enabled', 'true'
|
|
|
|
setting 'xpack.security.audit.outputs', 'index'
|
2016-06-01 14:35:24 -04:00
|
|
|
setting 'logger.level', 'DEBUG'
|
2015-11-24 19:41:50 -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:41:50 -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:41:50 -05:00
|
|
|
dest: tmpFile.toString(),
|
|
|
|
username: 'test_user',
|
|
|
|
password: 'changeme',
|
|
|
|
ignoreerrors: true,
|
|
|
|
retries: 10)
|
|
|
|
return tmpFile.exists()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|