2017-01-04 14:27:53 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
2015-12-10 09:34:30 -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-12-10 09:34:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// bring in graph rest test suite
|
|
|
|
task copyGraphRestTests(type: Copy) {
|
|
|
|
into project.sourceSets.test.output.resourcesDir
|
2017-02-10 14:02:42 -05:00
|
|
|
from project(':x-pack-elasticsearch:plugin').sourceSets.test.resources.srcDirs
|
2015-12-10 09:34:30 -05:00
|
|
|
include 'rest-api-spec/test/graph/**'
|
|
|
|
}
|
|
|
|
|
2017-02-22 03:56:52 -05:00
|
|
|
integTestCluster {
|
2017-04-17 19:04:09 -04:00
|
|
|
dependsOn copyGraphRestTests
|
2017-02-22 03:56:52 -05:00
|
|
|
plugin ':x-pack-elasticsearch:plugin'
|
|
|
|
extraConfigFile 'x-pack/roles.yml', 'roles.yml'
|
|
|
|
setupCommand 'setupTestAdminUser',
|
2017-06-29 16:27:57 -04:00
|
|
|
'bin/x-pack/users', 'useradd', 'test_admin', '-p', 'x-pack-test-password', '-r', 'superuser'
|
2017-02-22 03:56:52 -05:00
|
|
|
setupCommand 'setupGraphExplorerUser',
|
2017-06-29 16:27:57 -04:00
|
|
|
'bin/x-pack/users', 'useradd', 'graph_explorer', '-p', 'x-pack-test-password', '-r', 'graph_explorer'
|
2017-02-22 03:56:52 -05:00
|
|
|
setupCommand 'setupPowerlessUser',
|
2017-06-29 16:27:57 -04:00
|
|
|
'bin/x-pack/users', 'useradd', 'no_graph_explorer', '-p', 'x-pack-test-password', '-r', 'no_graph_explorer'
|
2017-02-22 03:56:52 -05:00
|
|
|
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_admin',
|
2017-06-29 16:27:57 -04:00
|
|
|
password: 'x-pack-test-password',
|
2017-02-22 03:56:52 -05:00
|
|
|
ignoreerrors: true,
|
|
|
|
retries: 10)
|
|
|
|
return tmpFile.exists()
|
2015-12-10 09:34:30 -05:00
|
|
|
}
|
|
|
|
}
|