-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add JUnit 5 Rule to Ensure Test Methods Contain Assertions or Verific…
…ations Closes gh-99
- Loading branch information
Showing
6 changed files
with
149 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
83 changes: 83 additions & 0 deletions
83
src/main/java/com/enofex/taikai/test/ContainAssertionsOrVerifications.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
package com.enofex.taikai.test; | ||
|
||
import com.tngtech.archunit.core.domain.JavaMethod; | ||
import com.tngtech.archunit.core.domain.JavaMethodCall; | ||
import com.tngtech.archunit.lang.ArchCondition; | ||
import com.tngtech.archunit.lang.ConditionEvents; | ||
import com.tngtech.archunit.lang.SimpleConditionEvent; | ||
|
||
final class ContainAssertionsOrVerifications { | ||
|
||
private ContainAssertionsOrVerifications() { | ||
} | ||
|
||
static ArchCondition<JavaMethod> containAssertionsOrVerifications() { | ||
return new ArchCondition<>("a unit test should assert or verify something") { | ||
@Override | ||
public void check(JavaMethod item, ConditionEvents events) { | ||
for (JavaMethodCall call : item.getMethodCallsFromSelf()) { | ||
if (jUnit5(call) || | ||
mockito(call) || | ||
hamcrest(call) || | ||
assertJ(call) || | ||
truth(call) || | ||
cucumber(call) || | ||
springMockMvc(call) || | ||
archRule(call) || | ||
taikai(call) | ||
) { | ||
return; | ||
} | ||
} | ||
events.add(SimpleConditionEvent.violated( | ||
item, | ||
"%s does not assert or verify anything".formatted(item.getDescription())) | ||
); | ||
} | ||
|
||
private boolean jUnit5(JavaMethodCall call) { | ||
return "org.junit.jupiter.api.Assertions".equals(call.getTargetOwner().getName()); | ||
} | ||
|
||
private boolean mockito(JavaMethodCall call) { | ||
return "org.mockito.Mockito".equals(call.getTargetOwner().getName()) | ||
&& (call.getName().startsWith("verify") | ||
|| "inOrder".equals(call.getName()) | ||
|| "capture".equals(call.getName())); | ||
} | ||
|
||
private boolean hamcrest(JavaMethodCall call) { | ||
return "org.hamcrest.MatcherAssert".equals(call.getTargetOwner().getName()); | ||
} | ||
|
||
private boolean assertJ(JavaMethodCall call) { | ||
return "org.assertj.core.api.Assertions".equals(call.getTargetOwner().getName()); | ||
} | ||
|
||
private boolean truth(JavaMethodCall call) { | ||
return "com.google.common.truth.Truth".equals(call.getTargetOwner().getName()); | ||
} | ||
|
||
private boolean cucumber(JavaMethodCall call) { | ||
return "io.cucumber.java.en.Then".equals(call.getTargetOwner().getName()) || | ||
"io.cucumber.java.en.Given".equals(call.getTargetOwner().getName()); | ||
} | ||
|
||
private boolean springMockMvc(JavaMethodCall call) { | ||
return | ||
"org.springframework.test.web.servlet.MockMvc".equals(call.getTargetOwner().getName()) | ||
&& ("andExpect".equals(call.getName()) || "andDo".equals(call.getName())); | ||
} | ||
|
||
private boolean archRule(JavaMethodCall call) { | ||
return "com.tngtech.archunit.lang.ArchRule".equals(call.getTargetOwner().getName()) | ||
&& "check".equals(call.getName()); | ||
} | ||
|
||
private boolean taikai(JavaMethodCall call) { | ||
return "com.enofex.taikai.Taikai".equals(call.getTargetOwner().getName()) | ||
&& "check".equals(call.getName()); | ||
} | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters