/* * Copyright 2020 Paul Schaub. * * 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 org.pgpainless.key.selection.keyring; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; import java.io.IOException; import org.bouncycastle.openpgp.PGPException; import org.bouncycastle.openpgp.PGPPublicKey; import org.bouncycastle.openpgp.PGPSecretKey; import org.junit.jupiter.api.Test; import org.pgpainless.key.TestKeys; import org.pgpainless.key.selection.keyring.impl.Email; public class EmailKeyRingSelectionStrategyTest { Email.PubRingSelectionStrategy pubKeySelectionStrategy = new Email.PubRingSelectionStrategy(); Email.SecRingSelectionStrategy secKeySelectionStrategy = new Email.SecRingSelectionStrategy(); @Test public void testMatchingEmailUIDAcceptedOnPubKey() throws IOException { String uid = ""; PGPPublicKey key = TestKeys.getEmilPublicKeyRing().getPublicKey(); assertTrue(pubKeySelectionStrategy.accept(uid, key)); } @Test public void testAddressIsFormattedToMatchOnPubKey() throws IOException { String uid = "emil@email.user"; PGPPublicKey key = TestKeys.getEmilPublicKeyRing().getPublicKey(); assertTrue(pubKeySelectionStrategy.accept(uid, key)); } @Test public void testPubKeyWithDifferentUIDIsRejected() throws IOException { String wrongUid = "emilia@email.user"; PGPPublicKey key = TestKeys.getEmilPublicKeyRing().getPublicKey(); assertFalse(pubKeySelectionStrategy.accept(wrongUid, key)); } @Test public void testMatchingEmailUIDAcceptedOnSecKey() throws IOException, PGPException { String uid = ""; PGPSecretKey key = TestKeys.getEmilSecretKeyRing().getSecretKey(); assertTrue(secKeySelectionStrategy.accept(uid, key)); } @Test public void testAddressIsFormattedToMatchOnSecKey() throws IOException, PGPException { String uid = "emil@email.user"; PGPSecretKey key = TestKeys.getEmilSecretKeyRing().getSecretKey(); assertTrue(secKeySelectionStrategy.accept(uid, key)); } @Test public void testSecKeyWithDifferentUIDIsRejected() throws IOException, PGPException { String wrongUid = "emilia@email.user"; PGPSecretKey key = TestKeys.getEmilSecretKeyRing().getSecretKey(); assertFalse(secKeySelectionStrategy.accept(wrongUid, key)); } }