From a8b58559dccc1cb5be5d22f519efe382417e7fb2 Mon Sep 17 00:00:00 2001 From: Adam Wudzinski Date: Fri, 24 Apr 2020 15:09:37 +0200 Subject: Fix wrong ExitStatus for TLS Exception Issue-ID: AAF-1132 Signed-off-by: Adam Wudzinski Change-Id: I4c7039416277a8cf9eb31e149a91c44e06367308 --- .../exception/TlsConfigurationException.java | 2 +- .../exception/TlsConfigurationExceptionTest.java | 47 ++++++++++++++++++++++ 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 certServiceClient/src/test/java/org/onap/aaf/certservice/client/configuration/exception/TlsConfigurationExceptionTest.java (limited to 'certServiceClient') diff --git a/certServiceClient/src/main/java/org/onap/aaf/certservice/client/configuration/exception/TlsConfigurationException.java b/certServiceClient/src/main/java/org/onap/aaf/certservice/client/configuration/exception/TlsConfigurationException.java index a10185b2..91f164e3 100644 --- a/certServiceClient/src/main/java/org/onap/aaf/certservice/client/configuration/exception/TlsConfigurationException.java +++ b/certServiceClient/src/main/java/org/onap/aaf/certservice/client/configuration/exception/TlsConfigurationException.java @@ -24,7 +24,7 @@ import org.onap.aaf.certservice.client.api.ExitStatus; import org.onap.aaf.certservice.client.api.ExitableException; public class TlsConfigurationException extends ExitableException { - private static final ExitStatus EXIT_STATUS = ExitStatus.CERT_SERVICE_API_CONNECTION_EXCEPTION; + private static final ExitStatus EXIT_STATUS = ExitStatus.TLS_CONFIGURATION_EXCEPTION; public TlsConfigurationException(String message) { super(message); diff --git a/certServiceClient/src/test/java/org/onap/aaf/certservice/client/configuration/exception/TlsConfigurationExceptionTest.java b/certServiceClient/src/test/java/org/onap/aaf/certservice/client/configuration/exception/TlsConfigurationExceptionTest.java new file mode 100644 index 00000000..e1144a6b --- /dev/null +++ b/certServiceClient/src/test/java/org/onap/aaf/certservice/client/configuration/exception/TlsConfigurationExceptionTest.java @@ -0,0 +1,47 @@ +/* + * ============LICENSE_START======================================================= + * aaf-certservice-client + * ================================================================================ + * Copyright (C) 2020 Nokia. All rights reserved. + * ================================================================================ + * 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. + * ============LICENSE_END========================================================= + */ + +package org.onap.aaf.certservice.client.configuration.exception; + +import org.junit.jupiter.api.Test; +import org.onap.aaf.certservice.client.api.ExitStatus; + +import static org.assertj.core.api.Assertions.assertThat; + + +public class TlsConfigurationExceptionTest { + + @Test + public void containsProperExitStatus() { + // Given + ExitStatus exitStatus = null; + + // When + try { + throw new TlsConfigurationException("Test message"); + } catch (TlsConfigurationException e) { + exitStatus = e.applicationExitStatus(); + } + + // Then + assertThat(exitStatus).isNotNull(); + assertThat(exitStatus).isEqualTo(ExitStatus.TLS_CONFIGURATION_EXCEPTION); + } +} -- cgit 1.2.3-korg