Home | History | Annotate | Download | only in cert
      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 /**
     19 * @author Vera Y. Petrashkova
     20 * @version $Revision$
     21 */
     22 
     23 package tests.api.javax.security.cert;
     24 
     25 import dalvik.annotation.TestTargets;
     26 import dalvik.annotation.TestLevel;
     27 import dalvik.annotation.TestTargetNew;
     28 import dalvik.annotation.TestTargetClass;
     29 
     30 import junit.framework.TestCase;
     31 
     32 import javax.security.cert.CertificateException;
     33 
     34 
     35 /**
     36  * Tests for <code>DigestException</code> class constructors and methods.
     37  *
     38  */
     39 @TestTargetClass(CertificateException.class)
     40 public class CertificateExceptionTest extends TestCase {
     41 
     42     static String[] msgs = {
     43             "",
     44             "Check new message",
     45             "Check new message Check new message Check new message Check new message Check new message" };
     46 
     47     static Throwable tCause = new Throwable("Throwable for exception");
     48 
     49     /**
     50      * Test for <code>CertificateException()</code> constructor Assertion:
     51      * constructs CertificateException with no detail message
     52      */
     53     @TestTargetNew(
     54         level = TestLevel.COMPLETE,
     55         notes = "",
     56         method = "CertificateException",
     57         args = {}
     58     )
     59     public void testCertificateException01() {
     60         CertificateException tE = new CertificateException();
     61         assertNull("getMessage() must return null.", tE.getMessage());
     62         assertNull("getCause() must return null", tE.getCause());
     63     }
     64 
     65     /**
     66      * Test for <code>CertificateException(String)</code> constructor
     67      * Assertion: constructs CertificateException with detail message msg.
     68      * Parameter <code>msg</code> is not null.
     69      */
     70     @TestTargetNew(
     71         level = TestLevel.PARTIAL_COMPLETE,
     72         notes = "Verifies constructor with valid parameter.",
     73         method = "CertificateException",
     74         args = {java.lang.String.class}
     75     )
     76     public void testCertificateException02() {
     77         CertificateException tE;
     78         for (int i = 0; i < msgs.length; i++) {
     79             tE = new CertificateException(msgs[i]);
     80             assertEquals("getMessage() must return: ".concat(msgs[i]), tE
     81                     .getMessage(), msgs[i]);
     82             assertNull("getCause() must return null", tE.getCause());
     83         }
     84     }
     85 
     86     /**
     87      * Test for <code>CertificateException(String)</code> constructor
     88      * Assertion: constructs CertificateException when <code>msg</code> is
     89      * null
     90      */
     91     @TestTargetNew(
     92         level = TestLevel.PARTIAL_COMPLETE,
     93         notes = "Verifies null as a parameter.",
     94         method = "CertificateException",
     95         args = {java.lang.String.class}
     96     )
     97     public void testCertificateException03() {
     98         String msg = null;
     99         CertificateException tE = new CertificateException(msg);
    100         assertNull("getMessage() must return null.", tE.getMessage());
    101         assertNull("getCause() must return null", tE.getCause());
    102     }
    103 }
    104