2015-11-24 20:07:04 -05:00
|
|
|
import org.elasticsearch.gradle.MavenFilteringHack
|
|
|
|
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2015-11-25 18:28:45 -05:00
|
|
|
testCompile project(path: ':x-plugins:elasticsearch:x-pack', 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
|
2016-02-12 10:40:27 -05:00
|
|
|
// FIXME - fix shield settings to not rely on iteration order so this doesn't break!
|
|
|
|
if (subproj.name.equals("discovery-ec2") == false) {
|
|
|
|
integTest.cluster.plugin(subproj.name, project(subproj.path))
|
|
|
|
pluginsCount += 1
|
|
|
|
}
|
2015-11-24 20:07:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
integTest {
|
|
|
|
cluster {
|
2015-11-25 18:28:45 -05:00
|
|
|
plugin 'x-pack', project(':x-plugins:elasticsearch:x-pack')
|
2015-11-24 20:07:04 -05:00
|
|
|
|
|
|
|
setupCommand 'setupDummyUser',
|
2016-02-05 05:13:30 -05:00
|
|
|
'bin/xpack/esusers', 'useradd', 'test_user', '-p', 'changeme', '-r', 'admin'
|
2015-11-24 20:07:04 -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 20:07:04 -05:00
|
|
|
dest: tmpFile.toString(),
|
|
|
|
username: 'test_user',
|
|
|
|
password: 'changeme',
|
|
|
|
ignoreerrors: true,
|
|
|
|
retries: 10)
|
|
|
|
return tmpFile.exists()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|