proton-mail-android/app/src/androidTest/java/ch/protonmail/android/api/models/room/contacts/FullContactsDetailsMatcher.kt

72 lines
3.0 KiB
Kotlin

/*
* Copyright (c) 2022 Proton AG
*
* This file is part of Proton Mail.
*
* Proton Mail 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.
*
* Proton Mail 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 Proton Mail. If not, see https://www.gnu.org/licenses/.
*/
package ch.protonmail.android.api.models.room.contacts
import ch.protonmail.android.api.models.ContactEncryptedDataMatcher
import ch.protonmail.android.data.local.model.FullContactDetails
import ch.protonmail.android.testAndroidInstrumented.HamcrestMismatchBuilder
import ch.protonmail.android.testAndroidInstrumented.build
import org.hamcrest.Description
import org.hamcrest.Matchers.`is`
import org.hamcrest.Matchers.contains
import org.hamcrest.Matchers.equalTo
import org.hamcrest.Matchers.nullValue
import org.hamcrest.TypeSafeDiagnosingMatcher
class FullContactsDetailsMatcher(fullContactDetails: FullContactDetails) :
TypeSafeDiagnosingMatcher<FullContactDetails>() {
private val contactId = `is`(equalTo(fullContactDetails.contactId))
private val name = `is`(equalTo(fullContactDetails.name))
private val uid = `is`(equalTo(fullContactDetails.uid))
private val createTime = `is`(equalTo(fullContactDetails.createTime))
private val modifyTime = `is`(equalTo(fullContactDetails.modifyTime))
private val size = `is`(equalTo(fullContactDetails.size))
private val emails = `is`(equalTo(fullContactDetails.emails))
private val encryptedData = fullContactDetails.encryptedData?.let { encryptedData ->
contains(encryptedData.map { `is`(ContactEncryptedDataMatcher(it)) })
} ?: `is`(nullValue())
override fun describeTo(description: Description) {
description.build(
"contactId" to contactId,
"name" to name,
"uid" to uid,
"createTime" to createTime,
"modifyTime" to modifyTime,
"size" to size,
"emails" to emails,
"encryptedData" to encryptedData
)
}
override fun matchesSafely(item: FullContactDetails, mismatchDescription: Description): Boolean {
return HamcrestMismatchBuilder(mismatchDescription)
.match("contactId", contactId, item.contactId)
.match("name", name, item.name)
.match("uid", uid, item.uid)
.match("createTime", createTime, item.createTime)
.match("modifyTime", modifyTime, item.modifyTime)
.match("size", size, item.size)
.match("emails", emails, item.emails)
.match("encryptedData", encryptedData, item.encryptedData)
.build()
}
}