2018-01-23 07:05:39 -05:00
|
|
|
apply plugin: 'elasticsearch.esplugin'
|
|
|
|
|
|
|
|
esplugin {
|
|
|
|
name 'spi-extension'
|
2019-02-05 15:39:29 -05:00
|
|
|
description 'An example spi extension plugin for security'
|
2018-01-23 07:05:39 -05:00
|
|
|
classname 'org.elasticsearch.example.SpiExtensionPlugin'
|
|
|
|
extendedPlugins = ['x-pack-security']
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-08-21 20:03:28 -04:00
|
|
|
compileOnly "org.elasticsearch.plugin:x-pack-core:${version}"
|
2018-01-27 00:48:30 -05:00
|
|
|
testCompile project(path: xpackProject('transport-client').path, configuration: 'runtime')
|
2018-01-23 07:05:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
integTestRunner {
|
|
|
|
systemProperty 'tests.security.manager', 'false'
|
|
|
|
}
|
|
|
|
|
|
|
|
integTestCluster {
|
|
|
|
dependsOn buildZip
|
2018-11-05 22:56:50 -05:00
|
|
|
setting 'xpack.security.authc.realms.custom.custom.order', '0'
|
|
|
|
setting 'xpack.security.authc.realms.custom.custom.filtered_setting', 'should be filtered'
|
|
|
|
setting 'xpack.security.authc.realms.file.esusers.order', '1'
|
|
|
|
setting 'xpack.security.authc.realms.native.native.order', '2'
|
2018-03-21 23:09:44 -04:00
|
|
|
setting 'xpack.security.enabled', 'true'
|
2018-08-02 13:05:11 -04:00
|
|
|
setting 'xpack.ilm.enabled', 'false'
|
2018-01-23 07:05:39 -05:00
|
|
|
setting 'xpack.ml.enabled', 'false'
|
2018-02-06 15:09:09 -05:00
|
|
|
setting 'xpack.monitoring.enabled', 'false'
|
2018-02-12 14:57:04 -05:00
|
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
2018-01-23 07:05:39 -05:00
|
|
|
|
|
|
|
// This is important, so that all the modules are available too.
|
|
|
|
// There are index templates that use token filters that are in analysis-module and
|
|
|
|
// processors are being used that are in ingest-common module.
|
2019-01-21 15:37:17 -05:00
|
|
|
distribution = 'default'
|
2018-01-23 07:05:39 -05:00
|
|
|
|
|
|
|
setupCommand 'setupDummyUser',
|
2018-04-11 11:36:12 -04:00
|
|
|
'bin/elasticsearch-users', 'useradd', 'test_user', '-p', 'x-pack-test-password', '-r', 'superuser'
|
2018-01-23 07:05:39 -05:00
|
|
|
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: 'test_user',
|
|
|
|
password: 'x-pack-test-password',
|
|
|
|
ignoreerrors: true,
|
|
|
|
retries: 10)
|
|
|
|
return tmpFile.exists()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
check.dependsOn integTest
|