Add junits to request-handler-exception classes
Introduce junit-tests for 3 request-handler-excetion classses
Issue-ID: APPC-769
Change-Id: I49f45ba50adccbfcc9725a7e458054e19f0c5efd
Signed-off-by: Lori Keighron <lk2924@att.com>
diff --git a/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/exceptions/DuplicateRequestExceptionTest.java b/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/exceptions/DuplicateRequestExceptionTest.java
new file mode 100644
index 0000000..5a4325f
--- /dev/null
+++ b/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/exceptions/DuplicateRequestExceptionTest.java
@@ -0,0 +1,39 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2018 AT&T Intellectual Property. 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.
+ *
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.appc.requesthandler.exceptions;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+import org.onap.appc.executor.objects.LCMCommandStatus;
+
+public class DuplicateRequestExceptionTest {
+ @Test
+ public final void testDuplicateRequestException() {
+ String sampleMsg = "sample testing message";
+ DuplicateRequestException dre = new DuplicateRequestException(sampleMsg);
+ assertNotNull(dre.getMessage());
+ assertEquals(sampleMsg, dre.getMessage());
+ assertEquals(dre.getLcmCommandStatus(), LCMCommandStatus.DUPLICATE_REQUEST);
+ }
+}
\ No newline at end of file
diff --git a/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/exceptions/MissingVNFDataInAAIExceptionTest.java b/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/exceptions/MissingVNFDataInAAIExceptionTest.java
new file mode 100644
index 0000000..899673d
--- /dev/null
+++ b/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/exceptions/MissingVNFDataInAAIExceptionTest.java
@@ -0,0 +1,41 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2018 AT&T Intellectual Property. 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.
+ *
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.appc.requesthandler.exceptions;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+import org.onap.appc.executor.objects.LCMCommandStatus;
+
+public class MissingVNFDataInAAIExceptionTest {
+
+ @Test
+ public final void testMissingVNFDataInAAIException() {
+ String attrName = "myAttribute";
+ String vnfId = "abc123DEF";
+ MissingVNFDataInAAIException e = new MissingVNFDataInAAIException(attrName, vnfId);
+ assertNotNull(e.getMessage());
+ assertEquals(e.getLcmCommandStatus(), LCMCommandStatus.MISSING_VNF_DATA_IN_AAI);
+ assertEquals("myAttribute", e.getMissingAttributeName());
+ }
+}
\ No newline at end of file
diff --git a/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/exceptions/RequestExpiredExceptionTest.java b/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/exceptions/RequestExpiredExceptionTest.java
new file mode 100644
index 0000000..950816e
--- /dev/null
+++ b/appc-dispatcher/appc-request-handler/appc-request-handler-core/src/test/java/org/onap/appc/requesthandler/exceptions/RequestExpiredExceptionTest.java
@@ -0,0 +1,39 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2018 AT&T Intellectual Property. 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.
+ *
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.appc.requesthandler.exceptions;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+import org.onap.appc.executor.objects.LCMCommandStatus;
+
+public class RequestExpiredExceptionTest {
+ @Test
+ public final void testRequestExpiredException() {
+ String sampleMsg = "sample testing message";
+ RequestExpiredException ree = new RequestExpiredException(sampleMsg);
+ assertNotNull(ree.getMessage());
+ assertEquals(sampleMsg, ree.getMessage());
+ assertEquals(ree.getLcmCommandStatus(), LCMCommandStatus.EXPIRED_REQUEST);
+ }
+}
\ No newline at end of file