Fix wrong tests directory structure
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-license-lib / openecomp-sdc-vendor-license-core / src / test / java / org / openecomp / sdc / vendorlicense / dao / impl / zusammen / convertor / ElementToLimitConvertorTest.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.sdc.vendorlicense.dao.impl.zusammen.convertor;
18
19 import static org.junit.Assert.assertEquals;
20
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 org.junit.Test;
25 import org.openecomp.sdc.vendorlicense.dao.types.LimitEntity;
26
27 public class ElementToLimitConvertorTest {
28
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 LIMIT_TYPE = "ServiceProvider";
33
34     private ElementToLimitConvertor converter = new ElementToLimitConvertor();
35
36     @Test
37     public void shouldConvertElementToLimitEntity() {
38         ZusammenElement elementToConvert = new ZusammenElement();
39         elementToConvert.setElementId(new Id(ENTITY_ID));
40         Info info = new Info();
41         info.setName(ENTITY_NAME);
42         info.setDescription(ENTITY_DESCRIPTION);
43         info.addProperty("type",LIMIT_TYPE);
44         elementToConvert.setInfo(info);
45         LimitEntity result = converter.convert(elementToConvert);
46         assertEquals(ENTITY_ID,result.getId());
47         assertEquals(ENTITY_NAME, result.getName());
48         assertEquals(ENTITY_DESCRIPTION, result.getDescription());
49         assertEquals(LIMIT_TYPE, result.getType().name());
50     }
51
52 }