Skip to content

Commit 3358d20

Browse files
committed
Verify aggregation in tests.
1 parent 747a8b0 commit 3358d20

File tree

6 files changed

+18
-20
lines changed

6 files changed

+18
-20
lines changed

src/test/java/edu/hm/hafner/coverage/ClassNodeTest.java

+7-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import org.junit.jupiter.api.Test;
44

5-
import static org.assertj.core.api.Assertions.*;
5+
import static edu.hm.hafner.coverage.assertions.Assertions.*;
66

77
class ClassNodeTest extends AbstractNodeTest {
88
@Override
@@ -17,15 +17,16 @@ Node createNode(final String name) {
1717

1818
@Test
1919
void shouldHandleUnexpectedNodes() {
20-
var root = new ClassNode("Class");
20+
var classNode = new ClassNode("Class");
2121
var main = new MethodNode("main", "String...");
22-
root.addChild(main);
23-
root.addChild(new ClassNode("NestedClass"));
22+
classNode.addChild(main);
23+
classNode.addChild(new ClassNode("NestedClass"));
2424

25-
assertThat(root.findMethod("main", "String..."))
25+
assertThat(classNode.findMethod("main", "String..."))
2626
.isPresent()
2727
.containsSame(main);
28-
assertThat(root.findMethod("main", "Nothing"))
28+
assertThat(classNode.findMethod("main", "Nothing"))
2929
.isNotPresent();
30+
assertThat(classNode).isNotAggregation();
3031
}
3132
}

src/test/java/edu/hm/hafner/coverage/ContainerNodeTest.java

+5-6
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,16 @@ Node createNode(final String name) {
1717

1818
@Test
1919
void shouldAggregateSourceFolders() {
20-
var root = new ContainerNode("root");
20+
var containerNode = new ContainerNode("root");
2121
var left = new ModuleNode("left");
22-
root.addChild(left);
22+
containerNode.addChild(left);
2323
var right = new ModuleNode("right");
24-
root.addChild(right);
24+
containerNode.addChild(right);
2525

26-
assertThat(root.getSourceFolders()).isEmpty();
27-
assertThat(root.getChildren()).containsExactly(left, right);
26+
assertThat(containerNode).hasNoSourceFolders().hasOnlyChildren(left, right).isAggregation();
2827

2928
left.addSource("left/path");
3029
right.addSource("right/path");
31-
assertThat(root.getSourceFolders()).containsExactly("left/path", "right/path");
30+
assertThat(containerNode).hasSourceFolders("left/path", "right/path");
3231
}
3332
}

src/test/java/edu/hm/hafner/coverage/FileNodeTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ void shouldGetFilePath() {
4949
folder.addChild(file);
5050
module.addChild(folder);
5151

52-
assertThat(file.getRelativePath()).isEqualTo(relativePath);
52+
assertThat(file).hasRelativePath(relativePath).isNotAggregation();
5353
var otherPath = "other";
5454

5555
assertThat(file.getFiles()).containsExactly(relativePath);

src/test/java/edu/hm/hafner/coverage/MethodNodeTest.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ void shouldCreateMethodCoverageNode() {
2828
.hasMethodName("shouldCreateMethodCoverageNode()")
2929
.hasSignature("(Ljava/util/Map;)V")
3030
.hasLineNumber(16)
31-
.hasValidLineNumber();
31+
.hasValidLineNumber()
32+
.isNotAggregation();
3233
}
3334

3435
@Test

src/test/java/edu/hm/hafner/coverage/ModuleNodeTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Metric getMetric() {
1616
Node createNode(final String name) {
1717
var moduleNode = new ModuleNode(name);
1818
moduleNode.addSource("/path/to/sources");
19+
assertThat(moduleNode).hasSourceFolders("/path/to/sources").isAggregation();
1920
return moduleNode;
2021
}
2122

src/test/java/edu/hm/hafner/coverage/PackageNodeTest.java

+2-6
Original file line numberDiff line numberDiff line change
@@ -21,32 +21,28 @@ Node createNode(final String name) {
2121
*/
2222
@Test
2323
void shouldCopyEmpty() {
24-
// Given
2524
String parentName = ".ui.home.model";
2625
var parent = new PackageNode(parentName);
2726
var child = new PackageNode("data");
2827
parent.addChild(child);
2928

30-
// When
3129
Node actualEmptyCopy = parent.copy();
3230

33-
// Then
3431
assertThat(actualEmptyCopy)
3532
.hasName(parentName)
3633
.hasNoChildren()
37-
.isEqualTo(new PackageNode(parentName));
34+
.isEqualTo(new PackageNode(parentName))
35+
.isAggregation();
3836
}
3937

4038
/**
4139
* Tests the match functionality using a path hashcode.
4240
*/
4341
@Test
4442
void shouldMatchPath() {
45-
// Given
4643
String pkgName = "ui.home.model";
4744
var pkg = new PackageNode(pkgName);
4845

49-
// When & Then
5046
assertThat(pkg.matches(PACKAGE, "ui.home.model".hashCode())).isTrue();
5147
assertThat(pkg.matches(PACKAGE, "test.path".hashCode())).isFalse();
5248
}

0 commit comments

Comments
 (0)