Renaming Files having BluePrint to have Blueprint
[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.designer.api.DesignerApiTestConfiguration
26 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.domain.ModelType
27 import org.onap.ccsdk.cds.controllerblueprints.core.BlueprintConstants
28 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
29 import org.slf4j.LoggerFactory
30 import org.springframework.beans.factory.annotation.Autowired
31 import org.springframework.test.annotation.Commit
32 import org.springframework.test.context.ContextConfiguration
33 import org.springframework.test.context.TestPropertySource
34 import org.springframework.test.context.junit4.SpringRunner
35
36 @RunWith(SpringRunner::class)
37 @ContextConfiguration(
38     classes = [DesignerApiTestConfiguration::class]
39 )
40 @TestPropertySource(locations = ["classpath:application-test.properties"])
41 @FixMethodOrder(MethodSorters.NAME_ASCENDING)
42 class ModelTypeServiceTest {
43
44     @Autowired
45     private val modelTypeHandler: ModelTypeHandler? = null
46
47     internal var modelName = "test-datatype"
48
49     private val log = LoggerFactory.getLogger(ModelTypeServiceTest::class.java)
50
51     @Test
52     @Commit
53     @Throws(Exception::class)
54     fun test01SaveModelType() {
55         runBlocking {
56             log.info("**************** test01SaveModelType  ********************")
57
58             val content = JacksonUtils.getClassPathFileContent("model_type/data_type/datatype-property.json")
59             var modelType = ModelType()
60             modelType.definitionType = BlueprintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE
61             modelType.derivedFrom = BlueprintConstants.MODEL_TYPE_DATATYPES_ROOT
62             modelType.description = "Definition for Sample Datatype "
63             modelType.definition = JacksonUtils.jsonNode(content)
64             modelType.modelName = modelName
65             modelType.version = "1.0.0"
66             modelType.tags = (
67                 "test-datatype ," + BlueprintConstants.MODEL_TYPE_DATATYPES_ROOT + "," +
68                     BlueprintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE
69                 )
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(
78                 "Failed to query ResourceMapping for ID (" + dbModelType!!.modelName + ")",
79                 dbModelType
80             )
81
82             // Model Update
83             modelType.updatedBy = "bs2796@xxx.com"
84             modelType = modelTypeHandler.saveModel(modelType)
85             Assert.assertNotNull("Failed to get Saved ModelType", modelType)
86             Assert.assertEquals("Failed to get Saved getUpdatedBy ", "bs2796@xxx.com", modelType.updatedBy)
87         }
88     }
89
90     @Test
91     @Throws(Exception::class)
92     fun test02SearchModelTypes() {
93         runBlocking {
94             log.info("*********************** test02SearchModelTypes  ***************************")
95
96             val tags = "test-datatype"
97
98             val dbModelTypes = modelTypeHandler!!.searchModelTypes(tags)
99             Assert.assertNotNull("Failed to search ResourceMapping by tags", dbModelTypes)
100             Assert.assertTrue("Failed to search ResourceMapping by tags count", dbModelTypes.size > 0)
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     @Test
124     @Throws(Exception::class)
125     fun test04DeleteModelType() {
126         runBlocking {
127             log.info(
128                 "************************ test03DeleteModelType  ***********************"
129             )
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 }