2 * Copyright © 2016-2018 European Support Limited
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.openecomp.sdc.vendorlicense.dao.impl.zusammen.convertor;
18 import static org.junit.Assert.assertEquals;
20 import com.amdocs.zusammen.adaptor.inbound.api.types.item.ElementInfo;
21 import com.amdocs.zusammen.adaptor.inbound.api.types.item.ZusammenElement;
22 import com.amdocs.zusammen.datatypes.Id;
23 import com.amdocs.zusammen.datatypes.item.Info;
24 import java.util.HashMap;
25 import org.junit.Test;
26 import org.openecomp.sdc.vendorlicense.dao.types.LicenseAgreementEntity;
28 public class ElementToLicenseAgreementConvertorTest {
29 private static final String ENTITY_ID = "entityId1";
30 private static final String ENTITY_NAME = "entityTestName";
31 private static final String ENTITY_DESCRIPTION = "entityTestDesc";
32 private static final String LICENSE_TERM = "Fixed_Term";
34 private ElementToLicenseAgreementConvertor converter = new ElementToLicenseAgreementConvertor();
37 public void shouldConvertElementToLicenseAgreementEntity() {
38 ZusammenElement elementToConvert = new ZusammenElement();
39 elementToConvert.setElementId(new Id(ENTITY_ID));
40 elementToConvert.setInfo(createInfo());
41 LicenseAgreementEntity result = converter.convert(elementToConvert);
42 assertEquals(ENTITY_ID, result.getId());
43 assertEquals(ENTITY_NAME, result.getName());
44 assertEquals(ENTITY_DESCRIPTION, result.getDescription());
45 assertEquals(LICENSE_TERM, result.getLicenseTerm().getChoice().name());
49 public void shouldConvertElementInfoToLicenseAgreementEntity(){
50 ElementInfo elementToConvert = new ElementInfo();
51 elementToConvert.setId(new Id(ENTITY_ID));
52 elementToConvert.setInfo(createInfo());
53 LicenseAgreementEntity result = converter.convert(elementToConvert);
54 assertEquals(ENTITY_ID,result.getId());
55 assertEquals(ENTITY_NAME, result.getName());
56 assertEquals(ENTITY_DESCRIPTION, result.getDescription());
57 assertEquals(LICENSE_TERM, result.getLicenseTerm().getChoice().name());
60 private Info createInfo(){
61 Info info = new Info();
62 info.setName(ENTITY_NAME);
63 info.setDescription(ENTITY_DESCRIPTION);
64 HashMap<String,String> choiceOrOther = new HashMap<>();
65 choiceOrOther.put("choice", LICENSE_TERM);
66 choiceOrOther.put("other", "other");
67 info.addProperty("licenseTerm", choiceOrOther);