19 lines
710 B
Groovy
19 lines
710 B
Groovy
apply plugin: 'elasticsearch.standalone-test'
|
|
apply plugin: 'elasticsearch.test.fixtures'
|
|
|
|
dependencies {
|
|
testImplementation(testArtifact(project(xpackModule('security'))))
|
|
testImplementation(testArtifact(project(xpackModule('core'))))
|
|
}
|
|
|
|
testFixtures.useFixture ":x-pack:test:idp-fixture", "openldap"
|
|
|
|
Project idpFixtureProject = xpackProject("test:idp-fixture")
|
|
String outputDir = "${project.buildDir}/generated-resources/${project.name}"
|
|
def copyIdpTrust = tasks.register("copyIdpTrust", Copy) {
|
|
from idpFixtureProject.file('openldap/certs/ca.jks');
|
|
from idpFixtureProject.file('openldap/certs/ca_server.pem');
|
|
into outputDir
|
|
}
|
|
project.sourceSets.test.output.dir(outputDir, builtBy: copyIdpTrust)
|