Unit-tests for mappers in item services
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / item-rest / item-rest-services / src / test / java / org / openecomp / sdcrests / item / rest / mapping / MapRevisionToDtoTest.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.item.rest.mapping;
18
19 import static org.junit.Assert.assertEquals;
20
21 import java.util.Date;
22 import org.junit.Test;
23 import org.openecomp.sdc.versioning.dao.types.Revision;
24 import org.openecomp.sdcrests.item.types.RevisionDto;
25
26 /**
27  * This class was generated.
28  */
29 public class MapRevisionToDtoTest {
30
31     @Test()
32     public void testConversion() {
33
34         final Revision source = new Revision();
35
36         final String id = "ecbf1a77-a420-4655-b2fc-e403a703036d";
37         source.setId(id);
38
39         final String message = "2f2a55c8-90b6-413c-bf31-168108e75cb3";
40         source.setMessage(message);
41
42         final Date time = new Date();
43         source.setTime(time);
44
45         final String user = "503cf667-028b-4d53-bf76-68ad85edf51d";
46         source.setUser(user);
47
48         final RevisionDto target = new RevisionDto();
49         final MapRevisionToDto mapper = new MapRevisionToDto();
50         mapper.doMapping(source, target);
51
52         assertEquals(id, target.getId());
53         assertEquals(message, target.getMessage());
54         assertEquals(time, target.getTime());
55         assertEquals(user, target.getUser());
56     }
57 }