Unit test coverage
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-software-products-rest / vendor-software-products-rest-services / src / test / java / org / openecomp / sdcrests / vsp / rest / mapping / MapComponentDependencyEntityToDtoTest.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openecomp.sdcrests.vsp.rest.mapping;
17
18 import static org.junit.Assert.assertEquals;
19
20 import org.junit.Test;
21 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.ComponentDependencyModelEntity;
22 import org.openecomp.sdcrests.vendorsoftwareproducts.types.ComponentDependencyResponseDto;
23
24 public class MapComponentDependencyEntityToDtoTest {
25
26     private static final String TEST_VALUE = "some_test_id";
27
28     @Test
29     public void testSourceId() {
30         ComponentDependencyModelEntity source = new ComponentDependencyModelEntity();
31         ComponentDependencyResponseDto target = new ComponentDependencyResponseDto();
32         MapComponentDependencyEntityToDto mapper = new  MapComponentDependencyEntityToDto();
33         source.setSourceComponentId(TEST_VALUE);
34         mapper.doMapping(source, target);
35         assertEquals(target.getSourceId(), TEST_VALUE);
36     }
37     @Test
38     public void testTargetId() {
39         ComponentDependencyModelEntity source = new ComponentDependencyModelEntity();
40         ComponentDependencyResponseDto target = new ComponentDependencyResponseDto();
41         MapComponentDependencyEntityToDto mapper = new  MapComponentDependencyEntityToDto();
42         source.setTargetComponentId(TEST_VALUE);
43         mapper.doMapping(source, target);
44         assertEquals(target.getTargetId(), TEST_VALUE);
45     }
46
47     @Test
48     public void testRelationType() {
49         ComponentDependencyModelEntity source = new ComponentDependencyModelEntity();
50         ComponentDependencyResponseDto target = new ComponentDependencyResponseDto();
51         MapComponentDependencyEntityToDto mapper = new  MapComponentDependencyEntityToDto();
52         source.setRelation(TEST_VALUE);
53         mapper.doMapping(source, target);
54         assertEquals(target.getRelationType(), TEST_VALUE);
55     }
56
57     @Test
58     public void testId() {
59         ComponentDependencyModelEntity source = new ComponentDependencyModelEntity();
60         ComponentDependencyResponseDto target = new ComponentDependencyResponseDto();
61         MapComponentDependencyEntityToDto mapper = new  MapComponentDependencyEntityToDto();
62         source.setId(TEST_VALUE);
63         mapper.doMapping(source, target);
64         assertEquals(target.getId(), TEST_VALUE);
65     }
66 }