Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* BSD 2-Clause License
*
* Copyright (c) 2021, Ondrej Fischer
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package foundation.fluent.api.maven.plugin;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;
@Mojo(name = "testng", requiresProject = false)
public class TestNGRunnerMojo extends AbstractStandaloneRunnerMojo {
private static final String testNGClassName = "org.testng.TestNG";
@Override
void run(ClassLoader classLoader, Map jarMap) throws Throwable {
handleResult(run(classLoader, testNGClassName, augmentArgs(artifact, jarMap)));
}
private void handleResult(int status) throws MojoFailureException {
getLog().info("TestNG ended with exit code " + status);
switch (status) {
case 1: throw new MojoFailureException("There were failed tests.");
case 2: throw new MojoFailureException("There were skipped tests.");
default: throw new MojoFailureException("There were failed and skipped tests.");
case 0: getLog().info("All tests passed.");
}
}
private String[] augmentArgs(String artifact, Map jarMap) {
String[] args = args();
Set argsSet = Stream.of(args).collect(Collectors.toSet());
if((argsSet.contains("-xmlpathinjar") && !argsSet.contains("-testjar")) || argsSet.isEmpty()) {
args = Stream.concat(Stream.of(args), Stream.of("-testjar", artifact)).toArray(String[]::new);
}
for(int i = 0; i < args.length - 1; i++) {
if("-testjar".equals(args[i])) {
args[i+1] = resolve(jarMap, args[i+1]);
}
}
return args;
}
}