View Javadoc
1   /*
2   * Licensed to the Apache Software Foundation (ASF) under one
3   * or more contributor license agreements.  See the NOTICE file
4   * distributed with this work for additional information
5   * regarding copyright ownership.  The ASF licenses this file
6   * to you under the Apache License, Version 2.0 (the
7   * "License"); you may not use this file except in compliance
8   * with the License.  You may obtain a copy of the License at
9   *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18  package org.apache.commons.crypto.utils;
19  
20  import static org.junit.jupiter.api.Assertions.assertEquals;
21  import static org.junit.jupiter.api.Assertions.assertTrue;
22  
23  import org.apache.commons.crypto.cipher.CryptoCipher;
24  import org.apache.commons.crypto.cipher.CryptoCipherFactory;
25  import org.apache.commons.crypto.cipher.CryptoCipherFactory.CipherProvider;
26  import org.apache.commons.crypto.random.CryptoRandom;
27  import org.apache.commons.crypto.random.CryptoRandomFactory;
28  import org.apache.commons.crypto.random.CryptoRandomFactory.RandomProvider;
29  import org.junit.jupiter.api.Test;
30  
31  /**
32   * Test the enums used to define the internal implementation classes
33   */
34  public class EnumTest {
35  
36      private void checkImplClass(final CipherProvider value) {
37          final Class<? extends CryptoCipher> implClass = value.getImplClass();
38          assertTrue(CryptoCipher.class.isAssignableFrom(implClass), implClass.toString());
39          assertEquals(value.getClassName(), implClass.getName());
40      }
41  
42      private void checkImplClass(final RandomProvider value) {
43          final Class<? extends CryptoRandom> implClass = value.getImplClass();
44          assertTrue(CryptoRandom.class.isAssignableFrom(implClass), implClass.toString());
45          assertEquals(value.getClassName(), implClass.getName());
46      }
47  
48      @Test
49      public void testCipher() throws Exception {
50          for (final CipherProvider value : CryptoCipherFactory.CipherProvider.values()) {
51              ReflectionUtils.getClassByName(value.getClassName());
52              checkImplClass(value);
53          }
54      }
55  
56      @Test
57      public void testRandom() throws Exception {
58          for (final RandomProvider value : CryptoRandomFactory.RandomProvider.values()) {
59              ReflectionUtils.getClassByName(value.getClassName());
60              checkImplClass(value);
61          }
62      }
63  
64      // TODO check if any implementations of CryptoRandom or CryptoCipher are missing from the values
65  
66  }