1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 *
19 */
20 package org.apache.mina.filter.ssl;
21
22 import java.io.File;
23 import java.io.FileOutputStream;
24 import java.io.InputStream;
25 import java.io.OutputStream;
26 import java.security.KeyStore;
27
28 import org.junit.Test;
29
30 /**
31 * Tests {@link KeyStoreFactory}.
32 *
33 * @author <a href="http://mina.apache.org">Apache MINA Project</a>
34 */
35 public class KeyStoreFactoryTest {
36 @Test
37 public void testCreateInstanceFromResource() throws Exception {
38 // Test using default for now.
39 KeyStoreFactory factory = new KeyStoreFactory();
40 factory.setDataUrl(getClass().getResource("keystore.cert"));
41 factory.setPassword("boguspw");
42
43 KeyStore ks = factory.newInstance();
44
45 ks.getCertificate("bogus");
46 ks.getKey("bogus", "boguspw".toCharArray());
47 }
48
49 @Test
50 public void testCreateInstanceFromFile() throws Exception {
51 // Copy the keystore from the class path to a temporary file.
52 File file = File.createTempFile("keystoretest ", null);
53 file.deleteOnExit();
54 InputStream in = getClass().getResourceAsStream("keystore.cert");
55 OutputStream out = new FileOutputStream(file);
56 int b;
57
58 while ((b = in.read()) != -1) {
59 out.write(b);
60 }
61
62 in.close();
63 out.close();
64
65 // Test using default for now.
66 KeyStoreFactory factory = new KeyStoreFactory();
67 factory.setDataFile(file);
68 factory.setPassword("boguspw");
69
70 KeyStore ks = factory.newInstance();
71
72 ks.getCertificate("bogus");
73 ks.getKey("bogus", "boguspw".toCharArray());
74 }
75 }