Fix potential crash when searching contacts in forward sheet.

fork-5.53.8
Alex Hart 2022-09-23 14:32:39 -03:00 zatwierdzone przez Cody Henthorne
rodzic 8d7393e4b5
commit bdbdcccaff
7 zmienionych plików z 139 dodań i 22 usunięć

Wyświetl plik

@ -1,5 +1,6 @@
package org.thoughtcrime.securesms.contacts.paged
import androidx.annotation.VisibleForTesting
import org.thoughtcrime.securesms.contacts.HeaderAction
import org.thoughtcrime.securesms.database.model.DistributionListPrivacyMode
import org.thoughtcrime.securesms.recipients.Recipient
@ -36,4 +37,10 @@ sealed class ContactSearchData(val contactSearchKey: ContactSearchKey) {
* A row which the user can click to view all entries for a given section.
*/
class Expand(val sectionKey: ContactSearchConfiguration.SectionKey) : ContactSearchData(ContactSearchKey.Expand(sectionKey))
/**
* A row which contains an integer, for testing.
*/
@VisibleForTesting
class TestRow(val value: Int) : ContactSearchData(ContactSearchKey.Expand(ContactSearchConfiguration.SectionKey.RECENTS))
}

Wyświetl plik

@ -76,6 +76,7 @@ object ContactSearchItems {
is ContactSearchData.KnownRecipient -> RecipientModel(it, selection.contains(it.contactSearchKey))
is ContactSearchData.Expand -> ExpandModel(it)
is ContactSearchData.Header -> HeaderModel(it)
is ContactSearchData.TestRow -> error("This row exists for testing only.")
}
}
)

Wyświetl plik

@ -243,7 +243,7 @@ class ContactSearchPagedDataSource(
): ContactSearchCollection<R> {
return when (section) {
is ContactSearchConfiguration.Section.Stories -> StoriesSearchCollection(section, records, extraData, recordMapper, activeStoryCount, StoryComparator(latestStorySends))
else -> ContactSearchCollection(section, records, recordsPredicate, extraData, recordMapper, 0)
else -> ContactSearchCollection(section, records, recordsPredicate, recordMapper, 0)
}
}

Wyświetl plik

@ -12,23 +12,20 @@ open class ContactSearchCollection<ContactRecord>(
private val section: ContactSearchConfiguration.Section,
private val records: ContactSearchIterator<ContactRecord>,
private val recordPredicate: ((ContactRecord) -> Boolean)? = null,
private val extraData: List<ContactSearchData>,
private val recordMapper: (ContactRecord) -> ContactSearchData,
private val activeContactCount: Int
) {
private val recordsCount: Int = if (recordPredicate != null) {
private val contentSize: Int = if (recordPredicate != null) {
records.asSequence().filter(recordPredicate).count()
} else {
records.getCount()
}
private val contentSize: Int
private val aggregateData: SparseArrayCompat<ContactSearchData> = SparseArrayCompat()
init {
records.moveToPosition(-1)
contentSize = recordsCount + extraData.count()
}
fun getSize(): Int {
@ -57,7 +54,11 @@ open class ContactSearchCollection<ContactRecord>(
null to 0
}
fillDataWindow(start, end - start)
val windowOffset = start + startOffset - if (section.includeHeader) 1 else 0
val windowLimit = end - windowOffset - if (section.includeHeader) 1 else 0
fillDataWindow(windowOffset, windowLimit)
for (i in (start + startOffset) until (end - endOffset)) {
val correctedIndex = if (section.includeHeader) i - 1 else i
results.add(getItemAtCorrectedIndex(correctedIndex))
@ -95,20 +96,9 @@ open class ContactSearchCollection<ContactRecord>(
key++
}
if (isAggregateDataFilled(offset, limit)) {
return
if (!isAggregateDataFilled(offset, limit)) {
error("Data integrity failure: ${section.sectionKey} requesting $offset , $limit")
}
extraData.forEach {
aggregateData.put(key, it)
key++
}
if (isAggregateDataFilled(offset, limit)) {
return
}
throw IllegalStateException("Could not fill aggregate data for bounds $offset $limit")
}
private fun isAggregateDataFilled(startOffset: Int, limit: Int): Boolean {

Wyświetl plik

@ -13,7 +13,7 @@ class StoriesSearchCollection<ContactRecord>(
recordMapper: (ContactRecord) -> ContactSearchData,
activeContactCount: Int,
private val storyComparator: Comparator<ContactSearchData.Story>
) : ContactSearchCollection<ContactRecord>(section, records, null, extraData, recordMapper, activeContactCount) {
) : ContactSearchCollection<ContactRecord>(section, records, null, recordMapper, activeContactCount) {
private val aggregateStoryData: List<ContactSearchData.Story> by lazy {
if (section !is ContactSearchConfiguration.Section.Stories) {
error("Aggregate data creation is only necessary for stories.")

Wyświetl plik

@ -38,7 +38,6 @@ import org.thoughtcrime.securesms.jobs.RequestGroupV2InfoJob;
import org.thoughtcrime.securesms.keyvalue.SignalStore;
import org.thoughtcrime.securesms.recipients.Recipient;
import org.thoughtcrime.securesms.recipients.RecipientId;
import org.thoughtcrime.securesms.storage.StorageSyncHelper;
import org.thoughtcrime.securesms.util.Util;
import org.whispersystems.signalservice.api.groupsv2.DecryptedGroupUtil;
import org.whispersystems.signalservice.api.groupsv2.GroupChangeReconstruct;
@ -47,7 +46,6 @@ import org.whispersystems.signalservice.api.push.ACI;
import org.whispersystems.signalservice.api.push.DistributionId;
import org.whispersystems.signalservice.api.push.ServiceId;
import org.whispersystems.signalservice.api.util.UuidUtil;
import org.whispersystems.signalservice.internal.push.exceptions.GroupNotFoundException;
import java.io.Closeable;
import java.security.SecureRandom;

Wyświetl plik

@ -0,0 +1,121 @@
package org.thoughtcrime.securesms.contacts.paged.collections
import org.junit.Assert.assertEquals
import org.junit.Test
import org.thoughtcrime.securesms.contacts.paged.ContactSearchConfiguration
import org.thoughtcrime.securesms.contacts.paged.ContactSearchData
class ContactSearchCollectionTest {
@Test
fun `When I get size, then I expect size of filtered content`() {
// GIVEN
val testSubject = createTestSubject()
// WHEN
val size = testSubject.getSize()
// THEN
assertEquals(5, size)
}
@Test
fun `When I get size with header, then I expect size of filtered content plus header`() {
// GIVEN
val testSubject = createTestSubject(includeHeader = true)
// WHEN
val size = testSubject.getSize()
// THEN
assertEquals(6, size)
}
@Test
fun `When I getSublist without 5, then I expect the corresponding values without 5`() {
// GIVEN
val testSubject = createTestSubject(
recordPredicate = { it != 5 }
)
// WHEN
val result = testSubject.getSublist(0, 9)
// THEN
assertEquals(listOf(0, 1, 2, 3, 4, 6, 7, 8, 9), result.filterIsInstance(ContactSearchData.TestRow::class.java).map { it.value })
}
@Test
fun `Given I got first page when I getSublist without 5, then I expect the corresponding values without 5`() {
// GIVEN
val testSubject = createTestSubject(
recordPredicate = { it != 5 }
)
testSubject.getSublist(0, 5)
// WHEN
val result = testSubject.getSublist(5, 9)
// THEN
assertEquals(listOf(6, 7, 8, 9), result.filterIsInstance(ContactSearchData.TestRow::class.java).map { it.value })
}
@Test
fun `Given I get second page with header, then I expect the corresponding values without 5`() {
// GIVEN
val testSubject = createTestSubject(
recordPredicate = { it != 5 },
includeHeader = true
)
// WHEN
val result = testSubject.getSublist(2, testSubject.getSize())
// THEN
assertEquals(listOf(1, 2, 3, 4, 6, 7, 8, 9), result.filterIsInstance(ContactSearchData.TestRow::class.java).map { it.value })
}
@Test
fun `Given I get entire page with header, then I expect the corresponding values without 5`() {
// GIVEN
val testSubject = createTestSubject(
recordPredicate = { it != 5 },
includeHeader = true
)
// WHEN
val result = testSubject.getSublist(0, testSubject.getSize())
// THEN
assertEquals(listOf(0, 1, 2, 3, 4, 6, 7, 8, 9), result.filterIsInstance(ContactSearchData.TestRow::class.java).map { it.value })
}
private fun createTestSubject(
size: Int = 10,
includeHeader: Boolean = false,
section: ContactSearchConfiguration.Section = ContactSearchConfiguration.Section.Groups(includeHeader = includeHeader),
records: ContactSearchIterator<Int> = FakeContactSearchIterator((0 until size).toList()),
recordPredicate: (Int) -> Boolean = { i -> i % 2 == 0 },
recordMapper: (Int) -> ContactSearchData = { i -> ContactSearchData.TestRow(i) },
activeContactCount: Int = 0
): ContactSearchCollection<Int> {
return ContactSearchCollection(section, records, recordPredicate, recordMapper, activeContactCount)
}
private class FakeContactSearchIterator(private val numbers: List<Int>) : ContactSearchIterator<Int> {
private var position = -1
override fun hasNext(): Boolean = position < numbers.lastIndex
override fun next(): Int = numbers[++position]
override fun moveToPosition(n: Int) {
position = n
}
override fun getCount(): Int = numbers.size
override fun close() = Unit
}
}