Added oparent to sdc main
[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 / ChoiceOrOtherMappingTest.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 /**
26  * Any change to ChoiceOrOther easily break reconstruction of objects of this type.
27  * This test protects from such accidental changes.
28  *
29  * @author EVITALIY
30  * @since 28 Dec 17
31  */
32 public class ChoiceOrOtherMappingTest {
33
34     private static final String UNKNOWN = "Unknown";
35
36     public enum TestEnum {
37         Yes
38     }
39
40     @Test
41     public void testApplyMappingFromDto() {
42
43         ChoiceOrOtherDto<TestEnum> source = new ChoiceOrOtherDto<>();
44         source.setChoice(TestEnum.Yes);
45         source.setOther(UNKNOWN);
46
47         ChoiceOrOther<TestEnum> expected = new ChoiceOrOther<>(TestEnum.Yes, UNKNOWN);
48
49         ChoiceOrOther result = new MapChoiceOrOtherDtoToChoiceOrOther().applyMapping(source, ChoiceOrOther.class);
50         assertEquals(result, expected);
51     }
52
53     @Test
54     public void testApplyMappingToDto() {
55
56         ChoiceOrOther<TestEnum> source = new ChoiceOrOther<>(TestEnum.Yes, UNKNOWN);
57
58         ChoiceOrOtherDto<TestEnum> expected = new ChoiceOrOtherDto<>();
59         expected.setChoice(TestEnum.Yes);
60         expected.setOther(UNKNOWN);
61
62         ChoiceOrOtherDto result = new MapChoiceOrOtherToChoiceOrOtherDto().applyMapping(source, ChoiceOrOtherDto.class);
63         assertEquals(result, expected);
64     }
65 }