re base code
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-license-rest / vendor-license-rest-services / src / test / java / org / openecomp / sdcrests / vendorlicense / rest / mapping / MapMultiChoiceOrOtherDtoToMultiChoiceOrOtherTest.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.vendorlicense.rest.mapping;
18
19 import org.junit.Test;
20 import org.openecomp.sdc.vendorlicense.dao.types.MultiChoiceOrOther;
21 import org.openecomp.sdcrests.vendorlicense.types.MultiChoiceOrOtherDto;
22
23 import java.util.HashSet;
24 import java.util.Set;
25
26 import static org.testng.Assert.assertEquals;
27
28
29 public class MapMultiChoiceOrOtherDtoToMultiChoiceOrOtherTest {
30
31     @Test
32     public void testChoices() {
33         MultiChoiceOrOtherDto source = new MultiChoiceOrOtherDto();
34         MultiChoiceOrOther target = new MultiChoiceOrOther();
35         MapMultiChoiceOrOtherDtoToMultiChoiceOrOther mapper = new MapMultiChoiceOrOtherDtoToMultiChoiceOrOther();
36         Set set = new HashSet();
37         set.add(TestEnum.Yes);
38         set.add(TestEnum.No);
39         source.setChoices(set);
40         mapper.doMapping(source, target);
41         assertEquals(target.getChoices(), set);
42     }
43
44     @Test
45     public void testOther() {
46         MultiChoiceOrOtherDto source = new MultiChoiceOrOtherDto();
47         MultiChoiceOrOther target = new MultiChoiceOrOther();
48         MapMultiChoiceOrOtherDtoToMultiChoiceOrOther mapper = new MapMultiChoiceOrOtherDtoToMultiChoiceOrOther();
49         String param = "930a30ce-72a5-43e3-b845-807a3e34228f";
50         source.setOther(param);
51         mapper.doMapping(source, target);
52         assertEquals(target.getOther(), param);
53     }
54
55     enum TestEnum {
56         Yes, No
57     }
58 }