org.testingisdocumenting.webtau.maven.WebTauMaven.groovy Maven / Gradle / Ivy
/*
* Copyright 2020 webtau maintainers
* Copyright 2019 TWO SIGMA OPEN SOURCE, LLC
*
* Licensed 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.
*/
package org.testingisdocumenting.webtau.maven
import org.testingisdocumenting.webtau.cfg.WebTauConfig
import org.testingisdocumenting.webtau.cli.WebTauCliApp
import org.apache.maven.plugin.MojoFailureException
import org.apache.maven.plugin.logging.Log
import org.apache.maven.shared.model.fileset.FileSet
import org.apache.maven.shared.model.fileset.util.FileSetManager
import java.util.concurrent.atomic.AtomicInteger
class WebTauMaven {
private static final AtomicInteger numberOfRuns = new AtomicInteger(0)
static void runTests(Log log, FileSet tests, Map options) {
def fileSetManager = new FileSetManager()
def files = tests != null ?
(fileSetManager.getIncludedFiles(tests) as List).sort() :
[]
log.info("test files:\n " + files.join("\n "))
def runRepl = options.repl
options.remove('repl')
def args = buildArgs(options)
args.addAll(files)
// multiple maven plugins can be executed within the same JVM
// we need to explicitly trigger config handlers
if (numberOfRuns.get() > 0) {
WebTauConfig.resetConfigHandlers()
WebTauConfig.getCfg().reset()
}
def cli = new WebTauCliApp(args as String[])
if (numberOfRuns.get() > 0) {
WebTauConfig.getCfg().triggerConfigHandlers()
}
numberOfRuns.updateAndGet({ n -> n + 1 })
if (runRepl) {
cli.startRepl()
} else {
cli.start(WebTauCliApp.WebDriverBehavior.AutoCloseWebDrivers) { exitCode ->
if (exitCode > 0) {
throw new MojoFailureException("tests failure: check tests output")
}
}
}
}
private static List buildArgs(Map params) {
return params.entrySet()
.findAll { e -> e.value != null }
.collect { e -> argKeyValue(e.key, e.value) }
}
private static String argKeyValue(key, value) {
if (value instanceof Boolean) {
return value ? "--$key" : ""
}
return "--${key}=${value}"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy