From a8b58559dccc1cb5be5d22f519efe382417e7fb2 Mon Sep 17 00:00:00 2001 From: Adam Wudzinski Date: Fri, 24 Apr 2020 15:09:37 +0200 Subject: [PATCH] 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 ++++++++++++++++++++++ docs/sections/release-notes.rst | 43 +++++++++++++++++++- 3 files changed, 90 insertions(+), 2 deletions(-) create mode 100644 certServiceClient/src/test/java/org/onap/aaf/certservice/client/configuration/exception/TlsConfigurationExceptionTest.java 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); + } +} diff --git a/docs/sections/release-notes.rst b/docs/sections/release-notes.rst index 599225a9..fbbf22fc 100644 --- a/docs/sections/release-notes.rst +++ b/docs/sections/release-notes.rst @@ -6,6 +6,47 @@ Release Notes ============= +Version: 1.0.1 +-------------- + +:Release Date: 2020-04-24 + +**New Features** + +The Frankfurt Release is the first release of the Certification Service. + +**Bug Fixes** + + - https://jira.onap.org/browse/AAF-1132 + +**Known Issues** + + N/A + +**Security Notes** + + N/A + +*Fixed Security Issues* + + N/A + +*Known Security Issues* + + N/A + +*Known Vulnerabilities in Used Modules* + + N/A + +**Upgrade Notes** + +**Deprecation Notes** + +**Other** + +=========== + Version: 1.0.0 -------------- @@ -21,7 +62,7 @@ The Frankfurt Release is the first release of the Certification Service. **Known Issues** - N/A + - https://jira.onap.org/browse/AAF-1132 **Security Notes** -- 2.16.6