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   * @version $Rev: 611323 $, $Date: 2008-01-11 23:40:46 +0100 (Fri, 11 Jan 2008) $
35   */
36  public class KeyStoreFactoryTest extends TestCase {
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      public void testCreateInstanceFromFile() throws Exception {
50          // Copy the keystore from the class path to a temporary file.
51          File file = File.createTempFile("keystoretest ", null);
52          file.deleteOnExit();
53          InputStream in = getClass().getResourceAsStream("keystore.cert");
54          OutputStream out = new FileOutputStream(file);
55          int b;
56          while ((b = in.read()) != -1) {
57              out.write(b);
58          }
59          in.close();
60          out.close();
61  
62          // Test using default for now.
63          KeyStoreFactory factory = new KeyStoreFactory();
64          factory.setDataFile(file);
65          factory.setPassword("boguspw");
66  
67          KeyStore ks = factory.newInstance();
68  
69          ks.getCertificate("bogus");
70          ks.getKey("bogus", "boguspw".toCharArray());
71      }
72  
73  }