Cleaned up API to match bld operations and options APIs
This commit is contained in:
parent
c6307577aa
commit
324fc48c40
3 changed files with 374 additions and 29 deletions
|
@ -1,8 +1,8 @@
|
||||||
bld.downloadExtensionJavadoc=false
|
bld.downloadExtensionJavadoc=false
|
||||||
bld.downloadExtensionSources=true
|
bld.downloadExtensionSources=true
|
||||||
bld.downloadLocation=
|
bld.downloadLocation=
|
||||||
bld.extension-detekt=com.uwyn.rife2:bld-detekt:0.9.5
|
bld.extension-detekt=com.uwyn.rife2:bld-detekt:0.9.6-SNAPSHOT
|
||||||
bld.extension-kotlin=com.uwyn.rife2:bld-kotlin:1.0.0
|
bld.extension-kotlin=com.uwyn.rife2:bld-kotlin:1.0.1-SNAPSHOT
|
||||||
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
bld.repositories=MAVEN_LOCAL,MAVEN_CENTRAL,RIFE2_SNAPSHOTS,RIFE2_RELEASES
|
||||||
bld.sourceDirectories=
|
bld.sourceDirectories=
|
||||||
bld.version=2.0.1
|
bld.version=2.0.1
|
||||||
|
|
|
@ -24,8 +24,8 @@ import rife.bld.operations.exceptions.ExitStatusException;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Path;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
|
@ -55,7 +55,7 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
"sarif4k-jvm-",
|
"sarif4k-jvm-",
|
||||||
"snakeyaml-engine-",
|
"snakeyaml-engine-",
|
||||||
"trove4j-");
|
"trove4j-");
|
||||||
private static final Logger LOGGER = Logger.getLogger(Report.class.getName());
|
private static final Logger LOGGER = Logger.getLogger(DetektOperation.class.getName());
|
||||||
private final Collection<File> classpath_ = new ArrayList<>();
|
private final Collection<File> classpath_ = new ArrayList<>();
|
||||||
private final Collection<File> config_ = new ArrayList<>();
|
private final Collection<File> config_ = new ArrayList<>();
|
||||||
private final Collection<String> excludes_ = new ArrayList<>();
|
private final Collection<String> excludes_ = new ArrayList<>();
|
||||||
|
@ -128,8 +128,28 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
* @return this operation instance
|
* @return this operation instance
|
||||||
*/
|
*/
|
||||||
public DetektOperation basePath(File path) {
|
public DetektOperation basePath(File path) {
|
||||||
basePath_ = path.getAbsolutePath();
|
return basePath(path.getAbsolutePath());
|
||||||
return this;
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the base path.
|
||||||
|
*
|
||||||
|
* @return the directory path
|
||||||
|
*/
|
||||||
|
public String basePath() {
|
||||||
|
return basePath_;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Specifies a directory as the base path. Currently, it impacts all file
|
||||||
|
* paths in the formatted reports. File paths in console output and txt
|
||||||
|
* report are not affected and remain as absolute paths.
|
||||||
|
*
|
||||||
|
* @param path the directory path
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation basePath(Path path) {
|
||||||
|
return basePath(path.toFile());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -152,8 +172,27 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
* @return this operation instance
|
* @return this operation instance
|
||||||
*/
|
*/
|
||||||
public DetektOperation baseline(File baseline) {
|
public DetektOperation baseline(File baseline) {
|
||||||
baseline_ = baseline.getAbsolutePath();
|
return baseline(baseline.getAbsolutePath());
|
||||||
return this;
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If a baseline xml file is passed in, only new code smells not in the
|
||||||
|
* baseline are printed in the console.
|
||||||
|
*
|
||||||
|
* @param baseline the baseline xml file
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation baseline(Path baseline) {
|
||||||
|
return baseline(baseline.toFile());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the baseline xml file.
|
||||||
|
*
|
||||||
|
* @return the baseline xml file
|
||||||
|
*/
|
||||||
|
public String baseline() {
|
||||||
|
return baseline_;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -177,8 +216,18 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
* @return this operation instance
|
* @return this operation instance
|
||||||
*/
|
*/
|
||||||
public DetektOperation classPath(File... paths) {
|
public DetektOperation classPath(File... paths) {
|
||||||
classpath_.addAll(List.of(paths));
|
return classPath(List.of(paths));
|
||||||
return this;
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* EXPERIMENTAL: Paths where to find user class files and jar dependencies.
|
||||||
|
* Used for type resolution.
|
||||||
|
*
|
||||||
|
* @param paths one or more files
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation classPath(Path... paths) {
|
||||||
|
return classPathPaths(List.of(paths));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -189,8 +238,7 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
* @return this operation instance
|
* @return this operation instance
|
||||||
*/
|
*/
|
||||||
public DetektOperation classPath(String... paths) {
|
public DetektOperation classPath(String... paths) {
|
||||||
classpath_.addAll(Arrays.stream(paths).map(File::new).toList());
|
return classPathStrings(List.of(paths));
|
||||||
return this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -216,13 +264,26 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Paths to the config files ({@code path/to/config.yml}).
|
* EXPERIMENTAL: Paths where to find user class files and jar dependencies.
|
||||||
|
* Used for type resolution.
|
||||||
*
|
*
|
||||||
* @param configs one or more config files
|
* @param paths the paths
|
||||||
* @return this operation instance
|
* @return this operation instance
|
||||||
*/
|
*/
|
||||||
public DetektOperation config(File... configs) {
|
public DetektOperation classPathPaths(Collection<Path> paths) {
|
||||||
config_.addAll(List.of(configs));
|
classpath_.addAll(paths.stream().map(Path::toFile).toList());
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* EXPERIMENTAL: Paths where to find user class files and jar dependencies.
|
||||||
|
* Used for type resolution.
|
||||||
|
*
|
||||||
|
* @param paths the paths
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation classPathStrings(Collection<String> paths) {
|
||||||
|
classpath_.addAll(paths.stream().map(File::new).toList());
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -232,11 +293,31 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
* @param configs one or more config files
|
* @param configs one or more config files
|
||||||
* @return this operation instance
|
* @return this operation instance
|
||||||
*/
|
*/
|
||||||
public DetektOperation config(String... configs) {
|
public DetektOperation config(File... configs) {
|
||||||
config_.addAll(Arrays.stream(configs).map(File::new).toList());
|
return config(List.of(configs));
|
||||||
return this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Paths to the config files ({@code path/to/config.yml}).
|
||||||
|
*
|
||||||
|
* @param configs one or more config files
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation config(Path... configs) {
|
||||||
|
return configPaths(List.of(configs));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Paths to the config files ({@code path/to/config.yml}).
|
||||||
|
*
|
||||||
|
* @param configs one or more config files
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation config(String... configs) {
|
||||||
|
return configStrings(List.of(configs));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Paths to the config files ({@code path/to/config.yml}).
|
* Paths to the config files ({@code path/to/config.yml}).
|
||||||
*
|
*
|
||||||
|
@ -257,6 +338,17 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
return config_;
|
return config_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Paths to the config files ({@code path/to/config.yml}).
|
||||||
|
*
|
||||||
|
* @param configs the config files
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation configPaths(Collection<Path> configs) {
|
||||||
|
config_.addAll(configs.stream().map(Path::toFile).toList());
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Path to the config resource on detekt's classpath ({@code path/to/config.yml}).
|
* Path to the config resource on detekt's classpath ({@code path/to/config.yml}).
|
||||||
*
|
*
|
||||||
|
@ -275,7 +367,36 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
* @return this operation instance
|
* @return this operation instance
|
||||||
*/
|
*/
|
||||||
public DetektOperation configResource(File resource) {
|
public DetektOperation configResource(File resource) {
|
||||||
configResource_ = resource.getAbsolutePath();
|
return configResource(resource.getAbsolutePath());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Path to the config resource on detekt's classpath ({@code path/to/config.yml}).
|
||||||
|
*
|
||||||
|
* @param resource the config resource path
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation configResource(Path resource) {
|
||||||
|
return configResource(resource.toFile());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves the path of the config resource.
|
||||||
|
*
|
||||||
|
* @return the config resource path
|
||||||
|
*/
|
||||||
|
public String configResource() {
|
||||||
|
return configResource_;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Paths to the config files ({@code path/to/config.yml}).
|
||||||
|
*
|
||||||
|
* @param configs the config files
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation configStrings(Collection<String> configs) {
|
||||||
|
config_.addAll(configs.stream().map(File::new).toList());
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -627,8 +748,7 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
* @return this operation instance
|
* @return this operation instance
|
||||||
*/
|
*/
|
||||||
public DetektOperation input(String... paths) {
|
public DetektOperation input(String... paths) {
|
||||||
input_.addAll(Arrays.stream(paths).map(File::new).toList());
|
return inputStrings(List.of(paths));
|
||||||
return this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -638,10 +758,18 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
* @return this operation instance
|
* @return this operation instance
|
||||||
*/
|
*/
|
||||||
public DetektOperation input(File... paths) {
|
public DetektOperation input(File... paths) {
|
||||||
input_.addAll(List.of(paths));
|
return input(List.of(paths));
|
||||||
return this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Input paths to analyze. If not specified the current working directory is used.
|
||||||
|
*
|
||||||
|
* @param paths one or more paths
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation input(Path... paths) {
|
||||||
|
return inputPaths(List.of(paths));
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the input paths to analyze.
|
* Returns the input paths to analyze.
|
||||||
|
@ -652,6 +780,28 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
return input_;
|
return input_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Input paths to analyze. If not specified the current working directory is used.
|
||||||
|
*
|
||||||
|
* @param paths the paths
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation inputPaths(Collection<Path> paths) {
|
||||||
|
input_.addAll(paths.stream().map(Path::toFile).toList());
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Input paths to analyze. If not specified the current working directory is used.
|
||||||
|
*
|
||||||
|
* @param paths the paths
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation inputStrings(Collection<String> paths) {
|
||||||
|
input_.addAll(paths.stream().map(File::new).toList());
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Determines if a string is not blank.
|
* Determines if a string is not blank.
|
||||||
*/
|
*/
|
||||||
|
@ -731,8 +881,7 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
* @return this operation instance
|
* @return this operation instance
|
||||||
*/
|
*/
|
||||||
public DetektOperation plugins(String... jars) {
|
public DetektOperation plugins(String... jars) {
|
||||||
plugins_.addAll(Arrays.stream(jars).map(File::new).toList());
|
return pluginsStrings(List.of(jars));
|
||||||
return this;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -742,8 +891,17 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
* @return this operation instance
|
* @return this operation instance
|
||||||
*/
|
*/
|
||||||
public DetektOperation plugins(File... jars) {
|
public DetektOperation plugins(File... jars) {
|
||||||
plugins_.addAll(List.of(jars));
|
return plugins(List.of(jars));
|
||||||
return this;
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extra paths to plugin jars.
|
||||||
|
*
|
||||||
|
* @param jars one or more jars
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation plugins(Path... jars) {
|
||||||
|
return pluginsPaths(List.of(jars));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -766,6 +924,28 @@ public class DetektOperation extends AbstractProcessOperation<DetektOperation> {
|
||||||
return plugins_;
|
return plugins_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extra paths to plugin jars.
|
||||||
|
*
|
||||||
|
* @param jars the jars paths
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation pluginsPaths(Collection<Path> jars) {
|
||||||
|
plugins_.addAll(jars.stream().map(Path::toFile).toList());
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Extra paths to plugin jars.
|
||||||
|
*
|
||||||
|
* @param jars the jars paths
|
||||||
|
* @return this operation instance
|
||||||
|
*/
|
||||||
|
public DetektOperation pluginsStrings(Collection<String> jars) {
|
||||||
|
plugins_.addAll(jars.stream().map(File::new).toList());
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates a report for given {@link ReportId report-id} and stores it on given 'path'.
|
* Generates a report for given {@link ReportId report-id} and stores it on given 'path'.
|
||||||
*
|
*
|
||||||
|
|
|
@ -60,6 +60,36 @@ class DetektOperationTest {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testBasePath() {
|
||||||
|
var foo = new File("foo");
|
||||||
|
var bar = new File("bar");
|
||||||
|
|
||||||
|
var op = new DetektOperation().basePath(foo);
|
||||||
|
assertThat(op.basePath()).as("as file").isEqualTo(foo.getAbsolutePath());
|
||||||
|
|
||||||
|
op = op.basePath(bar.toPath());
|
||||||
|
assertThat(op.basePath()).as("as path").isEqualTo(bar.getAbsolutePath());
|
||||||
|
|
||||||
|
op = new DetektOperation().basePath("foo");
|
||||||
|
assertThat(op.basePath()).as("as string").isEqualTo("foo");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testBaseline() {
|
||||||
|
var foo = new File("foo");
|
||||||
|
var bar = new File("bar");
|
||||||
|
|
||||||
|
var op = new DetektOperation().baseline(foo);
|
||||||
|
assertThat(op.baseline()).as("as file").isEqualTo(foo.getAbsolutePath());
|
||||||
|
|
||||||
|
op = op.baseline(bar.toPath());
|
||||||
|
assertThat(op.baseline()).as("as path").isEqualTo(bar.getAbsolutePath());
|
||||||
|
|
||||||
|
op = new DetektOperation().baseline("foo");
|
||||||
|
assertThat(op.baseline()).as("as string").isEqualTo("foo");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@SuppressWarnings("PMD.AvoidInstantiatingObjectsInLoops")
|
@SuppressWarnings("PMD.AvoidInstantiatingObjectsInLoops")
|
||||||
void testCheckAllParameters() throws IOException {
|
void testCheckAllParameters() throws IOException {
|
||||||
|
@ -129,6 +159,81 @@ class DetektOperationTest {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testClassPath() {
|
||||||
|
var foo = new File("foo");
|
||||||
|
var bar = new File("bar");
|
||||||
|
|
||||||
|
var op = new DetektOperation().classPath("foo", "bar");
|
||||||
|
assertThat(op.classPath()).as("String...").contains(foo, bar);
|
||||||
|
op.classPath().clear();
|
||||||
|
|
||||||
|
op = op.classPath(foo, bar);
|
||||||
|
assertThat(op.classPath()).as("File...").contains(foo, bar);
|
||||||
|
op.classPath().clear();
|
||||||
|
|
||||||
|
op = op.classPath(foo.toPath(), bar.toPath());
|
||||||
|
assertThat(op.classPath()).as("Path...").contains(foo, bar);
|
||||||
|
op.classPath().clear();
|
||||||
|
|
||||||
|
op = op.classPathStrings(List.of("foo", "bar"));
|
||||||
|
assertThat(op.classPath()).as("List(String...)").contains(foo, bar);
|
||||||
|
op.classPath().clear();
|
||||||
|
|
||||||
|
op = op.classPath(List.of(foo, bar));
|
||||||
|
assertThat(op.classPath()).as("File...").contains(foo, bar);
|
||||||
|
op.classPath().clear();
|
||||||
|
|
||||||
|
op = op.classPathPaths(List.of(foo.toPath(), bar.toPath()));
|
||||||
|
assertThat(op.classPath()).as("Path...").contains(foo, bar);
|
||||||
|
op.classPath().clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testConfig() {
|
||||||
|
var foo = new File("foo");
|
||||||
|
var bar = new File("bar");
|
||||||
|
|
||||||
|
var op = new DetektOperation().config("foo", "bar");
|
||||||
|
assertThat(op.config()).as("String...").contains(foo, bar);
|
||||||
|
op.config().clear();
|
||||||
|
|
||||||
|
op = op.config(foo, bar);
|
||||||
|
assertThat(op.config()).as("File...").contains(foo, bar);
|
||||||
|
op.config().clear();
|
||||||
|
|
||||||
|
op = op.config(foo.toPath(), bar.toPath());
|
||||||
|
assertThat(op.config()).as("Path...").contains(foo, bar);
|
||||||
|
op.config().clear();
|
||||||
|
|
||||||
|
op = op.configStrings(List.of("foo", "bar"));
|
||||||
|
assertThat(op.config()).as("List(String...)").contains(foo, bar);
|
||||||
|
op.config().clear();
|
||||||
|
|
||||||
|
op = op.config(List.of(foo, bar));
|
||||||
|
assertThat(op.config()).as("File...").contains(foo, bar);
|
||||||
|
op.config().clear();
|
||||||
|
|
||||||
|
op = op.configPaths(List.of(foo.toPath(), bar.toPath()));
|
||||||
|
assertThat(op.config()).as("Path...").contains(foo, bar);
|
||||||
|
op.config().clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testConfigResource() {
|
||||||
|
var foo = new File("foo");
|
||||||
|
var bar = new File("bar");
|
||||||
|
|
||||||
|
var op = new DetektOperation().configResource(foo);
|
||||||
|
assertThat(op.configResource()).as("as file").isEqualTo(foo.getAbsolutePath());
|
||||||
|
|
||||||
|
op = op.configResource(bar.toPath());
|
||||||
|
assertThat(op.configResource()).as("as path").isEqualTo(bar.getAbsolutePath());
|
||||||
|
|
||||||
|
op = new DetektOperation().configResource("foo");
|
||||||
|
assertThat(op.configResource()).as("as string").isEqualTo("foo");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
void testExampleBaseline() throws IOException, ExitStatusException, InterruptedException {
|
void testExampleBaseline() throws IOException, ExitStatusException, InterruptedException {
|
||||||
var tmpDir = Files.createTempDirectory("bld-detekt-").toFile();
|
var tmpDir = Files.createTempDirectory("bld-detekt-").toFile();
|
||||||
|
@ -197,4 +302,64 @@ class DetektOperationTest {
|
||||||
var op = new DetektOperation();
|
var op = new DetektOperation();
|
||||||
assertThatCode(op::execute).isInstanceOf(ExitStatusException.class);
|
assertThatCode(op::execute).isInstanceOf(ExitStatusException.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testInput() {
|
||||||
|
var foo = new File("foo");
|
||||||
|
var bar = new File("bar");
|
||||||
|
|
||||||
|
var op = new DetektOperation().input("foo", "bar");
|
||||||
|
assertThat(op.input()).as("String...").contains(foo, bar);
|
||||||
|
op.input().clear();
|
||||||
|
|
||||||
|
op = op.input(foo, bar);
|
||||||
|
assertThat(op.input()).as("File...").contains(foo, bar);
|
||||||
|
op.input().clear();
|
||||||
|
|
||||||
|
op = op.input(foo.toPath(), bar.toPath());
|
||||||
|
assertThat(op.input()).as("Path...").contains(foo, bar);
|
||||||
|
op.input().clear();
|
||||||
|
|
||||||
|
op = op.inputStrings(List.of("foo", "bar"));
|
||||||
|
assertThat(op.input()).as("List(String...)").contains(foo, bar);
|
||||||
|
op.input().clear();
|
||||||
|
|
||||||
|
op = op.input(List.of(foo, bar));
|
||||||
|
assertThat(op.input()).as("File...").contains(foo, bar);
|
||||||
|
op.input().clear();
|
||||||
|
|
||||||
|
op = op.inputPaths(List.of(foo.toPath(), bar.toPath()));
|
||||||
|
assertThat(op.input()).as("Path...").contains(foo, bar);
|
||||||
|
op.input().clear();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testPlugins() {
|
||||||
|
var foo = new File("foo");
|
||||||
|
var bar = new File("bar");
|
||||||
|
|
||||||
|
var op = new DetektOperation().plugins("foo", "bar");
|
||||||
|
assertThat(op.plugins()).as("String...").contains(foo, bar);
|
||||||
|
op.plugins().clear();
|
||||||
|
|
||||||
|
op = op.plugins(foo, bar);
|
||||||
|
assertThat(op.plugins()).as("File...").contains(foo, bar);
|
||||||
|
op.plugins().clear();
|
||||||
|
|
||||||
|
op = op.plugins(foo.toPath(), bar.toPath());
|
||||||
|
assertThat(op.plugins()).as("Path...").contains(foo, bar);
|
||||||
|
op.plugins().clear();
|
||||||
|
|
||||||
|
op = op.pluginsStrings(List.of("foo", "bar"));
|
||||||
|
assertThat(op.plugins()).as("List(String...)").contains(foo, bar);
|
||||||
|
op.plugins().clear();
|
||||||
|
|
||||||
|
op = op.plugins(List.of(foo, bar));
|
||||||
|
assertThat(op.plugins()).as("File...").contains(foo, bar);
|
||||||
|
op.plugins().clear();
|
||||||
|
|
||||||
|
op = op.pluginsPaths(List.of(foo.toPath(), bar.toPath()));
|
||||||
|
assertThat(op.plugins()).as("Path...").contains(foo, bar);
|
||||||
|
op.plugins().clear();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue