mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-13 00:15:47 +00:00
This commit creates a new Gradle plugin to provide a separate task name and source set for running YAML based REST tests. The only project converted to use the new plugin in this PR is distribution/archives/integ-test-zip. For which the testing has been moved to :rest-api-spec since it makes the most sense and it avoids a small but awkward change to the distribution plugin. The remaining cases in modules, plugins, and x-pack will be handled in followups. This plugin is distinctly different from the plugin introduced in #55896 since the YAML REST tests are intended to be black box tests over HTTP. As such they should not (by default) have access to the classpath for that which they are testing. The YAML based REST tests will be moved to separate source sets (yamlRestTest). The which source is the target for the test resources is dependent on if this new plugin is applied. If it is not applied, it will default to the test source set. Further, this introduces a breaking change for plugin developers that use the YAML testing framework. They will now need to either use the new source set and matching task, or configure the rest resources to use the old "test" source set that matches the old integTest task. (The former should be preferred). As part of this change (which is also breaking for plugin developers) the rest resources plugin has been removed from the build plugin and now requires either explicit application or application via the new YAML REST test plugin. Plugin developers should be able to fix the breaking changes to the YAML tests by adding apply plugin: 'elasticsearch.yaml-rest-test' and moving the YAML tests under a yamlRestTest folder (instead of test)
197 lines
5.9 KiB
Groovy
197 lines
5.9 KiB
Groovy
/*
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
* license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright
|
|
* ownership. Elasticsearch licenses this file to you under
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
* not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing,
|
|
* software distributed under the License is distributed on an
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
* KIND, either express or implied. See the License for the
|
|
* specific language governing permissions and limitations
|
|
* under the License.
|
|
*/
|
|
|
|
import org.elasticsearch.gradle.testclusters.DefaultTestClustersTask;
|
|
apply plugin: 'elasticsearch.rest-resources'
|
|
apply plugin: 'elasticsearch.validate-rest-spec'
|
|
|
|
esplugin {
|
|
description 'An easy, safe and fast scripting language for Elasticsearch'
|
|
classname 'org.elasticsearch.painless.PainlessPlugin'
|
|
}
|
|
|
|
testClusters.integTest {
|
|
module project(':modules:mapper-extras').tasks.bundlePlugin.archiveFile
|
|
systemProperty 'es.scripting.update.ctx_in_params', 'false'
|
|
// TODO: remove this once cname is prepended to transport.publish_address by default in 8.0
|
|
systemProperty 'es.transport.cname_in_publish_address', 'true'
|
|
}
|
|
|
|
dependencies {
|
|
api 'org.antlr:antlr4-runtime:4.5.3'
|
|
api 'org.ow2.asm:asm-util:7.2'
|
|
api 'org.ow2.asm:asm-tree:7.2'
|
|
api 'org.ow2.asm:asm-commons:7.2'
|
|
api 'org.ow2.asm:asm-analysis:7.2'
|
|
api 'org.ow2.asm:asm:7.2'
|
|
api project('spi')
|
|
}
|
|
|
|
tasks.named("dependencyLicenses").configure {
|
|
mapping from: /asm-.*/, to: 'asm'
|
|
}
|
|
|
|
restResources {
|
|
restApi {
|
|
includeCore '_common', 'cluster', 'nodes', 'indices', 'index', 'search', 'get', 'bulk', 'update',
|
|
'scripts_painless_execute', 'put_script', 'delete_script'
|
|
}
|
|
}
|
|
|
|
test {
|
|
// in WhenThingsGoWrongTests we intentionally generate an out of memory error, this prevents the heap from being dumped to disk
|
|
jvmArgs '-XX:-OmitStackTraceInFastThrow', '-XX:-HeapDumpOnOutOfMemoryError'
|
|
}
|
|
|
|
/* Build Javadoc for the Java classes in Painless's public API that are in the
|
|
* Painless plugin */
|
|
task apiJavadoc(type: Javadoc) {
|
|
source = sourceSets.main.allJava
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
include '**/org/elasticsearch/painless/api/'
|
|
destinationDir = new File(docsDir, 'apiJavadoc')
|
|
}
|
|
|
|
task apiJavadocJar(type: Jar) {
|
|
archiveClassifier = 'apiJavadoc'
|
|
from apiJavadoc
|
|
}
|
|
|
|
assemble.dependsOn apiJavadocJar
|
|
|
|
/**********************************************
|
|
* Context API Generation *
|
|
**********************************************/
|
|
|
|
sourceSets {
|
|
doc
|
|
}
|
|
|
|
dependencies {
|
|
docCompile project(':server')
|
|
docCompile project(':modules:lang-painless')
|
|
}
|
|
|
|
testClusters {
|
|
generateContextCluster {
|
|
testDistribution = 'DEFAULT'
|
|
}
|
|
}
|
|
|
|
task generateContextDoc(type: DefaultTestClustersTask) {
|
|
useCluster testClusters.generateContextCluster
|
|
doFirst {
|
|
project.javaexec {
|
|
main = 'org.elasticsearch.painless.ContextDocGenerator'
|
|
classpath = sourceSets.doc.runtimeClasspath
|
|
systemProperty "cluster.uri", "${-> testClusters.generateContextCluster.singleNode().getAllHttpSocketURI()}"
|
|
}.assertNormalExitValue()
|
|
}
|
|
}
|
|
|
|
/**********************************************
|
|
* Parser regeneration *
|
|
**********************************************/
|
|
|
|
configurations {
|
|
regenerate
|
|
}
|
|
|
|
dependencies {
|
|
regenerate 'org.antlr:antlr4:4.5.3'
|
|
}
|
|
|
|
String grammarPath = 'src/main/antlr'
|
|
String outputPath = 'src/main/java/org/elasticsearch/painless/antlr'
|
|
|
|
task cleanGenerated(type: Delete) {
|
|
delete fileTree(grammarPath) {
|
|
include '*.tokens'
|
|
}
|
|
delete fileTree(outputPath) {
|
|
include 'Painless*.java'
|
|
}
|
|
}
|
|
|
|
task regenLexer(type: JavaExec) {
|
|
dependsOn cleanGenerated
|
|
main = 'org.antlr.v4.Tool'
|
|
classpath = configurations.regenerate
|
|
systemProperty 'file.encoding', 'UTF-8'
|
|
systemProperty 'user.language', 'en'
|
|
systemProperty 'user.country', 'US'
|
|
systemProperty 'user.variant', ''
|
|
args '-Werror',
|
|
'-package', 'org.elasticsearch.painless.antlr',
|
|
'-o', outputPath,
|
|
"${file(grammarPath)}/PainlessLexer.g4"
|
|
}
|
|
|
|
task regenParser(type: JavaExec) {
|
|
dependsOn regenLexer
|
|
main = 'org.antlr.v4.Tool'
|
|
classpath = configurations.regenerate
|
|
systemProperty 'file.encoding', 'UTF-8'
|
|
systemProperty 'user.language', 'en'
|
|
systemProperty 'user.country', 'US'
|
|
systemProperty 'user.variant', ''
|
|
args '-Werror',
|
|
'-package', 'org.elasticsearch.painless.antlr',
|
|
'-no-listener',
|
|
'-visitor',
|
|
// '-Xlog',
|
|
'-o', outputPath,
|
|
"${file(grammarPath)}/PainlessParser.g4"
|
|
}
|
|
|
|
task regen {
|
|
dependsOn regenParser
|
|
doLast {
|
|
// moves token files to grammar directory for use with IDE's
|
|
ant.move(file: "${outputPath}/PainlessLexer.tokens", toDir: grammarPath)
|
|
ant.move(file: "${outputPath}/PainlessParser.tokens", toDir: grammarPath)
|
|
// make the generated classes package private
|
|
ant.replaceregexp(match: 'public ((interface|class) \\QPainless\\E\\w+)',
|
|
replace: '\\1',
|
|
encoding: 'UTF-8') {
|
|
fileset(dir: outputPath, includes: 'Painless*.java')
|
|
}
|
|
// make the lexer abstract
|
|
ant.replaceregexp(match: '(class \\QPainless\\ELexer)',
|
|
replace: 'abstract \\1',
|
|
encoding: 'UTF-8') {
|
|
fileset(dir: outputPath, includes: 'PainlessLexer.java')
|
|
}
|
|
// nuke timestamps/filenames in generated files
|
|
ant.replaceregexp(match: '\\Q// Generated from \\E.*',
|
|
replace: '\\/\\/ ANTLR GENERATED CODE: DO NOT EDIT',
|
|
encoding: 'UTF-8') {
|
|
fileset(dir: outputPath, includes: 'Painless*.java')
|
|
}
|
|
// remove tabs in antlr generated files
|
|
ant.replaceregexp(match: '\t', flags: 'g', replace: ' ', encoding: 'UTF-8') {
|
|
fileset(dir: outputPath, includes: 'Painless*.java')
|
|
}
|
|
// fix line endings
|
|
ant.fixcrlf(srcdir: outputPath, eol: 'lf') {
|
|
patternset(includes: 'Painless*.java')
|
|
}
|
|
}
|
|
}
|