mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-12-25 01:00:55 +01:00
Fix UISIDetector grace period bug
This commit is contained in:
parent
cbc29d0699
commit
d0bff5000c
1
changelog.d/5886.bugfix
Normal file
1
changelog.d/5886.bugfix
Normal file
@ -0,0 +1 @@
|
||||
Fix UISIDetector grace period bug
|
@ -90,22 +90,27 @@ class UISIDetector : LiveEventListener {
|
||||
val roomId = event.roomId
|
||||
if (!enabled || eventId == null || roomId == null) return
|
||||
|
||||
val trackerId: String = trackerId(eventId, roomId)
|
||||
if (trackedEvents.containsKey(trackerId)) {
|
||||
Timber.w("## UISIDetector: Event $eventId is already tracked")
|
||||
val trackedId: String = trackedId(eventId, roomId)
|
||||
if (trackedEvents.containsKey(trackedId)) {
|
||||
Timber.v("## UISIDetector: Event $eventId is already tracked")
|
||||
return
|
||||
}
|
||||
// track it and start timer
|
||||
val timeoutTask = object : TimerTask() {
|
||||
override fun run() {
|
||||
executor.execute {
|
||||
// we should check if it's still tracked (it might have been decrypted)
|
||||
if (!trackedEvents.containsKey(trackedId)) {
|
||||
Timber.v("## UISIDetector: E2E error for $eventId was resolved")
|
||||
return@execute
|
||||
}
|
||||
unTrack(eventId, roomId)
|
||||
Timber.v("## UISIDetector: Timeout on $eventId")
|
||||
triggerUISI(E2EMessageDetected.fromEvent(event, roomId))
|
||||
}
|
||||
}
|
||||
}
|
||||
trackedEvents[trackerId] = timeoutTask
|
||||
trackedEvents[trackedId] = timeoutTask
|
||||
timer.schedule(timeoutTask, timeoutMillis)
|
||||
}
|
||||
|
||||
@ -113,7 +118,7 @@ class UISIDetector : LiveEventListener {
|
||||
|
||||
override fun onPaginatedEvent(roomId: String, event: Event) {}
|
||||
|
||||
private fun trackerId(eventId: String, roomId: String): String = "$roomId-$eventId"
|
||||
private fun trackedId(eventId: String, roomId: String): String = "$roomId-$eventId"
|
||||
|
||||
private fun triggerUISI(source: E2EMessageDetected) {
|
||||
if (!enabled) return
|
||||
@ -122,6 +127,6 @@ class UISIDetector : LiveEventListener {
|
||||
}
|
||||
|
||||
private fun unTrack(eventId: String, roomId: String) {
|
||||
trackedEvents.remove(trackerId(eventId, roomId))?.cancel()
|
||||
trackedEvents.remove(trackedId(eventId, roomId))?.cancel()
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,121 @@
|
||||
/*
|
||||
* 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 im.vector.app.features.crypto
|
||||
|
||||
import im.vector.app.E2EMessageDetected
|
||||
import im.vector.app.UISIDetector
|
||||
import kotlinx.coroutines.CoroutineScope
|
||||
import kotlinx.coroutines.Dispatchers
|
||||
import kotlinx.coroutines.SupervisorJob
|
||||
import kotlinx.coroutines.delay
|
||||
import kotlinx.coroutines.launch
|
||||
import kotlinx.coroutines.runBlocking
|
||||
import org.amshove.kluent.fail
|
||||
import org.junit.Assert
|
||||
import org.junit.Test
|
||||
import org.matrix.android.sdk.api.crypto.MXCRYPTO_ALGORITHM_MEGOLM
|
||||
import org.matrix.android.sdk.api.session.crypto.MXCryptoError
|
||||
import org.matrix.android.sdk.api.session.events.model.Event
|
||||
import org.matrix.android.sdk.api.session.events.model.EventType
|
||||
import org.matrix.android.sdk.api.session.events.model.content.EncryptedEventContent
|
||||
import org.matrix.android.sdk.api.session.events.model.toContent
|
||||
|
||||
class UISIDetectorTest {
|
||||
|
||||
@Test
|
||||
fun `trigger detection after grace period`() {
|
||||
val uisiDetector = UISIDetector()
|
||||
var detectedEvent: E2EMessageDetected? = null
|
||||
|
||||
uisiDetector.callback = object : UISIDetector.UISIDetectorCallback {
|
||||
override val enabled = true
|
||||
override val reciprocateToDeviceEventType = "foo"
|
||||
|
||||
override fun uisiDetected(source: E2EMessageDetected) {
|
||||
detectedEvent = source
|
||||
}
|
||||
|
||||
override fun uisiReciprocateRequest(source: Event) {
|
||||
// nop
|
||||
}
|
||||
}
|
||||
|
||||
// report a decryption error
|
||||
val eventId = "0001"
|
||||
val event = fakeEncryptedEvent(eventId, "s1", "r1")
|
||||
uisiDetector.onEventDecryptionError(event, fakeCryptoError())
|
||||
|
||||
runBlocking {
|
||||
delay(40_000)
|
||||
}
|
||||
Assert.assertEquals(eventId, detectedEvent?.eventId)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `If event decrypted during grace period should not trigger detection`() {
|
||||
val scope = CoroutineScope(SupervisorJob())
|
||||
val uisiDetector = UISIDetector()
|
||||
|
||||
uisiDetector.callback = object : UISIDetector.UISIDetectorCallback {
|
||||
override val enabled = true
|
||||
override val reciprocateToDeviceEventType = "foo"
|
||||
|
||||
override fun uisiDetected(source: E2EMessageDetected) {
|
||||
fail("Shouldn't trigger")
|
||||
}
|
||||
|
||||
override fun uisiReciprocateRequest(source: Event) {
|
||||
// nop
|
||||
}
|
||||
}
|
||||
|
||||
// report a decryption error
|
||||
val event = fakeEncryptedEvent("0001", "s1", "r1")
|
||||
uisiDetector.onEventDecryptionError(event, fakeCryptoError())
|
||||
|
||||
// the grace period is 30s
|
||||
scope.launch(Dispatchers.Default) {
|
||||
delay(10_000)
|
||||
uisiDetector.onEventDecrypted(event, emptyMap())
|
||||
}
|
||||
|
||||
runBlocking {
|
||||
delay(60_000)
|
||||
}
|
||||
}
|
||||
|
||||
private fun fakeEncryptedEvent(eventId: String, sessionId: String, roomId: String): Event {
|
||||
return Event(
|
||||
type = EventType.ENCRYPTED,
|
||||
eventId = eventId,
|
||||
roomId = roomId,
|
||||
content = EncryptedEventContent(
|
||||
algorithm = MXCRYPTO_ALGORITHM_MEGOLM,
|
||||
ciphertext = "AwgBEpACQEKOkd4Gp0+gSXG4M+btcrnPgsF23xs/lUmS2I4YjmqF...",
|
||||
sessionId = sessionId,
|
||||
senderKey = "5e3EIqg3JfooZnLQ2qHIcBarbassQ4qXblai0",
|
||||
deviceId = "FAKEE"
|
||||
).toContent()
|
||||
)
|
||||
}
|
||||
|
||||
private fun fakeCryptoError(error: MXCryptoError.ErrorType = MXCryptoError.ErrorType.UNKNOWN_INBOUND_SESSION_ID) = MXCryptoError.Base(
|
||||
error,
|
||||
"A description",
|
||||
"Human readable"
|
||||
)
|
||||
}
|
Loading…
Reference in New Issue
Block a user