Fix Konsist test.
New enterprise module was not correctly detected. Also ensure that the files are correctly found.
This commit is contained in:
parent
e99d166201
commit
e7de056d47
1 changed files with 9 additions and 2 deletions
|
|
@ -7,6 +7,7 @@
|
|||
|
||||
package io.element.android.tests.konsist
|
||||
|
||||
import com.google.common.truth.Truth.assertThat
|
||||
import com.lemonappdev.konsist.api.Konsist
|
||||
import com.lemonappdev.konsist.api.verify.assertTrue
|
||||
import org.junit.Test
|
||||
|
|
@ -43,10 +44,13 @@ class KonsistLicenseTest {
|
|||
.scopeFromProject()
|
||||
.files
|
||||
.filter {
|
||||
it.path.contains("/enterprise/features").not() &&
|
||||
it.moduleName.startsWith("enterprise").not() &&
|
||||
it.nameWithExtension != "locales.kt" &&
|
||||
it.name.startsWith("Template ").not()
|
||||
}
|
||||
.also {
|
||||
assertThat(it).isNotEmpty()
|
||||
}
|
||||
.assertTrue {
|
||||
publicLicense.containsMatchIn(it.text)
|
||||
}
|
||||
|
|
@ -58,7 +62,10 @@ class KonsistLicenseTest {
|
|||
.scopeFromProject()
|
||||
.files
|
||||
.filter {
|
||||
it.path.contains("/enterprise/features")
|
||||
it.moduleName.startsWith("enterprise")
|
||||
}
|
||||
.also {
|
||||
assertThat(it).isNotEmpty()
|
||||
}
|
||||
.assertTrue {
|
||||
enterpriseLicense.containsMatchIn(it.text)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue