feat: Integrate Mokkery and Turbine into KMP testing framework (#4845)

This commit is contained in:
James Rich 2026-03-18 18:33:37 -05:00 committed by GitHub
parent df3a094430
commit dcbbc0823b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
159 changed files with 1860 additions and 2809 deletions

View file

@ -0,0 +1,57 @@
/*
* Copyright (c) 2026 Meshtastic LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package org.meshtastic.core.common
import kotlinx.coroutines.flow.StateFlow
@Suppress("TooManyFunctions")
interface UiPreferences {
val appIntroCompleted: StateFlow<Boolean>
val theme: StateFlow<Int>
val locale: StateFlow<String>
val nodeSort: StateFlow<Int>
val includeUnknown: StateFlow<Boolean>
val excludeInfrastructure: StateFlow<Boolean>
val onlyOnline: StateFlow<Boolean>
val onlyDirect: StateFlow<Boolean>
val showIgnored: StateFlow<Boolean>
val excludeMqtt: StateFlow<Boolean>
fun setLocale(languageTag: String)
fun setAppIntroCompleted(completed: Boolean)
fun setTheme(value: Int)
fun setNodeSort(value: Int)
fun setIncludeUnknown(value: Boolean)
fun setExcludeInfrastructure(value: Boolean)
fun setOnlyOnline(value: Boolean)
fun setOnlyDirect(value: Boolean)
fun setShowIgnored(value: Boolean)
fun setExcludeMqtt(value: Boolean)
fun shouldProvideNodeLocation(nodeNum: Int): StateFlow<Boolean>
fun setShouldProvideNodeLocation(nodeNum: Int, provide: Boolean)
}

View file

@ -0,0 +1,44 @@
/*
* Copyright (c) 2026 Meshtastic LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package org.meshtastic.core.common
import dev.mokkery.answering.returns
import dev.mokkery.every
import dev.mokkery.mock
import dev.mokkery.verify
import io.kotest.matchers.shouldBe
import kotlin.test.Test
interface SimpleInterface {
fun doSomething(input: String): Int
}
class MokkeryIntegrationTest {
@Test
fun testMokkeryAndKotestIntegration() {
val mock = mock<SimpleInterface>()
every { mock.doSomething("hello") } returns 42
val result = mock.doSomething("hello")
result shouldBe 42
verify { mock.doSomething("hello") }
}
}