Release version 1.13.7
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / tosca / model / ToscaAttributeTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        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.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.openecomp.sdc.be.tosca.model;
21
22 import static org.junit.jupiter.api.Assertions.assertEquals;
23 import static org.openecomp.sdc.be.utils.TypeUtils.ToscaTagNamesEnum.DEFAULT;
24 import static org.openecomp.sdc.be.utils.TypeUtils.ToscaTagNamesEnum.DESCRIPTION;
25 import static org.openecomp.sdc.be.utils.TypeUtils.ToscaTagNamesEnum.ENTRY_SCHEMA;
26 import static org.openecomp.sdc.be.utils.TypeUtils.ToscaTagNamesEnum.KEY_SCHEMA;
27 import static org.openecomp.sdc.be.utils.TypeUtils.ToscaTagNamesEnum.STATUS;
28 import static org.openecomp.sdc.be.utils.TypeUtils.ToscaTagNamesEnum.TYPE;
29
30 import java.util.Map;
31 import org.junit.jupiter.api.Test;
32
33 class ToscaAttributeTest {
34
35     @Test
36     void testMapConversion() {
37         final ToscaAttribute toscaAttribute = new ToscaAttribute();
38         assertToscaAttributeMap(toscaAttribute);
39
40         toscaAttribute.setType("type");
41         toscaAttribute.setDescription("description");
42         toscaAttribute.setKeySchema(new ToscaSchemaDefinition());
43         toscaAttribute.setEntrySchema(new ToscaSchemaDefinition());
44         toscaAttribute.setDefault("default");
45         toscaAttribute.setStatus("status");
46
47         assertToscaAttributeMap(toscaAttribute);
48     }
49
50     private void assertToscaAttributeMap(final ToscaAttribute toscaAttribute) {
51         final Map<String, Object> toscaAttributeAsMap = toscaAttribute.asToscaMap();
52         assertEquals(toscaAttribute.getType(), toscaAttributeAsMap.get(TYPE.getElementName()));
53         assertEquals(toscaAttribute.getDescription(),
54             toscaAttributeAsMap.get(DESCRIPTION.getElementName()));
55         assertEquals(toscaAttribute.getKeySchema(),
56             toscaAttributeAsMap.get(KEY_SCHEMA.getElementName()));
57         assertEquals(toscaAttribute.getEntrySchema(),
58             toscaAttributeAsMap.get(ENTRY_SCHEMA.getElementName()));
59         assertEquals(toscaAttribute.getDefault(), toscaAttributeAsMap.get(DEFAULT.getElementName()));
60         assertEquals(toscaAttribute.getStatus(), toscaAttributeAsMap.get(STATUS.getElementName()));
61     }
62 }