/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.apache.zookeeper.common; import java.io.File; import java.io.IOException; import java.security.Security; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.Map; import org.apache.commons.io.FileUtils; import org.apache.zookeeper.ZKTestCase; import org.apache.zookeeper.test.ClientBase; import org.bouncycastle.jce.provider.BouncyCastleProvider; import org.junit.AfterClass; import org.junit.BeforeClass; /** * Base class for parameterized unit tests that use X509TestContext for testing * different X509 parameter combinations (CA key type, cert key type, with/without * a password, with/without hostname verification, etc). * * This base class takes care of setting up / cleaning up the test environment, * and caching the X509TestContext objects used by the tests. */ public abstract class BaseX509ParameterizedTestCase extends ZKTestCase { /** * Default parameters suitable for most subclasses. See example usage * in {@link X509UtilTest}. * @return an array of parameter combinations to test with. */ public static Collection defaultParams() { ArrayList result = new ArrayList<>(); int paramIndex = 0; for (X509KeyType caKeyType : X509KeyType.values()) { for (X509KeyType certKeyType : X509KeyType.values()) { for (String keyPassword : new String[]{"", "pa$$w0rd"}) { result.add(new Object[]{caKeyType, certKeyType, keyPassword, paramIndex++}); } } } return result; } /** * Because key generation and writing / deleting files is kind of expensive, we cache the certs and on-disk files * between test cases. None of the test cases modify any of this data so it's safe to reuse between tests. This * caching makes all test cases after the first one for a given parameter combination complete almost instantly. */ protected static Map cachedTestContexts; protected static File tempDir; protected X509TestContext x509TestContext; @BeforeClass public static void setUpBaseClass() throws Exception { Security.addProvider(new BouncyCastleProvider()); cachedTestContexts = new HashMap<>(); tempDir = ClientBase.createEmptyTestDir(); } @AfterClass public static void cleanUpBaseClass() { Security.removeProvider("BC"); cachedTestContexts.clear(); cachedTestContexts = null; try { FileUtils.deleteDirectory(tempDir); } catch (IOException e) { // ignore } } /** * Constructor. See example usage in {@link X509UtilTest}. * * @param paramIndex the index under which the X509TestContext should be cached. * @param contextSupplier a function that creates and returns the X509TestContext * for the current index if one is not already cached. */ protected BaseX509ParameterizedTestCase( Integer paramIndex, java.util.function.Supplier contextSupplier) { if (cachedTestContexts.containsKey(paramIndex)) { x509TestContext = cachedTestContexts.get(paramIndex); } else { x509TestContext = contextSupplier.get(); cachedTestContexts.put(paramIndex, x509TestContext); } } }