|
| 1 | +package linter; |
| 2 | + |
| 3 | +import com.tngtech.archunit.core.domain.JavaClass; |
| 4 | +import com.tngtech.archunit.core.importer.ClassFileImporter; |
| 5 | +import com.tngtech.archunit.core.importer.ImportOption; |
| 6 | +import com.tngtech.archunit.lang.ArchCondition; |
| 7 | +import com.tngtech.archunit.lang.ArchRule; |
| 8 | +import com.tngtech.archunit.lang.ConditionEvents; |
| 9 | +import com.tngtech.archunit.lang.SimpleConditionEvent; |
| 10 | +import org.junit.jupiter.api.Test; |
| 11 | + |
| 12 | +import static com.tngtech.archunit.lang.syntax.ArchRuleDefinition.classes; |
| 13 | + |
| 14 | +public class PackageDepthTest { |
| 15 | + @Test |
| 16 | + void maxTwo() { |
| 17 | + classes() |
| 18 | + .should(havePackageDepthLessThanOrEqualTo(1 + 2)) |
| 19 | + .check(new ClassFileImporter() |
| 20 | + .withImportOption(ImportOption.Predefined.DO_NOT_INCLUDE_TESTS) |
| 21 | + .importPackages("io.vavr")); |
| 22 | + } |
| 23 | + |
| 24 | + private static ArchCondition<JavaClass> havePackageDepthLessThanOrEqualTo(int maxDepth) { |
| 25 | + return new ArchCondition<JavaClass>("have a package depth of " + maxDepth + " or less") { |
| 26 | + @Override |
| 27 | + public void check(JavaClass item, ConditionEvents events) { |
| 28 | + int depth = item.getPackageName().split("\\.").length; |
| 29 | + if (depth > maxDepth) { |
| 30 | + String message = String.format( |
| 31 | + "Class %s has a package depth of %d, which exceeds the allowed maximum of %d", |
| 32 | + item.getName(), depth, maxDepth |
| 33 | + ); |
| 34 | + events.add(SimpleConditionEvent.violated(item, message)); |
| 35 | + } |
| 36 | + } |
| 37 | + }; |
| 38 | + } |
| 39 | +} |
0 commit comments