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 junit.framework.TestCase;
29  
30  /**
31   * Tests {@link KeyStoreFactory}.
32   *
33   * @author The Apache MINA Project (dev@mina.apache.org)
34   */
35  public class KeyStoreFactoryTest extends TestCase {
36      public void testCreateInstanceFromResource() throws Exception {
37          // Test using default for now.
38          KeyStoreFactory factory = new KeyStoreFactory();
39          factory.setDataUrl(getClass().getResource("keystore.cert"));
40          factory.setPassword("boguspw");
41  
42          KeyStore ks = factory.newInstance();
43  
44          ks.getCertificate("bogus");
45          ks.getKey("bogus", "boguspw".toCharArray());
46      }
47  
48      public void testCreateInstanceFromFile() throws Exception {
49          // Copy the keystore from the class path to a temporary file.
50          File file = File.createTempFile("keystoretest ", null);
51          file.deleteOnExit();
52          InputStream in = getClass().getResourceAsStream("keystore.cert");
53          OutputStream out = new FileOutputStream(file);
54          int b;
55          while ((b = in.read()) != -1) {
56              out.write(b);
57          }
58          in.close();
59          out.close();
60  
61          // Test using default for now.
62          KeyStoreFactory factory = new KeyStoreFactory();
63          factory.setDataFile(file);
64          factory.setPassword("boguspw");
65  
66          KeyStore ks = factory.newInstance();
67  
68          ks.getCertificate("bogus");
69          ks.getKey("bogus", "boguspw".toCharArray());
70      }
71  
72  }