Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Missed call message does not get marked as read if self user called (WPB-10208) #2953

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ internal class PersistMessageUseCaseImpl(
) : PersistMessageUseCase {
override suspend operator fun invoke(message: Message.Standalone): Either<CoreFailure, Unit> {
val modifiedMessage = getExpectsReadConfirmationFromMessage(message)

val isSelfSender = message.isSelfTheSender(selfUserId)
val shouldUpdateConversationReadDate = modifiedMessage.content !is MessageContent.MissedCall && isSelfSender

return messageRepository.persistMessage(
message = modifiedMessage,
updateConversationReadDate = isSelfSender,
updateConversationReadDate = shouldUpdateConversationReadDate,
updateConversationModifiedDate = message.content.shouldUpdateConversationOrder()
).onSuccess {
val isConversationMuted = it == InsertMessageResult.INSERTED_INTO_MUTED_CONVERSATION
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
/*
* Wire
* Copyright (C) 2024 Wire Swiss GmbH
*
* 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 http://www.gnu.org/licenses/.
*/
package com.wire.kalium.logic.data.message

import com.wire.kalium.logic.CoreFailure
import com.wire.kalium.logic.data.conversation.Conversation
import com.wire.kalium.logic.data.notification.NotificationEventsManager
import com.wire.kalium.logic.data.user.UserId
import com.wire.kalium.logic.framework.TestMessage
import com.wire.kalium.logic.framework.TestUser
import com.wire.kalium.logic.functional.Either
import com.wire.kalium.logic.util.shouldFail
import com.wire.kalium.logic.util.shouldSucceed
import com.wire.kalium.persistence.dao.message.InsertMessageResult
import io.mockative.Mock
import io.mockative.any
import io.mockative.coEvery
import io.mockative.coVerify
import io.mockative.eq
import io.mockative.mock
import io.mockative.once
import kotlinx.coroutines.test.runTest
import kotlin.test.Test

class PersistMessageUseCaseTest {

@Test
fun givenMessageRepositoryFailure_whenPersistingMessage_thenReturnFailure() = runTest {
val (arrangement, persistMessage) = Arrangement()
.withPersistMessageFailure()
.withReceiptMode()
.arrange()
val message = TestMessage.TEXT_MESSAGE

val result = persistMessage.invoke(message)

result.shouldFail()

coVerify {
arrangement.messageRepository.persistMessage(any(), any(), any())
}.wasInvoked(once)

coVerify {
arrangement.messageRepository.getReceiptModeFromGroupConversationByQualifiedID(any())
}.wasInvoked(once)
}

@Test
fun givenAMessageAndMessageRepositorySuccess_whenPersistingMessage_thenScheduleRegularNotificationChecking() =
runTest {
val (arrangement, persistMessage) = Arrangement()
.withPersistMessageSuccess()
.withReceiptMode()
.arrange()
val message = TestMessage.TEXT_MESSAGE.copy(
senderUserId = UserId("id", "domain"),
)

val result = persistMessage.invoke(message)

result.shouldSucceed()

coVerify {
arrangement.messageRepository.persistMessage(any(), any(), any())
}.wasInvoked(once)

coVerify {
arrangement.messageRepository.getReceiptModeFromGroupConversationByQualifiedID(any())
}.wasInvoked(once)

coVerify {
arrangement.notificationEventsManager.scheduleRegularNotificationChecking()
}.wasInvoked(once)
}

@Test
fun givenSelfMessageAndMessageRepositorySuccess_whenPersistingMessage_thenDoNotScheduleRegularNotificationChecking() =
runTest {
val (arrangement, persistMessage) = Arrangement()
.withPersistMessageSuccess()
.withReceiptMode()
.arrange()
val message = TestMessage.TEXT_MESSAGE

val result = persistMessage.invoke(message)

result.shouldSucceed()

coVerify {
arrangement.messageRepository.persistMessage(any(), any(), any())
}.wasInvoked(once)

coVerify {
arrangement.messageRepository.getReceiptModeFromGroupConversationByQualifiedID(any())
}.wasInvoked(once)

coVerify {
arrangement.notificationEventsManager.scheduleRegularNotificationChecking()
}.wasNotInvoked()
}

@Test
fun givenMissedCallMessage_whenRunningUseCase_thenCallPersistMessageWithUpdateConversationReadDateIsFalse() =
runTest {
val (arrangement, persistMessage) = Arrangement()
.withPersistMessageSuccess()
.arrange()
val missedCallMessage = TestMessage.MISSED_CALL_MESSAGE

val result = persistMessage.invoke(missedCallMessage)

result.shouldSucceed()
coVerify {
arrangement.messageRepository.persistMessage(any(), eq(false), any())
}.wasInvoked(once)
}

private class Arrangement {
@Mock
val messageRepository = mock(MessageRepository::class)

@Mock
val notificationEventsManager = mock(NotificationEventsManager::class)

fun arrange() = this to PersistMessageUseCaseImpl(
messageRepository = messageRepository,
selfUserId = TestUser.USER_ID,
notificationEventsManager = notificationEventsManager
)

suspend fun withPersistMessageSuccess() = apply {
coEvery {
messageRepository.persistMessage(any(), any(), any())
}.returns(Either.Right(InsertMessageResult.INSERTED_NEED_TO_NOTIFY_USER))
}

suspend fun withPersistMessageFailure() = apply {
coEvery {
messageRepository.persistMessage(any(), any(), any())
}.returns(Either.Left(CoreFailure.InvalidEventSenderID))
}

suspend fun withReceiptMode() = apply {
coEvery {
messageRepository.getReceiptModeFromGroupConversationByQualifiedID(any())
}.returns(Either.Right(Conversation.ReceiptMode.ENABLED))
}
}
}
Loading