Home | History | Annotate | Download | only in ssl
      1 /*
      2  *  Licensed to the Apache Software Foundation (ASF) under one or more
      3  *  contributor license agreements.  See the NOTICE file distributed with
      4  *  this work for additional information regarding copyright ownership.
      5  *  The ASF licenses this file to You under the Apache License, Version 2.0
      6  *  (the "License"); you may not use this file except in compliance with
      7  *  the License.  You may obtain a copy of the License at
      8  *
      9  *     http://www.apache.org/licenses/LICENSE-2.0
     10  *
     11  *  Unless required by applicable law or agreed to in writing, software
     12  *  distributed under the License is distributed on an "AS IS" BASIS,
     13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     14  *  See the License for the specific language governing permissions and
     15  *  limitations under the License.
     16  */
     17 
     18 package org.apache.harmony.xnet.tests.javax.net.ssl;
     19 
     20 import javax.net.ssl.SSLKeyException;
     21 
     22 import junit.framework.TestCase;
     23 
     24 
     25 /**
     26  * Tests for <code>SSLKeyException</code> class constructors and methods.
     27  *
     28  */
     29 public class SSLKeyExceptionTest extends TestCase {
     30 
     31     public static void main(String[] args) {
     32     }
     33 
     34     /**
     35      * Constructor for SSLKeyExceptionTests.
     36      *
     37      * @param arg0
     38      */
     39     public SSLKeyExceptionTest(String arg0) {
     40         super(arg0);
     41     }
     42 
     43     static String[] msgs = {
     44             "",
     45             "Check new message",
     46             "Check new message Check new message Check new message Check new message Check new message" };
     47 
     48     static Throwable tCause = new Throwable("Throwable for exception");
     49 
     50     /**
     51      * Test for <code>SSLKeyException(String)</code> constructor Assertion:
     52      * constructs SSLKeyException with detail message msg. Parameter
     53      * <code>msg</code> is not null.
     54      */
     55     public void testSSLKeyException01() {
     56         SSLKeyException tE;
     57         for (int i = 0; i < msgs.length; i++) {
     58             tE = new SSLKeyException(msgs[i]);
     59             assertEquals("getMessage() must return: ".concat(msgs[i]), tE
     60                     .getMessage(), msgs[i]);
     61             assertNull("getCause() must return null", tE.getCause());
     62         }
     63     }
     64 
     65     /**
     66      * Test for <code>SSLKeyException(String)</code> constructor Assertion:
     67      * constructs SSLKeyException when <code>msg</code> is null
     68      */
     69     public void testSSLKeyException02() {
     70         String msg = null;
     71         SSLKeyException tE = new SSLKeyException(msg);
     72         assertNull("getMessage() must return null.", tE.getMessage());
     73         assertNull("getCause() must return null", tE.getCause());
     74     }
     75 }
     76