-
Notifications
You must be signed in to change notification settings - Fork 88
/
CustomerModuleTest.kt
26 lines (21 loc) · 1.42 KB
/
CustomerModuleTest.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.drestaurant
import com.tngtech.archunit.junit.AnalyzeClasses
import com.tngtech.archunit.junit.ArchTest
import com.tngtech.archunit.junit.ArchUnitRunner
import com.tngtech.archunit.lang.syntax.ArchRuleDefinition
import org.junit.runner.RunWith
@RunWith(ArchUnitRunner::class)
@AnalyzeClasses(packages = ["com.drestaurant"])
internal class CustomerModuleTest {
/**
* Testing the 'package' visibility/scope of 'internal' classes within the module.
*
* If you would have more packages/bounded contexts in this module, e.g: `com.rdestaurant.foo.domain` with classes accessing `com.drestaurant.customer.domain` test will fail.
* This will force your bounded contexts/packages to be more decoupled within the same module, and should be easy to extract them in separate modules in the future (if needed).
*
* In Java programming language you should only check the 'modifier'. Kotlin does not have 'package' scope
*/
@ArchTest
val classes_from_customer_domain_package_should_only_be_accessed_within_same_package = ArchRuleDefinition.classes().that().resideInAPackage("com.drestaurant.customer.domain").should().onlyBeAccessed().byClassesThat().resideInAPackage("com.drestaurant.customer.domain")
// TODO It would be nice to check if the all classes in this package ("com.drestaurant.customer.domain") are also `INTERNAL` for the module. Not sure how to do this with ArchUnit and Kotlin
}