/** * Copyright (c) Istituto Nazionale di Fisica Nucleare, 2006-2014. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.italiangrid.voms.test.ac; import java.security.InvalidKeyException; import java.security.NoSuchAlgorithmException; import java.security.SignatureException; import java.security.cert.CertificateParsingException; import java.util.List; import org.junit.Assert; import org.italiangrid.voms.VOMSAttribute; import org.italiangrid.voms.ac.VOMSACValidator; import org.italiangrid.voms.test.utils.Fixture; import org.italiangrid.voms.test.utils.Utils; import org.junit.After; import org.junit.Before; import org.junit.Test; import eu.emi.security.authn.x509.impl.PEMCredential; import eu.emi.security.authn.x509.proxy.ProxyCertificate; import eu.emi.security.authn.x509.proxy.ProxyCertificateOptions; import eu.emi.security.authn.x509.proxy.ProxyGenerator; import eu.emi.security.authn.x509.proxy.ProxyType; public class TestNoExtensionValidation implements Fixture { PEMCredential cred; @Before public void setUp() throws Exception { cred = new PEMCredential(holderKey, holderCert, keyPassword.toCharArray()); } @After public void tearDown() throws Exception { cred = null; } @Test public void testNoExtensionValidation() throws InvalidKeyException, CertificateParsingException, SignatureException, NoSuchAlgorithmException { ProxyCertificateOptions options = new ProxyCertificateOptions( cred.getCertificateChain()); options.setType(ProxyType.LEGACY); ProxyCertificate proxy = ProxyGenerator.generate(options, cred.getKey()); VOMSACValidator validator = Utils.getVOMSValidator(); List<VOMSAttribute> attrs = validator.validate(proxy.getCertificateChain()); Assert.assertNotNull(attrs); Assert.assertTrue(attrs.isEmpty()); } }