mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-02 08:59:09 +00:00
- Started to move configuration under the `xpack` name - Cleaned up `ShieldPlugin` - renamed `ShieldClient` to `SecurityClient` - Introduced `XPackClient` that wraps security and watcher clients Original commit: elastic/x-pack-elasticsearch@f05be0c180
27 lines
827 B
Groovy
27 lines
827 B
Groovy
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-plugins:elasticsearch:x-pack', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
plugin 'x-pack', project(':x-plugins:elasticsearch:x-pack')
|
|
systemProperty 'es.shield.audit.enabled', 'true'
|
|
systemProperty 'es.shield.audit.outputs', 'index'
|
|
setupCommand 'setupDummyUser',
|
|
'bin/xpack/esusers', 'useradd', 'test_user', '-p', 'changeme', '-r', 'admin'
|
|
waitCondition = { node, ant ->
|
|
File tmpFile = new File(node.cwd, 'wait.success')
|
|
ant.get(src: "http://${node.httpUri()}",
|
|
dest: tmpFile.toString(),
|
|
username: 'test_user',
|
|
password: 'changeme',
|
|
ignoreerrors: true,
|
|
retries: 10)
|
|
return tmpFile.exists()
|
|
}
|
|
}
|
|
}
|
|
|