28 lines
948 B
Groovy
28 lines
948 B
Groovy
|
apply plugin: 'elasticsearch.rest-test'
|
||
|
|
||
|
dependencies {
|
||
|
testCompile project(path: ':x-plugins:elasticsearch:x-pack', configuration: 'runtime')
|
||
|
testCompile project(path: ':modules:lang-mustache', configuration: 'runtime')
|
||
|
}
|
||
|
|
||
|
integTest {
|
||
|
cluster {
|
||
|
plugin ':x-plugins:elasticsearch:x-pack'
|
||
|
setting 'xpack.watcher.enabled', 'false'
|
||
|
setting 'xpack.monitoring.enabled', 'false'
|
||
|
setting 'path.scripts', "${project.buildDir}/resources/test/templates"
|
||
|
setupCommand 'setupDummyUser',
|
||
|
'bin/x-pack/users', 'useradd', 'test_admin', '-p', 'changeme', '-r', 'superuser'
|
||
|
waitCondition = { node, ant ->
|
||
|
File tmpFile = new File(node.cwd, 'wait.success')
|
||
|
ant.get(src: "http://${node.httpUri()}",
|
||
|
dest: tmpFile.toString(),
|
||
|
username: 'test_admin',
|
||
|
password: 'changeme',
|
||
|
ignoreerrors: true,
|
||
|
retries: 10)
|
||
|
return tmpFile.exists()
|
||
|
}
|
||
|
}
|
||
|
}
|