2017-08-04 11:44:08 -04:00
|
|
|
apply plugin: 'elasticsearch.standalone-test'
|
2019-03-12 17:54:23 -04:00
|
|
|
apply plugin: 'elasticsearch.test.fixtures'
|
2017-08-04 11:44:08 -04:00
|
|
|
|
|
|
|
dependencies {
|
2018-08-21 20:03:28 -04:00
|
|
|
// "org.elasticsearch.plugin:x-pack-core:${version}" doesn't work with idea because the testArtifacts are also here
|
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'default')
|
2018-01-27 00:48:30 -05:00
|
|
|
testCompile project(path: xpackModule('security'), configuration: 'testArtifacts')
|
|
|
|
testCompile project(path: xpackModule('core'), configuration: 'testArtifacts')
|
2017-08-04 11:44:08 -04:00
|
|
|
}
|
|
|
|
|
2019-03-12 17:54:23 -04:00
|
|
|
testFixtures.useFixture ":x-pack:test:idp-fixture"
|
2017-08-04 11:44:08 -04:00
|
|
|
|
2019-03-12 17:54:23 -04:00
|
|
|
Project idpFixtureProject = xpackProject("test:idp-fixture")
|
2018-05-10 09:35:23 -04:00
|
|
|
String outputDir = "${project.buildDir}/generated-resources/${project.name}"
|
2018-02-07 19:42:25 -05:00
|
|
|
task copyIdpTrust(type: Copy) {
|
2019-03-12 17:54:23 -04:00
|
|
|
from idpFixtureProject.file('openldap/certs/ca.jks');
|
|
|
|
from idpFixtureProject.file('openldap/certs/ca_server.pem');
|
2018-02-07 19:42:25 -05:00
|
|
|
into outputDir
|
|
|
|
}
|
2019-03-12 17:54:23 -04:00
|
|
|
project.sourceSets.test.output.dir(outputDir, builtBy: copyIdpTrust)
|