2019-06-13 05:18:55 -04:00
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
2018-07-23 14:14:41 -04:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2020-06-14 16:30:44 -04:00
|
|
|
testImplementation project(path: xpackProject('plugin').path, configuration: 'testArtifacts')
|
|
|
|
testImplementation project(":client:rest-high-level")
|
2018-07-23 14:14:41 -04:00
|
|
|
}
|
|
|
|
|
2018-08-21 15:27:53 -04:00
|
|
|
def clusterCredentials = [username: System.getProperty('tests.rest.cluster.username', 'test_admin'),
|
2019-11-14 06:01:23 -05:00
|
|
|
password: System.getProperty('tests.rest.cluster.password', 'x-pack-test-password')]
|
2018-07-23 14:14:41 -04:00
|
|
|
|
2019-06-13 05:18:55 -04:00
|
|
|
integTest {
|
2020-08-04 08:46:32 -04:00
|
|
|
systemProperty 'tests.rest.cluster.username', clusterCredentials.username
|
|
|
|
systemProperty 'tests.rest.cluster.password', clusterCredentials.password
|
2018-07-23 14:14:41 -04:00
|
|
|
}
|
|
|
|
|
2019-06-13 05:18:55 -04:00
|
|
|
testClusters.integTest {
|
2019-07-15 20:53:05 -04:00
|
|
|
testDistribution = 'DEFAULT'
|
2018-07-23 14:14:41 -04:00
|
|
|
setting 'xpack.security.enabled', 'true'
|
|
|
|
setting 'xpack.watcher.enabled', 'false'
|
|
|
|
setting 'xpack.ml.enabled', 'false'
|
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
2019-06-13 05:18:55 -04:00
|
|
|
extraConfigFile 'roles.yml', file('roles.yml')
|
|
|
|
user clusterCredentials
|
|
|
|
user username: "test_ilm", password: "x-pack-test-password", role: "ilm"
|
2018-07-23 14:14:41 -04:00
|
|
|
}
|