Skip to content

Commit 8ff7904

Browse files
#109 Excluding tests from analysis by default
Excluding tests from analysis by default. User can also specify the test directory. Test directory defaults to "src/test" or "src\test" based on the operating system.
1 parent c534772 commit 8ff7904

File tree

9 files changed

+152
-34
lines changed

9 files changed

+152
-34
lines changed

cli/src/main/java/org/hjug/refactorfirst/ReportCommand.java

+18
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,20 @@ public class ReportCommand implements Callable<Integer> {
4343
description = "Minify HTML output")
4444
private boolean minifiyHtml;
4545

46+
@Option(
47+
names = {"-xt", "--exclude-tests"},
48+
defaultValue = "true",
49+
description = "Exclude tests from analysis")
50+
private boolean excludeTests;
51+
52+
/**
53+
* The test source directory containing test class sources.
54+
*/
55+
@Option(
56+
names = {"-tsd", "--output"},
57+
description = "Test source directory. Defaults to test/src or test\\src based on your OS")
58+
private String testSourceDirectory;
59+
4660
@Option(
4761
names = {"-p", "--project"},
4862
description = "Project name")
@@ -85,6 +99,8 @@ public Integer call() {
8599
analyzeCycles,
86100
showDetails,
87101
minifiyHtml,
102+
excludeTests,
103+
testSourceDirectory,
88104
projectName,
89105
projectVersion,
90106
baseDir,
@@ -97,6 +113,8 @@ public Integer call() {
97113
analyzeCycles,
98114
showDetails,
99115
minifiyHtml,
116+
excludeTests,
117+
testSourceDirectory,
100118
projectName,
101119
projectVersion,
102120
baseDir,

codebase-graph-builder/src/main/java/org/hjug/graphbuilder/JavaGraphBuilder.java

+16-5
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,21 @@ public class JavaGraphBuilder {
2929
* @return
3030
* @throws IOException
3131
*/
32-
public Graph<String, DefaultWeightedEdge> getClassReferences(String srcDirectory) throws IOException {
32+
public Graph<String, DefaultWeightedEdge> getClassReferences(
33+
String srcDirectory, boolean excludeTests, String testSourceDirectory) throws IOException {
3334
Graph<String, DefaultWeightedEdge> classReferencesGraph;
3435
if (srcDirectory == null || srcDirectory.isEmpty()) {
3536
throw new IllegalArgumentException();
3637
} else {
37-
classReferencesGraph = processWithOpenRewrite(srcDirectory).getClassReferencesGraph();
38+
classReferencesGraph = processWithOpenRewrite(srcDirectory, excludeTests, testSourceDirectory)
39+
.getClassReferencesGraph();
3840
}
3941

4042
return classReferencesGraph;
4143
}
4244

43-
private CodebaseGraphDTO processWithOpenRewrite(String srcDir) throws IOException {
45+
private CodebaseGraphDTO processWithOpenRewrite(
46+
String srcDir, boolean excludeTests, String testSourceDirectory) throws IOException {
4447
File srcDirectory = new File(srcDir);
4548

4649
JavaParser javaParser = JavaParser.fromJavaVersion().build();
@@ -59,8 +62,16 @@ private CodebaseGraphDTO processWithOpenRewrite(String srcDir) throws IOExceptio
5962
final JavaMethodDeclarationVisitor<ExecutionContext> javaMethodDeclarationVisitor =
6063
new JavaMethodDeclarationVisitor<>(classReferencesGraph, packageReferencesGraph);
6164

62-
try (Stream<Path> walk = Files.walk(Paths.get(srcDirectory.getAbsolutePath()))) {
63-
List<Path> list = walk.collect(Collectors.toList());
65+
try (Stream<Path> pathStream = Files.walk(Paths.get(srcDirectory.getAbsolutePath()))) {
66+
List<Path> list;
67+
if (excludeTests) {
68+
list = pathStream
69+
.filter(file -> !file.toString().contains(testSourceDirectory))
70+
.collect(Collectors.toList());
71+
} else {
72+
list = pathStream.collect(Collectors.toList());
73+
}
74+
6475
javaParser
6576
.parse(list, Paths.get(srcDirectory.getAbsolutePath()), ctx)
6677
.forEach(cu -> {

codebase-graph-builder/src/test/java/org/hjug/graphbuilder/JavaGraphBuilderTest.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,18 @@ class JavaGraphBuilderTest {
1919
@DisplayName("When source directory input param is empty or null throw IllegalArgumentException.")
2020
@Test
2121
void parseSourceDirectoryEmptyTest() {
22-
Assertions.assertThrows(IllegalArgumentException.class, () -> javaGraphBuilder.getClassReferences(""));
23-
Assertions.assertThrows(IllegalArgumentException.class, () -> javaGraphBuilder.getClassReferences(null));
22+
Assertions.assertThrows(
23+
IllegalArgumentException.class, () -> javaGraphBuilder.getClassReferences("", false, ""));
24+
Assertions.assertThrows(
25+
IllegalArgumentException.class, () -> javaGraphBuilder.getClassReferences(null, false, ""));
2426
}
2527

2628
@DisplayName("Given a valid source directory input parameter return a valid graph.")
2729
@Test
2830
void parseSourceDirectoryTest() throws IOException {
2931
File srcDirectory = new File("src/test/resources/javaSrcDirectory");
3032
Graph<String, DefaultWeightedEdge> classReferencesGraph =
31-
javaGraphBuilder.getClassReferences(srcDirectory.getAbsolutePath());
33+
javaGraphBuilder.getClassReferences(srcDirectory.getAbsolutePath(), false, "");
3234
assertNotNull(classReferencesGraph);
3335
assertEquals(5, classReferencesGraph.vertexSet().size());
3436
assertEquals(7, classReferencesGraph.edgeSet().size());
@@ -76,7 +78,7 @@ private static double getEdgeWeight(
7678
void removeClassesNotInCodebase() throws IOException {
7779
File srcDirectory = new File("src/test/resources/javaSrcDirectory");
7880
Graph<String, DefaultWeightedEdge> classReferencesGraph =
79-
javaGraphBuilder.getClassReferences(srcDirectory.getAbsolutePath());
81+
javaGraphBuilder.getClassReferences(srcDirectory.getAbsolutePath(), false, "");
8082

8183
classReferencesGraph.addVertex("org.favioriteoss.FunClass");
8284
classReferencesGraph.addVertex("org.favioriteoss.AnotherFunClass");

cost-benefit-calculator/src/main/java/org/hjug/cbc/CostBenefitCalculator.java

+33-7
Original file line numberDiff line numberDiff line change
@@ -53,23 +53,49 @@ public void runPmdAnalysis() throws IOException {
5353
PMDConfiguration configuration = new PMDConfiguration();
5454

5555
try (PmdAnalysis pmd = PmdAnalysis.create(configuration)) {
56-
RuleSetLoader rulesetLoader = pmd.newRuleSetLoader();
57-
pmd.addRuleSets(rulesetLoader.loadRuleSetsWithoutException(List.of("category/java/design.xml")));
56+
loadRules(pmd);
5857

59-
Rule cboClassRule = new CBORule();
60-
cboClassRule.setLanguage(LanguageRegistry.PMD.getLanguageByFullName("Java"));
61-
pmd.addRuleSet(RuleSet.forSingleRule(cboClassRule));
58+
try (Stream<Path> files = Files.walk(Paths.get(repositoryPath))) {
59+
files.filter(Files::isRegularFile).forEach(file -> pmd.files().addFile(file));
60+
}
61+
62+
report = pmd.performAnalysisAndCollectReport();
63+
}
64+
}
6265

63-
log.info("files to be scanned: " + Paths.get(repositoryPath));
66+
public void runPmdAnalysis(boolean excludeTests, String testSourceDirectory) throws IOException {
67+
PMDConfiguration configuration = new PMDConfiguration();
68+
69+
try (PmdAnalysis pmd = PmdAnalysis.create(configuration)) {
70+
loadRules(pmd);
6471

6572
try (Stream<Path> files = Files.walk(Paths.get(repositoryPath))) {
66-
files.filter(Files::isRegularFile).forEach(file -> pmd.files().addFile(file));
73+
Stream<Path> pathStream;
74+
if (excludeTests) {
75+
pathStream = files.filter(Files::isRegularFile)
76+
.filter(file -> !file.toString().contains(testSourceDirectory));
77+
} else {
78+
pathStream = files.filter(Files::isRegularFile);
79+
}
80+
81+
pathStream.forEach(file -> pmd.files().addFile(file));
6782
}
6883

6984
report = pmd.performAnalysisAndCollectReport();
7085
}
7186
}
7287

88+
private void loadRules(PmdAnalysis pmd) {
89+
RuleSetLoader rulesetLoader = pmd.newRuleSetLoader();
90+
pmd.addRuleSets(rulesetLoader.loadRuleSetsWithoutException(List.of("category/java/design.xml")));
91+
92+
Rule cboClassRule = new CBORule();
93+
cboClassRule.setLanguage(LanguageRegistry.PMD.getLanguageByFullName("Java"));
94+
pmd.addRuleSet(RuleSet.forSingleRule(cboClassRule));
95+
96+
log.info("files to be scanned: " + Paths.get(repositoryPath));
97+
}
98+
7399
public List<RankedDisharmony> calculateGodClassCostBenefitValues() {
74100
List<GodClass> godClasses = getGodClasses();
75101

cost-benefit-calculator/src/main/java/org/hjug/cbc/CycleRanker.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,20 @@ public class CycleRanker {
2424
@Getter
2525
private Graph<String, DefaultWeightedEdge> classReferencesGraph;
2626

27-
public void generateClassReferencesGraph() {
27+
public void generateClassReferencesGraph(boolean excludeTests, String testSourceDirectory) {
2828
try {
29-
classReferencesGraph = javaGraphBuilder.getClassReferences(repositoryPath);
29+
classReferencesGraph =
30+
javaGraphBuilder.getClassReferences(repositoryPath, excludeTests, testSourceDirectory);
3031
} catch (IOException e) {
3132
throw new RuntimeException(e);
3233
}
3334
}
3435

35-
public List<RankedCycle> performCycleAnalysis() {
36+
public List<RankedCycle> performCycleAnalysis(boolean excludeTests, String testSourceDirectory) {
3637
List<RankedCycle> rankedCycles = new ArrayList<>();
3738
try {
3839
boolean calculateCycleChurn = false;
39-
generateClassReferencesGraph();
40+
generateClassReferencesGraph(excludeTests, testSourceDirectory);
4041
identifyRankedCycles(rankedCycles);
4142
sortRankedCycles(rankedCycles, calculateCycleChurn);
4243
setPriorities(rankedCycles);

refactor-first-maven-plugin/src/main/java/org/hjug/mavenreport/RefactorFirstHtmlReport.java

+11
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ public class RefactorFirstHtmlReport extends AbstractMojo {
3232
@Parameter(property = "minifyHtml")
3333
private boolean minifyHtml = true;
3434

35+
@Parameter(property = "excludeTests")
36+
private boolean excludeTests = true;
37+
38+
/**
39+
* The test source directory containing test class sources.
40+
*/
41+
@Parameter(property = "testSourceDirectory")
42+
private String testSourceDirectory;
43+
3544
@Parameter(defaultValue = "${project.name}")
3645
private String projectName;
3746

@@ -54,6 +63,8 @@ public void execute() {
5463
analyzeCycles,
5564
showDetails,
5665
minifyHtml,
66+
excludeTests,
67+
testSourceDirectory,
5768
projectName,
5869
projectVersion,
5970
project.getBasedir(),

refactor-first-maven-plugin/src/main/java/org/hjug/mavenreport/RefactorFirstMavenReport.java

+14-3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ public class RefactorFirstMavenReport extends AbstractMavenReport {
3232
@Parameter(property = "analyzeCycles")
3333
private boolean analyzeCycles = true;
3434

35+
@Parameter(property = "excludeTests")
36+
private boolean excludeTests = true;
37+
38+
/**
39+
* The test source directory containing test class sources.
40+
*/
41+
@Parameter(property = "testSourceDirectory")
42+
private String testSourceDirectory;
43+
3544
@Parameter(defaultValue = "${project.name}")
3645
private String projectName;
3746

@@ -63,12 +72,14 @@ public void executeReport(Locale locale) {
6372
String report = htmlReport
6473
.generateReport(
6574
showDetails,
75+
backEdgeAnalysisCount,
76+
analyzeCycles,
77+
excludeTests,
78+
testSourceDirectory,
6679
projectName,
6780
projectVersion,
6881
project.getBasedir(),
69-
300,
70-
backEdgeAnalysisCount,
71-
analyzeCycles)
82+
300)
7283
.toString();
7384

7485
mainSink.rawText(report);

refactor-first-maven-plugin/src/main/java/org/hjug/mavenreport/RefactorFirstSimpleHtmlReport.java

+11
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ public class RefactorFirstSimpleHtmlReport extends AbstractMojo {
3232
@Parameter(property = "minifyHtml")
3333
private boolean minifyHtml = true;
3434

35+
@Parameter(property = "excludeTests")
36+
private boolean excludeTests = true;
37+
38+
/**
39+
* The test source directory containing test class sources.
40+
*/
41+
@Parameter(property = "testSourceDirectory")
42+
private String testSourceDirectory;
43+
3544
@Parameter(defaultValue = "${project.name}")
3645
private String projectName;
3746

@@ -54,6 +63,8 @@ public void execute() {
5463
analyzeCycles,
5564
showDetails,
5665
minifyHtml,
66+
excludeTests,
67+
testSourceDirectory,
5768
projectName,
5869
projectVersion,
5970
project.getBasedir(),

report/src/main/java/org/hjug/refactorfirst/report/SimpleHtmlReport.java

+38-11
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ public void execute(
9292
boolean analyzeCycles,
9393
boolean showDetails,
9494
boolean minifyHtml,
95+
boolean excludeTests,
96+
String testSourceDirectory,
9597
String projectName,
9698
String projectVersion,
9799
File baseDir,
@@ -107,8 +109,15 @@ public void execute(
107109
stringBuilder.append(printTitle(projectName, projectVersion));
108110
stringBuilder.append(printHead());
109111
stringBuilder.append("</head>");
110-
stringBuilder.append(
111-
generateReport(showDetails, projectName, projectVersion, baseDir, edgeAnalysisCount, analyzeCycles));
112+
stringBuilder.append(generateReport(
113+
showDetails,
114+
edgeAnalysisCount,
115+
analyzeCycles,
116+
excludeTests,
117+
testSourceDirectory,
118+
projectName,
119+
projectVersion,
120+
baseDir));
112121

113122
stringBuilder.append(printProjectFooter());
114123
stringBuilder.append(THE_END);
@@ -125,23 +134,41 @@ public void execute(
125134

126135
public StringBuilder generateReport(
127136
boolean showDetails,
137+
int edgeAnalysisCount,
138+
boolean analyzeCycles,
139+
boolean excludeTests,
140+
String testSourceDirectory,
128141
String projectName,
129142
String projectVersion,
130-
File baseDir,
131-
int edgeAnalysisCount,
132-
boolean analyzeCycles) {
133-
return generateReport(showDetails, projectName, projectVersion, baseDir, 200, edgeAnalysisCount, analyzeCycles);
143+
File baseDir) {
144+
return generateReport(
145+
showDetails,
146+
edgeAnalysisCount,
147+
analyzeCycles,
148+
excludeTests,
149+
testSourceDirectory,
150+
projectName,
151+
projectVersion,
152+
baseDir,
153+
200);
134154
}
135155

136156
// pixels param is for SVG image pixel padding
137157
public StringBuilder generateReport(
138158
boolean showDetails,
159+
int edgeAnalysisCount,
160+
boolean analyzeCycles,
161+
boolean excludeTests,
162+
String testSourceDirectory,
139163
String projectName,
140164
String projectVersion,
141165
File baseDir,
142-
int pixels,
143-
int edgeAnalysisCount,
144-
boolean analyzeCycles) {
166+
int pixels) {
167+
168+
if (testSourceDirectory == null || testSourceDirectory.isEmpty()) {
169+
testSourceDirectory = "src" + File.separator + "test";
170+
}
171+
145172
this.pixels = pixels;
146173
StringBuilder stringBuilder = new StringBuilder();
147174
stringBuilder.append(printOpenBodyTag());
@@ -204,9 +231,9 @@ public StringBuilder generateReport(
204231
List<RankedCycle> rankedCycles = List.of();
205232
if (analyzeCycles) {
206233
log.info("Analyzing Cycles");
207-
rankedCycles = cycleRanker.performCycleAnalysis();
234+
rankedCycles = cycleRanker.performCycleAnalysis(excludeTests, testSourceDirectory);
208235
} else {
209-
cycleRanker.generateClassReferencesGraph();
236+
cycleRanker.generateClassReferencesGraph(excludeTests, testSourceDirectory);
210237
}
211238

212239
classGraph = cycleRanker.getClassReferencesGraph();

0 commit comments

Comments
 (0)