2018-07-23 14:14:41 -04:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile project(path: xpackProject('plugin').path, configuration: 'testArtifacts')
|
|
|
|
}
|
|
|
|
|
2018-08-21 15:27:53 -04:00
|
|
|
def clusterCredentials = [username: System.getProperty('tests.rest.cluster.username', 'test_admin'),
|
2018-07-23 14:14:41 -04:00
|
|
|
password: System.getProperty('tests.rest.cluster.password', 'x-pack-test-password')]
|
|
|
|
|
|
|
|
integTestRunner {
|
|
|
|
systemProperty 'tests.rest.cluster.username', clusterCredentials.username
|
|
|
|
systemProperty 'tests.rest.cluster.password', clusterCredentials.password
|
|
|
|
}
|
|
|
|
|
|
|
|
integTestCluster {
|
2018-08-02 13:05:11 -04:00
|
|
|
setting 'xpack.ilm.enabled', 'true'
|
2018-07-23 14:14:41 -04:00
|
|
|
setting 'xpack.security.enabled', 'true'
|
|
|
|
setting 'xpack.watcher.enabled', 'false'
|
|
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
|
|
setting 'xpack.ml.enabled', 'false'
|
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
2018-08-21 15:27:53 -04:00
|
|
|
extraConfigFile 'roles.yml', 'roles.yml'
|
|
|
|
setupCommand 'setupIlmUser',
|
|
|
|
'bin/elasticsearch-users',
|
|
|
|
'useradd', "test_ilm",
|
|
|
|
'-p', 'x-pack-test-password', '-r', "ilm"
|
2018-07-23 14:14:41 -04:00
|
|
|
setupCommand 'setupDummyUser',
|
|
|
|
'bin/elasticsearch-users',
|
|
|
|
'useradd', clusterCredentials.username,
|
|
|
|
'-p', clusterCredentials.password,
|
|
|
|
'-r', 'superuser'
|
|
|
|
waitCondition = { node, ant ->
|
|
|
|
File tmpFile = new File(node.cwd, 'wait.success')
|
|
|
|
ant.get(src: "http://${node.httpUri()}/_cluster/health?wait_for_nodes=>=${numNodes}&wait_for_status=yellow",
|
|
|
|
dest: tmpFile.toString(),
|
|
|
|
username: clusterCredentials.username,
|
|
|
|
password: clusterCredentials.password,
|
|
|
|
ignoreerrors: true,
|
|
|
|
retries: 10)
|
|
|
|
return tmpFile.exists()
|
|
|
|
}
|
|
|
|
}
|