summaryrefslogtreecommitdiffstats
path: root/openecomp-be/backend
diff options
context:
space:
mode:
authorm.kowalski3 <m.kowalski3@partner.samsung.com>2019-07-11 11:55:45 +0200
committerOfir Sonsino <ofir.sonsino@intl.att.com>2019-07-21 13:54:52 +0000
commit4b6ceb618a35aef9125811459146641c6aa5391f (patch)
treec3604c68fb35ba140e1f2dbd2b4169c2e1057eec /openecomp-be/backend
parent732768b2d0596e3e09e9788f033b488d349635bc (diff)
Add unit test for TranslationFileCreationErrorBuilder
Issue-ID: SDC-2327 Signed-off-by: Marcin Kowalski <m.kowalski3@partner.samsung.com> Change-Id: Iedb570e14fdf1169da45321d97807aedad2c16d0
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/TranslationFileCreationErrorBuilderTest.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/errors/TranslationFileCreationErrorBuilderTest.java b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/errors/TranslationFileCreationErrorBuilderTest.java
new file mode 100644
index 0000000000..873efff51e
--- /dev/null
+++ b/openecomp-be/backend/openecomp-sdc-vendor-software-product-manager/src/test/java/org/openecomp/sdc/vendorsoftwareproduct/errors/TranslationFileCreationErrorBuilderTest.java
@@ -0,0 +1,49 @@
+/*-
+ * ============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;
+import org.openecomp.sdc.versioning.dao.types.Version;
+
+public class TranslationFileCreationErrorBuilderTest {
+
+ @Test
+ public void testBuild() {
+ //given
+ TranslationFileCreationErrorBuilder translationFileCreationErrorBuilder =
+ new TranslationFileCreationErrorBuilder("1", Version.valueOf("1.0"));
+
+ //when
+ ErrorCode errorCode = translationFileCreationErrorBuilder.build();
+
+ //then
+ assertEquals(VendorSoftwareProductErrorCodes.TRANSLATION_FILE_CREATION, errorCode.id());
+ assertEquals(ErrorCategory.SYSTEM, errorCode.category());
+ assertEquals(
+ "Error while trying to create translation file from the package of vendor software product with Id 1 and version 1.0.",
+ errorCode.message());
+ }
+
+}