Fix Konsist test.

New enterprise module was not correctly detected.
Also ensure that the files are correctly found.
This commit is contained in:
Benoit Marty
2025-02-20 18:41:11 +01:00
parent cae160933f
commit d23efc3053

View File

@@ -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)