3dfed1ccb7ee52f04a8f15f489a165337167c786
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / designer-api / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / designer / api / repository / ModelTypeReactRepositoryTest.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.repository
18
19 import org.junit.Assert
20 import org.junit.FixMethodOrder
21 import org.junit.Test
22 import org.junit.runner.RunWith
23 import org.junit.runners.MethodSorters
24 import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintPropertiesService
25 import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintPropertyConfiguration
26 import org.onap.ccsdk.cds.blueprintsprocessor.db.BluePrintDBLibConfiguration
27 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.DesignerApiTestConfiguration
28 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
29 import org.onap.ccsdk.cds.controllerblueprints.core.normalizedFile
30 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
31 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.domain.ModelType
32 import org.springframework.beans.factory.annotation.Autowired
33 import org.springframework.test.annotation.Commit
34 import org.springframework.test.context.ContextConfiguration
35 import org.springframework.test.context.TestPropertySource
36 import org.springframework.test.context.junit4.SpringRunner
37 import java.nio.charset.Charset
38 import java.util.*
39
40 /**
41  * ModelTypeReactRepositoryTest.
42  *
43  * @author Brinda Santh
44  */
45
46 @RunWith(SpringRunner::class)
47 @ContextConfiguration(classes = [DesignerApiTestConfiguration::class,
48     BluePrintPropertyConfiguration::class, BluePrintPropertiesService::class, BluePrintDBLibConfiguration::class])
49 @TestPropertySource(locations = ["classpath:application-test.properties"])
50 @FixMethodOrder(MethodSorters.NAME_ASCENDING)
51 class ModelTypeReactRepositoryTest {
52
53     @Autowired
54     private val modelTypeReactRepository: ModelTypeReactRepository? = null
55
56     internal var modelName = "test-datatype"
57
58     @Test
59     @Commit
60     fun test01Save() {
61         val content = normalizedFile("./src/test/resources/model_type/data_type/datatype-property.json")
62                 .readText(Charset.defaultCharset())
63         val modelType = ModelType()
64         modelType.definitionType = BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE
65         modelType.derivedFrom = BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT
66         modelType.description = "Definition for Sample Datatype "
67         modelType.definition = JacksonUtils.jsonNode(content)
68         modelType.modelName = modelName
69         modelType.version = "1.0.0"
70         modelType.tags = ("test-datatype ," + BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT + ","
71                 + BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE)
72         modelType.updatedBy = "xxxxxx@xxx.com"
73
74         val dbModelType = modelTypeReactRepository!!.save(modelType).block()
75         Assert.assertNotNull("Failed to get Saved ModelType", dbModelType)
76     }
77
78     @Test
79     fun test02Finds() {
80         val dbFindByModelName = modelTypeReactRepository!!.findByModelName(modelName).block()
81         Assert.assertNotNull("Failed to findByModelName ", dbFindByModelName)
82
83         val dbFindByDefinitionType = modelTypeReactRepository.findByDefinitionType(BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE).collectList().block()
84         Assert.assertNotNull("Failed to findByDefinitionType ", dbFindByDefinitionType)
85         Assert.assertTrue("Failed to findByDefinitionType count", dbFindByDefinitionType!!.size > 0)
86
87         val dbFindByDerivedFrom = modelTypeReactRepository.findByDerivedFrom(BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT).collectList().block()
88         Assert.assertNotNull("Failed to find findByDerivedFrom", dbFindByDerivedFrom)
89         Assert.assertTrue("Failed to find findByDerivedFrom by count", dbFindByDerivedFrom!!.size > 0)
90
91         val dbFindByModelNameIn = modelTypeReactRepository.findByModelNameIn(Arrays.asList(modelName)).collectList().block()
92         Assert.assertNotNull("Failed to findByModelNameIn ", dbFindByModelNameIn)
93         Assert.assertTrue("Failed to findByModelNameIn by count", dbFindByModelNameIn!!.size > 0)
94
95         val dbFindByDefinitionTypeIn = modelTypeReactRepository.findByDefinitionTypeIn(Arrays.asList(BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE)).collectList().block()
96         Assert.assertNotNull("Failed to findByDefinitionTypeIn", dbFindByDefinitionTypeIn)
97         Assert.assertTrue("Failed to findByDefinitionTypeIn by count", dbFindByDefinitionTypeIn!!.size > 0)
98
99         val dbFindByDerivedFromIn = modelTypeReactRepository.findByDerivedFromIn(Arrays.asList(BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT)).collectList().block()
100         Assert.assertNotNull("Failed to find findByDerivedFromIn", dbFindByDerivedFromIn)
101         Assert.assertTrue("Failed to find findByDerivedFromIn by count", dbFindByDerivedFromIn!!.size > 0)
102     }
103
104     @Test
105     @Commit
106     fun test03Delete() {
107         modelTypeReactRepository!!.deleteByModelName(modelName).block()
108     }
109
110 }