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