2017-01-04 14:27:53 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
2016-07-13 10:08:13 -04:00
|
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
|
|
|
|
dependencies {
|
2016-12-14 18:02:28 -05:00
|
|
|
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
|
2016-07-13 10:08:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
integTest {
|
|
|
|
cluster {
|
2016-12-14 18:02:28 -05:00
|
|
|
plugin ':x-pack:elasticsearch'
|
2016-07-13 10:08:13 -04:00
|
|
|
setting 'xpack.security.enabled', 'false'
|
|
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
|
|
setting 'http.port', '9400'
|
2017-01-05 09:22:59 -05:00
|
|
|
// Need to allow more compilations per minute because of the integration tests
|
|
|
|
setting 'script.max_compilations_per_minute', '100'
|
|
|
|
|
|
|
|
//
|
|
|
|
// JIRA integration test settings
|
|
|
|
//
|
|
|
|
// The integration tests use a JIRA account on elasticsearch.atlassian.net. This account
|
|
|
|
// has been created by Edward Sy [edward@elastic.co]. It uses the "XPACK WATCHER TEST"
|
|
|
|
// Jira project available at https://elasticsearch.atlassian.net/projects/XWT/issues/?filter=allopenissues
|
|
|
|
// and the "xpack-user@elastic.co" username which is also an internal Google Group.
|
|
|
|
setting 'xpack.notification.jira.account.test.url', 'https://elasticsearch.atlassian.net/'
|
|
|
|
setting 'xpack.notification.jira.account.test.user', 'xpack-user@elastic.co'
|
|
|
|
setting 'xpack.notification.jira.account.test.password', 'N9M4ea9rfy'
|
|
|
|
setting 'xpack.notification.jira.account.test.issue_defaults.project.key', 'XWT'
|
|
|
|
setting 'xpack.notification.jira.account.test.issue_defaults.labels', ['integration-tests', project.version]
|
2016-07-13 10:08:13 -04:00
|
|
|
}
|
|
|
|
}
|