1a1dae8352e2bab11dfbd63311093e394577ab1b
[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 / MapChoiceOrOtherDtoToChoiceOrOtherTest.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 static org.testng.Assert.assertEquals;
20
21 import org.openecomp.sdc.vendorlicense.dao.types.ChoiceOrOther;
22 import org.openecomp.sdcrests.vendorlicense.types.ChoiceOrOtherDto;
23 import org.testng.annotations.Test;
24
25 public class MapChoiceOrOtherDtoToChoiceOrOtherTest {
26
27     @Test
28     public void testChoice() {
29         ChoiceOrOtherDto<TestEnum> source = new ChoiceOrOtherDto<>();
30         ChoiceOrOther target = new ChoiceOrOther();
31         MapChoiceOrOtherDtoToChoiceOrOther mapper = new MapChoiceOrOtherDtoToChoiceOrOther();
32         TestEnum param = TestEnum.Yes;
33         source.setChoice(param);
34         mapper.doMapping(source, target);
35         assertEquals(target.getChoice(), param);
36     }
37
38     @Test
39     public void testOther() {
40         ChoiceOrOtherDto source = new ChoiceOrOtherDto();
41         ChoiceOrOther target = new ChoiceOrOther();
42         MapChoiceOrOtherDtoToChoiceOrOther mapper = new MapChoiceOrOtherDtoToChoiceOrOther();
43         String param = "47e3f467-1700-498f-b445-2ba8910253b2";
44         source.setOther(param);
45         mapper.doMapping(source, target);
46         assertEquals(target.getOther(), param);
47     }
48
49     enum TestEnum {
50         Yes
51     }
52 }