From 365d1c3f7db39eeec66437cf9f6c77bcce729819 Mon Sep 17 00:00:00 2001 From: noahs Date: Wed, 21 Mar 2018 15:27:23 +0200 Subject: Add unit-tests for mappers auto generated tests for mappers Change-Id: I4329aa2332e5db4bf5fcaab3481fb2f78a13044a Issue-ID: SDC-1156 Signed-off-by: noahs Signed-off-by: vempo --- ...GroupEntityToFeatureGroupDescriptorDtoTest.java | 75 ++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.java (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/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.java') 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/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.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/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.java new file mode 100644 index 0000000000..b575febac8 --- /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/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.java @@ -0,0 +1,75 @@ +/* + * 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.FeatureGroupEntity; +import org.openecomp.sdcrests.vendorlicense.types.FeatureGroupDescriptorDto; + + +public class MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest { + + @Test + public void testManufacturerReferenceNumber() { + FeatureGroupEntity source = new FeatureGroupEntity(); + FeatureGroupDescriptorDto target = new FeatureGroupDescriptorDto(); + MapFeatureGroupEntityToFeatureGroupDescriptorDto mapper = + new MapFeatureGroupEntityToFeatureGroupDescriptorDto(); + String param = "02402e1e-7092-485a-9574-46e2d49cca97"; + source.setManufacturerReferenceNumber(param); + mapper.doMapping(source, target); + assertEquals(target.getManufacturerReferenceNumber(), param); + } + + @Test + public void testDescription() { + FeatureGroupEntity source = new FeatureGroupEntity(); + FeatureGroupDescriptorDto target = new FeatureGroupDescriptorDto(); + MapFeatureGroupEntityToFeatureGroupDescriptorDto mapper = + new MapFeatureGroupEntityToFeatureGroupDescriptorDto(); + String param = "0173a1e0-f713-413c-854b-152d35228616"; + source.setDescription(param); + mapper.doMapping(source, target); + assertEquals(target.getDescription(), param); + } + + @Test + public void testName() { + FeatureGroupEntity source = new FeatureGroupEntity(); + FeatureGroupDescriptorDto target = new FeatureGroupDescriptorDto(); + MapFeatureGroupEntityToFeatureGroupDescriptorDto mapper = + new MapFeatureGroupEntityToFeatureGroupDescriptorDto(); + String param = "d0a3212d-06c6-455e-ab36-b1fd63eefeca"; + source.setName(param); + mapper.doMapping(source, target); + assertEquals(target.getName(), param); + } + + @Test + public void testPartNumber() { + FeatureGroupEntity source = new FeatureGroupEntity(); + FeatureGroupDescriptorDto target = new FeatureGroupDescriptorDto(); + MapFeatureGroupEntityToFeatureGroupDescriptorDto mapper = + new MapFeatureGroupEntityToFeatureGroupDescriptorDto(); + String param = "562265f0-abe0-44e9-9ee4-3cf2f5436ea9"; + source.setPartNumber(param); + mapper.doMapping(source, target); + assertEquals(target.getPartNumber(), param); + } +} -- cgit 1.2.3-korg