mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-02 08:59:09 +00:00
For all OSS plugins (except repository-* and discovery-*) integTest task is now a no-op and all of the tests are now executed via a test, yamlRestTest, javaRestTest, or internalClusterTest. This commit does NOT convert the discovery-* and repository-* since they are bit more complex then the rest of tests and this PR is large enough. Those plugins will be addressed in a future PR(s). This commit also fixes a minor issue that did not copy the rest api for projects that only had YAML TEST tests. related: #56841
42 lines
1.4 KiB
Groovy
42 lines
1.4 KiB
Groovy
apply plugin: 'elasticsearch.esplugin'
|
|
apply plugin: 'elasticsearch.java-rest-test'
|
|
|
|
esplugin {
|
|
name 'security-authorization-engine'
|
|
description 'An example spi extension plugin for security that implements an Authorization Engine'
|
|
classname 'org.elasticsearch.example.AuthorizationEnginePlugin'
|
|
extendedPlugins = ['x-pack-security']
|
|
licenseFile rootProject.file('licenses/APACHE-LICENSE-2.0.txt')
|
|
noticeFile rootProject.file('NOTICE.txt')
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly "org.elasticsearch.plugin:x-pack-core:${versions.elasticsearch}"
|
|
javaRestTestImplementation "org.elasticsearch.client:x-pack-transport:${versions.elasticsearch}"
|
|
javaRestTestImplementation "org.elasticsearch.plugin:x-pack-core:${versions.elasticsearch}"
|
|
// let the javaRestTest see the classpath of main
|
|
javaRestTestImplementation project.sourceSets.main.runtimeClasspath
|
|
}
|
|
//no unit tests
|
|
test.enabled = false
|
|
javaRestTest {
|
|
dependsOn buildZip
|
|
runner {
|
|
systemProperty 'tests.security.manager', 'false'
|
|
}
|
|
}
|
|
|
|
testClusters.javaRestTest {
|
|
setting 'xpack.security.enabled', 'true'
|
|
setting 'xpack.ml.enabled', 'false'
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
|
|
// 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.
|
|
testDistribution = 'DEFAULT'
|
|
|
|
user role: 'custom_superuser'
|
|
}
|
|
|