Unit-test for mappers in item permissions
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / item-permissions-rest / item-permissions-rest-services / src / test / java / org / openecomp / sdcrests / itempermissions / rest / mapping / MapItemPermissionsToItemPermissionsDtoTest.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
17 package org.openecomp.sdcrests.itempermissions.rest.mapping;
18
19 import static org.junit.Assert.assertEquals;
20
21 import org.junit.Test;
22 import org.openecomp.sdc.itempermissions.type.ItemPermissionsEntity;
23 import org.openecomp.sdcrests.itempermissions.types.ItemPermissionsDto;
24
25 /**
26  * This class was generated.
27  */
28 public class MapItemPermissionsToItemPermissionsDtoTest {
29
30     @Test
31     public void testConversion() {
32
33         final ItemPermissionsEntity source = new ItemPermissionsEntity();
34         final String userId = "23b32755-a837-41bb-9216-aeb8243fd470";
35         source.setUserId(userId);
36         final String permission = "5069e4f8-ae49-4dfd-8b78-58291ec85b2b";
37         source.setPermission(permission);
38
39         final ItemPermissionsDto target = new ItemPermissionsDto();
40         final MapItemPermissionsToItemPermissionsDto mapper = new MapItemPermissionsToItemPermissionsDto();
41         mapper.doMapping(source, target);
42
43         assertEquals(userId, target.getUserId());
44         assertEquals(permission, target.getPermission());
45     }
46 }