Browse Source

Merge pull request #1558 from vector-im/feature/bma/konsistTestLocation

Move Konsist tests to their own module
feature/bma/pendingSkdBranch
Benoit Marty 11 months ago committed by GitHub
parent
commit
18af57a97f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/build.gradle.kts
  2. 4
      features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/voicemessages/VoiceMessageComposerEvents.kt
  3. 1
      settings.gradle.kts
  4. 34
      tests/konsist/build.gradle.kts
  5. 2
      tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistArchitectureTest.kt
  6. 4
      tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistClassNameTest.kt
  7. 2
      tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistComposableTest.kt
  8. 45
      tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistConfigTest.kt
  9. 2
      tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistFieldTest.kt
  10. 2
      tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistPreviewTest.kt
  11. 2
      tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistTestTest.kt

1
app/build.gradle.kts

@ -230,7 +230,6 @@ dependencies { @@ -230,7 +230,6 @@ dependencies {
testImplementation(libs.test.truth)
testImplementation(libs.test.turbine)
testImplementation(projects.libraries.matrix.test)
testImplementation(libs.test.konsist)
ksp(libs.showkase.processor)
}

4
features/messages/impl/src/main/kotlin/io/element/android/features/messages/impl/voicemessages/VoiceMessageComposerEvents.kt

@ -18,8 +18,8 @@ package io.element.android.features.messages.impl.voicemessages @@ -18,8 +18,8 @@ package io.element.android.features.messages.impl.voicemessages
import io.element.android.libraries.textcomposer.model.PressEvent
sealed class VoiceMessageComposerEvents {
sealed interface VoiceMessageComposerEvents {
data class RecordButtonEvent(
val pressEvent: PressEvent
): VoiceMessageComposerEvents()
): VoiceMessageComposerEvents
}

1
settings.gradle.kts

@ -52,6 +52,7 @@ enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") @@ -52,6 +52,7 @@ enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "ElementX"
include(":app")
include(":appnav")
include(":tests:konsist")
include(":tests:uitests")
include(":tests:testutils")
include(":anvilannotations")

34
tests/konsist/build.gradle.kts

@ -0,0 +1,34 @@ @@ -0,0 +1,34 @@
/*
* Copyright (c) 2023 New Vector Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
plugins {
id("io.element.android-compose-library")
}
android {
namespace = "io.element.android.tests.konsist"
}
dependencies {
val composeBom = platform(libs.androidx.compose.bom)
testImplementation(composeBom)
testImplementation("androidx.compose.ui:ui-tooling-preview")
testImplementation(libs.test.junit)
testImplementation(libs.test.konsist)
testImplementation(libs.test.truth)
testImplementation(projects.libraries.architecture)
testImplementation(projects.libraries.designsystem)
}

2
app/src/test/kotlin/io/element/android/app/KonsistArchitectureTest.kt → tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistArchitectureTest.kt

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.app
package io.element.android.tests.konsist
import com.lemonappdev.konsist.api.Konsist
import com.lemonappdev.konsist.api.ext.list.constructors

4
app/src/test/kotlin/io/element/android/app/KonsistClassNameTest.kt → tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistClassNameTest.kt

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.app
package io.element.android.tests.konsist
import androidx.compose.ui.tooling.preview.PreviewParameterProvider
import com.bumble.appyx.core.node.Node
@ -46,7 +46,7 @@ class KonsistClassNameTest { @@ -46,7 +46,7 @@ class KonsistClassNameTest {
}
@Test
fun `Classes extending 'PreviewParameterProvider' name MUST end with "Provider" and MUST contain provided class name`() {
fun `Classes extending 'PreviewParameterProvider' name MUST end with 'Provider' and MUST contain provided class name`() {
Konsist.scopeFromProject()
.classes()
.withAllParentsOf(PreviewParameterProvider::class)

2
app/src/test/kotlin/io/element/android/app/KonsistComposableTest.kt → tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistComposableTest.kt

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.app
package io.element.android.tests.konsist
import androidx.compose.runtime.Composable
import com.lemonappdev.konsist.api.KoModifier

45
tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistConfigTest.kt

@ -0,0 +1,45 @@ @@ -0,0 +1,45 @@
/*
* Copyright (c) 2023 New Vector Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.element.android.tests.konsist
import com.google.common.truth.Truth.assertThat
import com.lemonappdev.konsist.api.Konsist
import org.junit.Test
class KonsistConfigTest {
@Test
fun `assert that Konsist detect all the project classes`() {
assertThat(
Konsist
.scopeFromProject()
.classes()
.size
)
.isGreaterThan(1_000)
}
@Test
fun `assert that Konsist detect all the test classes`() {
assertThat(
Konsist
.scopeFromTest()
.classes()
.size
)
.isGreaterThan(100)
}
}

2
app/src/test/kotlin/io/element/android/app/KonsistFieldTest.kt → tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistFieldTest.kt

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.app
package io.element.android.tests.konsist
import com.lemonappdev.konsist.api.Konsist
import com.lemonappdev.konsist.api.ext.list.properties

2
app/src/test/kotlin/io/element/android/app/KonsistPreviewTest.kt → tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistPreviewTest.kt

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.app
package io.element.android.tests.konsist
import com.lemonappdev.konsist.api.Konsist
import com.lemonappdev.konsist.api.ext.list.withAllAnnotationsOf

2
app/src/test/kotlin/io/element/android/app/KonsistTestTest.kt → tests/konsist/src/test/kotlin/io/element/android/tests/konsist/KonsistTestTest.kt

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
* limitations under the License.
*/
package io.element.android.app
package io.element.android.tests.konsist
import com.lemonappdev.konsist.api.Konsist
import com.lemonappdev.konsist.api.ext.list.modifierprovider.withoutOverrideModifier
Loading…
Cancel
Save