1 package org.apache.commons.openpgp;
2
3 /*
4 * Licensed to the Apache Software Foundation (ASF) under one or more
5 * contributor license agreements. See the NOTICE file distributed with
6 * this work for additional information regarding copyright ownership.
7 * The ASF licenses this file to You under the Apache License, Version 2.0
8 * (the "License"); you may not use this file except in compliance with
9 * the License. You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19
20 import static org.junit.Assert.assertNotNull;
21
22 import java.io.IOException;
23
24 import org.junit.Before;
25 import org.junit.Test;
26
27 /**
28 * Test the open pgp key ring.
29 *
30 * @author <a href="mailto:brett@apache.org">Brett Porter</a>
31 */
32 public class BouncyCastleKeyRingTest
33 {
34 private String[] pubKeyId = { "A7D16BD4", "84C9113", "E6C2AB68" };
35
36 private String[] secKeyId = { "A7D16BD4", "E6C2AB68" };
37
38 private KeyRing keyRing;
39
40 private static final String PASSWORD = "cop";
41
42 @Before
43 public void setUp() throws Exception
44 {
45 keyRing =
46 new BouncyCastleKeyRing( getClass().getResourceAsStream( "/secring.gpg" ),
47 getClass().getResourceAsStream( "/pubring.gpg" ), PASSWORD.toCharArray() );
48 }
49
50 @Test
51 public void testPublicKeys() throws OpenPgpException, IOException
52 {
53 for (String keyId : pubKeyId)
54 {
55 assertNotNull("Unable to find key " + keyId, keyRing.getPublicKey(keyId));
56 }
57 }
58
59 @Test
60 public void testSecretKeys() throws OpenPgpException, IOException
61 {
62 for (String keyId : secKeyId)
63 {
64 assertNotNull("Unable to find key " + keyId, keyRing.getSecretKey(keyId));
65 }
66 }
67 }