summaryrefslogtreecommitdiffstats
path: root/openecomp-be/backend
diff options
context:
space:
mode:
authorm.kowalski3 <m.kowalski3@partner.samsung.com>2019-07-05 13:08:43 +0200
committerOren Kleks <orenkle@amdocs.com>2019-07-07 13:11:00 +0000
commit30cc86597cf069d06e350d754628e72fbbd9b4bb (patch)
treec1da94f0bef82fb21f762c57dbaf7c1342a741cb /openecomp-be/backend
parent8f82ddc9c6a2bc45680748f3f584e36a1ce131d4 (diff)
Add unit test for OrchestrationTemplateNotFoundErrorBuilder
Issue-ID: SDC-2327 Signed-off-by: Marcin Kowalski <m.kowalski3@partner.samsung.com> Change-Id: Ia8f606848a7ebe405b4ac4a7935d7df1c001452f
Diffstat (limited to 'openecomp-be/backend')
-rw-r--r--openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/errors/OrchestrationTemplateNotFoundErrorBuilderTest.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/errors/OrchestrationTemplateNotFoundErrorBuilderTest.java b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/errors/OrchestrationTemplateNotFoundErrorBuilderTest.java
new file mode 100644
index 0000000000..d7d4c604c9
--- /dev/null
+++ b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/errors/OrchestrationTemplateNotFoundErrorBuilderTest.java
@@ -0,0 +1,45 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
+ * Copyright (C) 2019 Samsung. 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.openecomp.sdc.vendorsoftwareproduct.errors;
+
+import static org.junit.Assert.assertEquals;
+
+import org.junit.Test;
+import org.openecomp.sdc.common.errors.ErrorCategory;
+import org.openecomp.sdc.common.errors.ErrorCode;
+
+public class OrchestrationTemplateNotFoundErrorBuilderTest {
+
+ @Test
+ public void testBuild() {
+ //given
+ OrchestrationTemplateNotFoundErrorBuilder orchestrationTemplateNotFoundErrorBuilder =
+ new OrchestrationTemplateNotFoundErrorBuilder("1");
+
+ //when
+ ErrorCode errorCode = orchestrationTemplateNotFoundErrorBuilder.build();
+
+ //then
+ assertEquals(VendorSoftwareProductErrorCodes.ORCHESTRATION_NOT_FOUND, errorCode.id());
+ assertEquals(ErrorCategory.APPLICATION, errorCode.category());
+ assertEquals("Failed to get orchestration template for VSP with id 1", errorCode.message());
+ }
+}