2 * Copyright © 2017-2018 AT&T Intellectual Property.
\r
3 * Modifications Copyright © 2018 IBM.
\r
5 * Licensed under the Apache License, Version 2.0 (the "License");
\r
6 * you may not use this file except in compliance with the License.
\r
7 * You may obtain a copy of the License at
\r
9 * http://www.apache.org/licenses/LICENSE-2.0
\r
11 * Unless required by applicable law or agreed to in writing, software
\r
12 * distributed under the License is distributed on an "AS IS" BASIS,
\r
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
\r
14 * See the License for the specific language governing permissions and
\r
15 * limitations under the License.
\r
18 package org.onap.ccsdk.apps.controllerblueprints.core.utils
\r
20 import com.att.eelf.configuration.EELFLogger
\r
21 import com.att.eelf.configuration.EELFManager
\r
22 import org.junit.Test
\r
23 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintConstants
\r
24 import kotlin.test.assertNotNull
\r
25 import kotlin.test.assertTrue
\r
29 * @author Brinda Santh
\r
32 class JacksonUtilsTest {
\r
34 private val log: EELFLogger = EELFManager.getInstance().getLogger(this::class.toString())
\r
37 fun testJsonNodeFromClassPathFile() {
\r
38 val filePath = "data/default-context.json"
\r
39 JacksonUtils.jsonNodeFromClassPathFile(filePath)
\r
43 fun testJsonNodeFromFile() {
\r
44 val filePath = "src/test/resources/data/default-context.json"
\r
45 JacksonUtils.jsonNodeFromFile(filePath)
\r
49 fun testGetListFromJson() {
\r
50 val content = "[\"good\",\"boy\" ]"
\r
51 val nodeType = JacksonUtils.getListFromJson(content, String::class.java)
\r
52 assertNotNull(nodeType, "Failed to get String array from content")
\r
57 fun testJsonValue() {
\r
58 val filePath = "data/alltype-data.json"
\r
59 val rootJson = JacksonUtils.jsonNodeFromClassPathFile(filePath)
\r
60 assertNotNull(rootJson, "Failed to get all type data json node")
\r
61 val intValue = rootJson.get("intValue")
\r
62 assertTrue(JacksonUtils.checkJsonNodeValueOfType(BluePrintConstants.DATA_TYPE_INTEGER, intValue), "Failed to get as int value")
\r
63 val floatValue = rootJson.get("floatValue")
\r
64 assertTrue(JacksonUtils.checkJsonNodeValueOfType(BluePrintConstants.DATA_TYPE_FLOAT, floatValue), "Failed to get as float value")
\r
65 val stringValue = rootJson.get("stringValue")
\r
66 assertTrue(JacksonUtils.checkJsonNodeValueOfType(BluePrintConstants.DATA_TYPE_STRING, stringValue), "Failed to get as string value")
\r
67 val booleanValue = rootJson.get("booleanValue")
\r
68 assertTrue(JacksonUtils.checkJsonNodeValueOfType(BluePrintConstants.DATA_TYPE_BOOLEAN, booleanValue), "Failed to get as boolean value")
\r
69 val arrayStringValue = rootJson.get("arrayStringValue")
\r
70 assertTrue(JacksonUtils.checkJsonNodeValueOfType(BluePrintConstants.DATA_TYPE_LIST, arrayStringValue), "Failed to get as List value")
\r
71 val mapValue = rootJson.get("mapValue")
\r
72 assertTrue(JacksonUtils.checkJsonNodeValueOfType(BluePrintConstants.DATA_TYPE_MAP, mapValue), "Failed to get as Map value")
\r
74 assertTrue(!JacksonUtils.checkJsonNodeValueOfType(BluePrintConstants.DATA_TYPE_LIST, stringValue), "Negative type failed")
\r