diff options
author | Lori Keighron <lk2924@att.com> | 2018-03-20 17:03:35 -0400 |
---|---|---|
committer | Lori Keighron <lk2924@att.com> | 2018-03-20 17:12:22 -0400 |
commit | dda85044d9534f1fe17c6fcb3a28b54e20dcae29 (patch) | |
tree | 5c5c51bff08fdff6b4303e309db486a01fe5b327 /appc-dispatcher | |
parent | e551a81ab48b77b5be881699b4176bbc337bbbce (diff) |
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>
Diffstat (limited to 'appc-dispatcher')
3 files changed, 119 insertions, 0 deletions
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 000000000..5a4325f6d --- /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 000000000..899673d09 --- /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 000000000..950816ef4 --- /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 |