2015-11-24 20:07:04 -05:00
|
|
|
import org.elasticsearch.gradle.MavenFilteringHack
|
|
|
|
|
2017-01-04 14:27:53 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
2015-11-24 20:07:04 -05:00
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2017-02-10 14:02:42 -05:00
|
|
|
testCompile project(path: ':x-pack-elasticsearch:plugin', configuration: 'runtime')
|
2015-11-24 20:07:04 -05:00
|
|
|
}
|
|
|
|
|
2015-12-04 14:52:31 -05:00
|
|
|
ext.pluginsCount = 1 // we install xpack explicitly
|
2015-12-04 02:36:35 -05:00
|
|
|
project.rootProject.subprojects.findAll { it.path.startsWith(':plugins:') }.each { subproj ->
|
|
|
|
// need to get a non-decorated project object, so must re-lookup the project by path
|
2017-02-22 03:56:52 -05:00
|
|
|
integTestCluster.plugin(subproj.path)
|
2016-02-21 13:10:21 -05:00
|
|
|
pluginsCount += 1
|
2015-11-24 20:07:04 -05:00
|
|
|
}
|
|
|
|
|
2017-02-22 03:56:52 -05:00
|
|
|
integTestCluster {
|
|
|
|
plugin ':x-pack-elasticsearch:plugin'
|
2015-11-24 20:07:04 -05:00
|
|
|
|
2017-02-22 03:56:52 -05:00
|
|
|
setupCommand 'setupDummyUser',
|
|
|
|
'bin/x-pack/users', 'useradd', 'test_user', '-p', 'changeme', '-r', 'superuser'
|
|
|
|
waitCondition = { node, ant ->
|
|
|
|
File tmpFile = new File(node.cwd, 'wait.success')
|
2017-03-15 13:23:26 -04:00
|
|
|
ant.get(src: "http://${node.httpUri()}/_cluster/health?wait_for_nodes=>=${numNodes}&wait_for_status=yellow",
|
2017-02-22 03:56:52 -05:00
|
|
|
dest: tmpFile.toString(),
|
|
|
|
username: 'test_user',
|
|
|
|
password: 'changeme',
|
|
|
|
ignoreerrors: true,
|
|
|
|
retries: 10)
|
|
|
|
return tmpFile.exists()
|
2015-11-24 20:07:04 -05:00
|
|
|
}
|
2017-01-03 15:43:22 -05:00
|
|
|
}
|
2015-11-24 20:07:04 -05:00
|
|
|
|
|
|
|
ext.expansions = [
|
2015-12-04 02:36:35 -05:00
|
|
|
'expected.plugins.count': pluginsCount
|
2015-11-24 20:07:04 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
processTestResources {
|
|
|
|
inputs.properties(expansions)
|
|
|
|
MavenFilteringHack.filter(it, expansions)
|
|
|
|
}
|