Home | History | Annotate | Download | only in security
      1 /*
      2  * Copyright (C) 2009 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *     http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 package tests.security;
     17 
     18 import dalvik.annotation.TestLevel;
     19 import dalvik.annotation.TestTargetNew;
     20 import dalvik.annotation.TestTargets;
     21 import java.io.ByteArrayInputStream;
     22 import java.io.InputStream;
     23 import java.security.cert.Certificate;
     24 import java.security.cert.CertificateFactory;
     25 import junit.framework.TestCase;
     26 
     27 public abstract class CertificateFactoryTest extends TestCase {
     28 
     29     private final String algorithmName;
     30     private final byte[] certificateData;
     31 
     32 
     33     public CertificateFactoryTest(String algorithmName, byte[] certificateData) {
     34         this.algorithmName = algorithmName;
     35         this.certificateData = certificateData;
     36     }
     37 
     38     protected void setUp() throws Exception {
     39         super.setUp();
     40     }
     41 
     42     @TestTargets({
     43         @TestTargetNew(
     44                 level=TestLevel.ADDITIONAL,
     45                 method="getInstance",
     46                 args={String.class}
     47         ),
     48         @TestTargetNew(
     49                 level=TestLevel.ADDITIONAL,
     50                 method="generateCertificate",
     51                 args={InputStream.class}
     52         ),
     53         @TestTargetNew(
     54                 level=TestLevel.COMPLETE,
     55                 method="method",
     56                 args={}
     57         )
     58     })
     59     public void testCertificateFactory() throws Exception {
     60         CertificateFactory certificateFactory = CertificateFactory.getInstance(
     61                 algorithmName);
     62 
     63         Certificate certificate = certificateFactory.generateCertificate(
     64                 new ByteArrayInputStream(certificateData));
     65         assertNotNull(certificate);
     66     }
     67 }
     68