diff options
Diffstat (limited to 'appc-dispatcher/appc-request-handler')
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 |