1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 */
18 package org.apache.commons.crypto;
19
20 import static org.junit.jupiter.api.Assertions.assertNotNull;
21 import static org.junit.jupiter.api.Assertions.assertTrue;
22
23 import org.junit.jupiter.api.Test;
24
25 public class CryptoTest {
26
27 /**
28 * This test may fail unless the code was built by Maven, as it relies on the VERSION file being set up correctly
29 */
30 @Test
31 public void testGetComponentName() {
32 final String version = Crypto.getComponentName();
33 assertNotNull("Should not be null", version);
34 assertTrue(version.matches("^Apache Commons Crypto.*"), version);
35 }
36
37 /**
38 * This test may fail unless the code was built by Maven, as it relies on the VERSION file being set up correctly.
39 */
40 @Test
41 public void testGetComponentVersion() {
42 final String version = Crypto.getComponentVersion();
43 assertNotNull("Should not be null", version);
44 assertTrue(version.matches("^\\d+\\.\\d+.*"), version);
45 }
46
47 @Test
48 public void testLoadingError() throws Throwable {
49 final Throwable loadingError = Crypto.getLoadingError();
50 if (loadingError != null) {
51 throw loadingError;
52 }
53 assertTrue(true, "Completed OK");
54 }
55
56 @Test
57 public void testMain() throws Throwable {
58 // Check that Crypt.main will actually run tests
59 assertTrue(Crypto.isNativeCodeLoaded(), "Native code loaded OK");
60 Crypto.main(new String[] { "-q" }); // output causes issues for testing
61 assertTrue(Crypto.isNativeCodeLoaded(), "Completed OK");
62 }
63
64 }