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.security.cert.CertPath;
     22 import java.security.cert.CertPathParameters;
     23 import java.security.cert.CertPathValidator;
     24 import java.security.cert.CertPathValidatorResult;
     25 import junit.framework.TestCase;
     26 
     27 public abstract class CertPathValidatorTest extends TestCase {
     28 
     29     private final String algorithmName;
     30 
     31 
     32     public CertPathValidatorTest(String algorithmName) {
     33         this.algorithmName = algorithmName;
     34     }
     35 
     36     public abstract CertPathParameters getParams();
     37     public abstract CertPath getCertPath();
     38     public abstract void validateResult(CertPathValidatorResult validatorResult);
     39 
     40     @TestTargets({
     41         @TestTargetNew(
     42                 level=TestLevel.ADDITIONAL,
     43                 method="getInstance",
     44                 args={String.class}
     45         ),
     46         @TestTargetNew(
     47                 level=TestLevel.ADDITIONAL,
     48                 method="validate",
     49                 args={CertPath.class, CertPathParameters.class}
     50         ),
     51         @TestTargetNew(
     52                 level=TestLevel.COMPLETE,
     53                 method="method",
     54                 args={}
     55         )
     56     })
     57     public void testCertPathValidator() throws Exception {
     58         CertPathValidator certPathValidator = CertPathValidator.getInstance(
     59                 algorithmName);
     60 
     61         CertPathValidatorResult validatorResult = certPathValidator.validate(
     62                 getCertPath(), getParams());
     63 
     64         validateResult(validatorResult);
     65     }
     66 
     67 
     68 }
     69