aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapLimitEntityToLimitDtoTest.java
diff options
context:
space:
mode:
authornoahs <noah.shogan@gmail.com>2018-03-21 15:27:23 +0200
committerOren Kleks <orenkle@amdocs.com>2018-03-26 06:15:05 +0000
commit365d1c3f7db39eeec66437cf9f6c77bcce729819 (patch)
tree05d46d43f3e7f0be50c235799fa7fb83df7c1ba0 /openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapLimitEntityToLimitDtoTest.java
parent6f9929a5eb14e596280161811623aba46da1307e (diff)
Add unit-tests for mappers
auto generated tests for mappers Change-Id: I4329aa2332e5db4bf5fcaab3481fb2f78a13044a Issue-ID: SDC-1156 Signed-off-by: noahs <noah.shogan@amdocs.com> Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
Diffstat (limited to 'openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapLimitEntityToLimitDtoTest.java')
-rw-r--r--openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapLimitEntityToLimitDtoTest.java128
1 files changed, 128 insertions, 0 deletions
diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapLimitEntityToLimitDtoTest.java b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapLimitEntityToLimitDtoTest.java
new file mode 100644
index 0000000000..1ca1c5b9e9
--- /dev/null
+++ b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapLimitEntityToLimitDtoTest.java
@@ -0,0 +1,128 @@
+/*
+ * Copyright © 2016-2018 European Support Limited
+ *
+ * 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.
+ */
+
+package org.openecomp.sdcrests.vendorlicense.rest.mapping;
+
+import static org.testng.Assert.assertEquals;
+
+import org.junit.Test;
+import org.openecomp.sdc.vendorlicense.dao.types.AggregationFunction;
+import org.openecomp.sdc.vendorlicense.dao.types.LimitEntity;
+import org.openecomp.sdc.vendorlicense.dao.types.LimitType;
+import org.openecomp.sdcrests.vendorlicense.types.LimitEntityDto;
+
+
+public class MapLimitEntityToLimitDtoTest {
+
+ @Test
+ public void testDescription() {
+ LimitEntity source = new LimitEntity();
+ LimitEntityDto target = new LimitEntityDto();
+ MapLimitEntityToLimitDto mapper = new MapLimitEntityToLimitDto();
+ String param = "7315b1fa-f797-438a-b0d1-8b652899ecec";
+ source.setDescription(param);
+ mapper.doMapping(source, target);
+ assertEquals(target.getDescription(), param);
+ }
+
+ @Test
+ public void testAggregationFunction() {
+ LimitEntity source = new LimitEntity();
+ LimitEntityDto target = new LimitEntityDto();
+ MapLimitEntityToLimitDto mapper = new MapLimitEntityToLimitDto();
+ AggregationFunction aggregationFunction = AggregationFunction.Average;
+ source.setAggregationFunction(aggregationFunction);
+ mapper.doMapping(source, target);
+ assertEquals(target.getAggregationFunction(), aggregationFunction.toString());
+ }
+
+ @Test
+ public void testType() {
+ LimitEntity source = new LimitEntity();
+ LimitEntityDto target = new LimitEntityDto();
+ MapLimitEntityToLimitDto mapper = new MapLimitEntityToLimitDto();
+ LimitType limitType = LimitType.Vendor;
+ source.setType(limitType);
+ mapper.doMapping(source, target);
+ assertEquals(target.getType(), limitType.toString());
+ }
+
+ @Test
+ public void testUnit() {
+ LimitEntity source = new LimitEntity();
+ LimitEntityDto target = new LimitEntityDto();
+ MapLimitEntityToLimitDto mapper = new MapLimitEntityToLimitDto();
+ String param = "94ab5e65-f777-49b7-9328-14af712a3767";
+ source.setUnit(param);
+ mapper.doMapping(source, target);
+ assertEquals(target.getUnit(), param);
+ }
+
+ @Test
+ public void testMetric() {
+ LimitEntity source = new LimitEntity();
+ LimitEntityDto target = new LimitEntityDto();
+ MapLimitEntityToLimitDto mapper = new MapLimitEntityToLimitDto();
+ String param = "1fb615b9-8108-485d-83c9-5dbfb14cf953";
+ source.setMetric(param);
+ mapper.doMapping(source, target);
+ assertEquals(target.getMetric(), param);
+ }
+
+ @Test
+ public void testName() {
+ LimitEntity source = new LimitEntity();
+ LimitEntityDto target = new LimitEntityDto();
+ MapLimitEntityToLimitDto mapper = new MapLimitEntityToLimitDto();
+ String param = "ab5d6967-0020-4cd2-aeba-ff3e39e52385";
+ source.setName(param);
+ mapper.doMapping(source, target);
+ assertEquals(target.getName(), param);
+ }
+
+ @Test
+ public void testId() {
+ LimitEntity source = new LimitEntity();
+ LimitEntityDto target = new LimitEntityDto();
+ MapLimitEntityToLimitDto mapper = new MapLimitEntityToLimitDto();
+ String param = "52d4d919-015a-4a46-af04-4d0dec17e88d";
+ source.setId(param);
+ mapper.doMapping(source, target);
+ assertEquals(target.getId(), param);
+ }
+
+ @Test
+ public void testTime() {
+ LimitEntity source = new LimitEntity();
+ LimitEntityDto target = new LimitEntityDto();
+ MapLimitEntityToLimitDto mapper = new MapLimitEntityToLimitDto();
+ String param = "4e19d619-5004-423c-abf2-0d6e69a47a5c";
+ source.setTime(param);
+ mapper.doMapping(source, target);
+ assertEquals(target.getTime(), param);
+ }
+
+ @Test
+ public void testValue() {
+ LimitEntity source = new LimitEntity();
+ LimitEntityDto target = new LimitEntityDto();
+ MapLimitEntityToLimitDto mapper = new MapLimitEntityToLimitDto();
+ String param = "13d67707-b02f-40b2-8b19-60fd6405a7af";
+ source.setValue(param);
+ mapper.doMapping(source, target);
+ assertEquals(target.getValue(), param);
+ }
+}