Refactor resource dictionary entity and repositories.
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / designer-api / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / designer / api / handler / ModelTypeServiceTest.kt
1 /*
2  *  Copyright © 2019 IBM.
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.onap.ccsdk.cds.blueprintsprocessor.designer.api.handler
18
19 import kotlinx.coroutines.runBlocking
20 import org.junit.Assert
21 import org.junit.FixMethodOrder
22 import org.junit.Test
23 import org.junit.runner.RunWith
24 import org.junit.runners.MethodSorters
25 import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintProperties
26 import org.onap.ccsdk.cds.blueprintsprocessor.core.BlueprintPropertyConfiguration
27 import org.onap.ccsdk.cds.blueprintsprocessor.db.BluePrintDBLibConfiguration
28 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.DesignerApiTestConfiguration
29 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
30 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
31 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.domain.ModelType
32 import org.slf4j.LoggerFactory
33 import org.springframework.beans.factory.annotation.Autowired
34 import org.springframework.test.annotation.Commit
35 import org.springframework.test.context.ContextConfiguration
36 import org.springframework.test.context.TestPropertySource
37 import org.springframework.test.context.junit4.SpringRunner
38
39
40 @RunWith(SpringRunner::class)
41 @ContextConfiguration(classes = [DesignerApiTestConfiguration::class,
42     BlueprintPropertyConfiguration::class, BluePrintProperties::class, BluePrintDBLibConfiguration::class])
43 @TestPropertySource(locations = ["classpath:application-test.properties"])
44 @FixMethodOrder(MethodSorters.NAME_ASCENDING)
45 class ModelTypeServiceTest {
46     @Autowired
47     private val modelTypeHandler: ModelTypeHandler? = null
48
49     internal var modelName = "test-datatype"
50
51     private val log = LoggerFactory.getLogger(ModelTypeServiceTest::class.java)
52
53     @Test
54     @Commit
55     @Throws(Exception::class)
56     fun test01SaveModelType() {
57         runBlocking {
58             log.info("**************** test01SaveModelType  ********************")
59
60             val content = JacksonUtils.getClassPathFileContent("model_type/data_type/datatype-property.json")
61             var modelType = ModelType()
62             modelType.definitionType = BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE
63             modelType.derivedFrom = BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT
64             modelType.description = "Definition for Sample Datatype "
65             modelType.definition = JacksonUtils.jsonNode(content)
66             modelType.modelName = modelName
67             modelType.version = "1.0.0"
68             modelType.tags = ("test-datatype ," + BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT + ","
69                     + BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE)
70             modelType.updatedBy = "xxxxxx@xxx.com"
71             modelType = modelTypeHandler!!.saveModel(modelType)
72             log.info("Saved Mode {}", modelType.toString())
73             Assert.assertNotNull("Failed to get Saved ModelType", modelType)
74             Assert.assertNotNull("Failed to get Saved ModelType, Id", modelType.modelName)
75
76             val dbModelType = modelTypeHandler.getModelTypeByName(modelType.modelName)
77             Assert.assertNotNull("Failed to query ResourceMapping for ID (" + dbModelType!!.modelName + ")",
78                     dbModelType)
79
80             // Model Update
81             modelType.updatedBy = "bs2796@xxx.com"
82             modelType = modelTypeHandler.saveModel(modelType)
83             Assert.assertNotNull("Failed to get Saved ModelType", modelType)
84             Assert.assertEquals("Failed to get Saved getUpdatedBy ", "bs2796@xxx.com", modelType.updatedBy)
85         }
86
87     }
88
89     @Test
90     @Throws(Exception::class)
91     fun test02SearchModelTypes() {
92         runBlocking {
93             log.info("*********************** test02SearchModelTypes  ***************************")
94
95             val tags = "test-datatype"
96
97             val dbModelTypes = modelTypeHandler!!.searchModelTypes(tags)
98             Assert.assertNotNull("Failed to search ResourceMapping by tags", dbModelTypes)
99             Assert.assertTrue("Failed to search ResourceMapping by tags count", dbModelTypes.size > 0)
100         }
101
102     }
103
104     @Test
105     @Throws(Exception::class)
106     fun test03GetModelType() {
107         runBlocking {
108             log.info("************************* test03GetModelType  *********************************")
109             val dbModelType = modelTypeHandler!!.getModelTypeByName(modelName)
110             Assert.assertNotNull("Failed to get response for api call getModelByName ", dbModelType)
111             Assert.assertNotNull("Failed to get Id for api call  getModelByName ", dbModelType!!.modelName)
112
113             val dbDatatypeModelTypes = modelTypeHandler.getModelTypeByDefinitionType(BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE)
114             Assert.assertNotNull("Failed to find getModelTypeByDefinitionType by tags", dbDatatypeModelTypes)
115             Assert.assertTrue("Failed to find getModelTypeByDefinitionType by count", dbDatatypeModelTypes.size > 0)
116
117             val dbModelTypeByDerivedFroms = modelTypeHandler.getModelTypeByDerivedFrom(BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT)
118             Assert.assertNotNull("Failed to find getModelTypeByDerivedFrom by tags", dbModelTypeByDerivedFroms)
119             Assert.assertTrue("Failed to find getModelTypeByDerivedFrom by count", dbModelTypeByDerivedFroms.size > 0)
120         }
121
122     }
123
124     @Test
125     @Throws(Exception::class)
126     fun test04DeleteModelType() {
127         runBlocking {
128             log.info(
129                     "************************ test03DeleteModelType  ***********************")
130             val dbResourceMapping = modelTypeHandler!!.getModelTypeByName(modelName)
131             Assert.assertNotNull("Failed to get response for api call getModelByName ", dbResourceMapping)
132             Assert.assertNotNull("Failed to get Id for api call  getModelByName ", dbResourceMapping!!.modelName)
133
134             modelTypeHandler.deleteByModelName(dbResourceMapping.modelName)
135         }
136     }
137
138 }