Migrates QA files

Original commit: elastic/x-pack-elasticsearch@ac651f51d4
This commit is contained in:
Colin Goodheart-Smithe 2017-02-08 16:58:55 +00:00
parent 1b2381d355
commit e761b76765
10 changed files with 29 additions and 24 deletions

View File

@ -1,14 +0,0 @@
apply plugin: 'elasticsearch.standalone-rest-test'
apply plugin: 'elasticsearch.rest-test'
dependencies {
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
}
integTest {
cluster {
numNodes = 3
distribution = 'zip'
plugin ':prelert-legacy:elasticsearch'
}
}

View File

View File

@ -0,0 +1,16 @@
apply plugin: 'elasticsearch.standalone-rest-test'
apply plugin: 'elasticsearch.rest-test'
dependencies {
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
}
integTest {
cluster {
setting 'xpack.security.enabled', 'false'
setting 'xpack.ml.enabled', 'true'
numNodes = 3
distribution = 'zip'
plugin ':x-pack:elasticsearch'
}
}

View File

@ -2,14 +2,15 @@ apply plugin: 'elasticsearch.standalone-rest-test'
apply plugin: 'elasticsearch.rest-test'
dependencies {
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
}
integTest {
cluster {
setting 'xpack.security.enabled', 'false'
setting 'xpack.ml.enabled', 'false'
numNodes = 1
distribution = 'zip'
plugin ':prelert-legacy:elasticsearch'
plugin ':x-pack:elasticsearch'
}
}

View File

@ -0,0 +1,6 @@
apply plugin: 'elasticsearch.standalone-test'
dependencies {
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
}

View File

@ -2,14 +2,16 @@ apply plugin: 'elasticsearch.standalone-rest-test'
apply plugin: 'elasticsearch.rest-test'
dependencies {
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
testCompile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.8.6'
}
integTest {
cluster {
setting 'xpack.security.enabled', 'false'
setting 'xpack.ml.enabled', 'true'
setting 'script.inline', 'true'
distribution = 'zip'
plugin ':prelert-legacy:elasticsearch'
plugin ':x-pack:elasticsearch'
}
}

View File

@ -1,6 +0,0 @@
apply plugin: 'elasticsearch.standalone-test'
dependencies {
testCompile project(path: ':prelert-legacy:elasticsearch', configuration: 'runtime')
}