mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-05 03:55:58 +01:00
Add test for SelfSignatureSubpacketsCallback methods
This commit is contained in:
parent
f8b53f0eda
commit
6c02b9ad44
2 changed files with 78 additions and 3 deletions
|
@ -171,9 +171,8 @@ interface SelfSignatureSubpackets : BaseSignatureSubpackets {
|
|||
|
||||
fun setFeatures(features: Features?): SelfSignatureSubpackets
|
||||
|
||||
fun getFeatures(): List<Feature> = getFeaturesPacket()
|
||||
?.let { Feature.fromBitmask(it.features.toInt()) }
|
||||
.orEmpty()
|
||||
fun getFeatures(): List<Feature> =
|
||||
getFeaturesPacket()?.let { Feature.fromBitmask(it.features.toInt()) }.orEmpty()
|
||||
|
||||
fun getFeaturesPacket(): Features?
|
||||
|
||||
|
|
|
@ -0,0 +1,76 @@
|
|||
// SPDX-FileCopyrightText: 2024 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
//
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
package org.pgpainless.signature.subpackets
|
||||
|
||||
import java.util.*
|
||||
import openpgp.toSecondsPrecision
|
||||
import org.junit.jupiter.api.Assertions.assertEquals
|
||||
import org.junit.jupiter.api.Assertions.assertNull
|
||||
import org.junit.jupiter.api.Assertions.assertTrue
|
||||
import org.junit.jupiter.api.Test
|
||||
import org.pgpainless.algorithm.Feature
|
||||
import org.pgpainless.algorithm.KeyFlag
|
||||
|
||||
class SelfSignatureSubpacketCallbackTest {
|
||||
|
||||
@Test
|
||||
fun testSetHashedSignatureCreationTimeViaCallback() {
|
||||
val subpackets: SelfSignatureSubpackets = SignatureSubpackets.createEmptySubpackets()
|
||||
val date = Date().toSecondsPrecision()
|
||||
val callback = SelfSignatureSubpackets.applyHashed { setSignatureCreationTime(date) }
|
||||
|
||||
callback.modifyHashedSubpackets(subpackets)
|
||||
|
||||
assertEquals(subpackets.getSignatureCreationTime(), date)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun testSetUnhashedSignatureCreationTimeViaCallback() {
|
||||
val subpackets: SelfSignatureSubpackets = SignatureSubpackets.createEmptySubpackets()
|
||||
val date = Date().toSecondsPrecision()
|
||||
val callback = SelfSignatureSubpackets.applyUnhashed { setSignatureCreationTime(date) }
|
||||
|
||||
callback.modifyUnhashedSubpackets(subpackets)
|
||||
|
||||
assertEquals(subpackets.getSignatureCreationTime(), date)
|
||||
}
|
||||
|
||||
@Test
|
||||
fun `test that mismatching applyHashed() with modifyUnhashedSubpackets() will not modify the subpackets`() {
|
||||
val subpackets: SelfSignatureSubpackets = SignatureSubpackets.createEmptySubpackets()
|
||||
val callback =
|
||||
SelfSignatureSubpackets.applyHashed {
|
||||
setKeyFlags(KeyFlag.CERTIFY_OTHER)
|
||||
setFeatures(Feature.MODIFICATION_DETECTION)
|
||||
}
|
||||
|
||||
callback.modifyUnhashedSubpackets(subpackets)
|
||||
|
||||
assertNull(subpackets.getKeyFlagsPacket())
|
||||
assertNull(subpackets.getFeaturesPacket())
|
||||
}
|
||||
|
||||
@Test
|
||||
fun testThen() {
|
||||
val subpackets: SelfSignatureSubpackets = SignatureSubpackets.createEmptySubpackets()
|
||||
val firstCallback =
|
||||
SelfSignatureSubpackets.applyHashed {
|
||||
addNotationData(false, "test@pgpainless.org", "foo-bar")
|
||||
setFeatures(Feature.MODIFICATION_DETECTION)
|
||||
}
|
||||
val secondCallback =
|
||||
SelfSignatureSubpackets.applyHashed {
|
||||
clearNotationData()
|
||||
setKeyFlags(KeyFlag.CERTIFY_OTHER)
|
||||
}
|
||||
|
||||
// removes the notation, but preserves the features and adds key-flags
|
||||
firstCallback.then(secondCallback).modifyHashedSubpackets(subpackets)
|
||||
|
||||
assertTrue(subpackets.getNotationDataPackets().isEmpty())
|
||||
assertEquals(listOf(Feature.MODIFICATION_DETECTION), subpackets.getFeatures())
|
||||
assertEquals(listOf(KeyFlag.CERTIFY_OTHER), subpackets.getKeyFlags())
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue