mirror of
https://github.com/bitwarden/android.git
synced 2026-06-02 02:36:58 -05:00
BIT-587 Add ConfigService layer to wrap ConfigApi (#80)
This commit is contained in:
@@ -0,0 +1,65 @@
|
||||
package com.x8bit.bitwarden.data.platform.datasource.network.service
|
||||
|
||||
import com.x8bit.bitwarden.data.platform.base.BaseServiceTest
|
||||
import com.x8bit.bitwarden.data.platform.datasource.network.api.ConfigApi
|
||||
import com.x8bit.bitwarden.data.platform.datasource.network.model.ConfigResponseJson
|
||||
import kotlinx.coroutines.test.runTest
|
||||
import okhttp3.mockwebserver.MockResponse
|
||||
import org.junit.jupiter.api.Assertions.assertEquals
|
||||
import org.junit.jupiter.api.Test
|
||||
import retrofit2.create
|
||||
|
||||
class ConfigServiceTest : BaseServiceTest() {
|
||||
|
||||
private val api: ConfigApi = retrofit.create()
|
||||
private val service = ConfigServiceImpl(api)
|
||||
|
||||
@Test
|
||||
fun `getConfig should call ConfigApi`() = runTest {
|
||||
server.enqueue(MockResponse().setBody(CONFIG_RESPONSE_JSON))
|
||||
assertEquals(Result.success(CONFIG_RESPONSE), service.getConfig())
|
||||
}
|
||||
}
|
||||
|
||||
private const val CONFIG_RESPONSE_JSON = """
|
||||
{
|
||||
"object": "config",
|
||||
"version": "1",
|
||||
"gitHash": "gitHash",
|
||||
"server": {
|
||||
"name": "default",
|
||||
"url": "url"
|
||||
},
|
||||
"environment": {
|
||||
"cloudRegion": "US",
|
||||
"vault": "vaultUrl",
|
||||
"api": "apiUrl",
|
||||
"identity": "identityUrl",
|
||||
"notifications": "notificationsUrl",
|
||||
"sso": "ssoUrl"
|
||||
},
|
||||
"featureStates": {
|
||||
"feature one": false
|
||||
}
|
||||
}
|
||||
"""
|
||||
private val CONFIG_RESPONSE = ConfigResponseJson(
|
||||
type = "config",
|
||||
version = "1",
|
||||
gitHash = "gitHash",
|
||||
server = ConfigResponseJson.ServerJson(
|
||||
name = "default",
|
||||
url = "url",
|
||||
),
|
||||
environment = ConfigResponseJson.EnvironmentJson(
|
||||
cloudRegion = "US",
|
||||
vaultUrl = "vaultUrl",
|
||||
apiUrl = "apiUrl",
|
||||
notificationsUrl = "notificationsUrl",
|
||||
identityUrl = "identityUrl",
|
||||
ssoUrl = "ssoUrl",
|
||||
),
|
||||
featureStates = mapOf(
|
||||
"feature one" to false,
|
||||
),
|
||||
)
|
||||
Reference in New Issue
Block a user