WIP - unit tests

This commit is contained in:
Maxime NATUREL 2022-05-23 10:04:41 +02:00
parent 7ef91ce717
commit c07bc0890f
2 changed files with 76 additions and 1 deletions

View file

@ -22,7 +22,6 @@ import org.matrix.android.sdk.api.session.room.model.message.MessageBeaconLocati
import org.matrix.android.sdk.internal.database.model.livelocation.LiveLocationShareAggregatedSummaryEntity
import javax.inject.Inject
// TODO add unit tests
internal class LiveLocationShareAggregatedSummaryMapper @Inject constructor() {
fun map(entity: LiveLocationShareAggregatedSummaryEntity): LiveLocationShareAggregatedSummary {

View file

@ -0,0 +1,76 @@
/*
* Copyright (c) 2022 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 org.matrix.android.sdk.internal.database.mapper
import io.mockk.every
import io.mockk.mockk
import io.mockk.mockkStatic
import io.mockk.unmockkStatic
import org.amshove.kluent.internal.assertEquals
import org.junit.After
import org.junit.Before
import org.junit.Test
import org.matrix.android.sdk.api.session.events.model.Content
import org.matrix.android.sdk.api.session.events.model.toModel
import org.matrix.android.sdk.api.session.room.model.livelocation.LiveLocationShareAggregatedSummary
import org.matrix.android.sdk.api.session.room.model.message.MessageBeaconLocationDataContent
import org.matrix.android.sdk.internal.database.model.livelocation.LiveLocationShareAggregatedSummaryEntity
class LiveLocationShareAggregatedSummaryMapperTest {
private val mapper = LiveLocationShareAggregatedSummaryMapper()
@Before
fun setUp() {
mockkStatic("org.matrix.android.sdk.internal.database.mapper.ContentMapperKt")
mockkStatic("org.matrix.android.sdk.api.session.events.model.EventKt")
}
@After
fun tearDown() {
unmockkStatic("org.matrix.android.sdk.internal.database.mapper.ContentMapperKt")
unmockkStatic("org.matrix.android.sdk.api.session.events.model.EventKt")
}
@Test
fun `given an entity then result should be mapped correctly`() {
val userId = "userId"
val timeout = 123L
val isActive = true
val lastKnownLocationContent = "lastKnownLocationContent"
val messageBeaconLocationDataContent = MessageBeaconLocationDataContent()
val entity = LiveLocationShareAggregatedSummaryEntity(
userId = userId,
isActive = isActive,
endOfLiveTimestampMillis = timeout,
lastLocationContent = lastKnownLocationContent
)
val content = mockk<Content>()
every { ContentMapper.map(lastKnownLocationContent) } returns content
every { content.toModel<MessageBeaconLocationDataContent>() } returns messageBeaconLocationDataContent
val summary = mapper.map(entity)
val expectedSummary = LiveLocationShareAggregatedSummary(
userId = userId,
isActive = isActive,
endOfLiveTimestampMillis = timeout,
lastLocationDataContent = messageBeaconLocationDataContent
)
assertEquals(expectedSummary, summary)
}
}