Revert "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 / 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.designer.api.DesignerApiTestConfiguration
25 import org.onap.ccsdk.cds.blueprintsprocessor.designer.api.domain.ModelType
26 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants
27 import org.onap.ccsdk.cds.controllerblueprints.core.normalizedFile
28 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
29 import org.springframework.beans.factory.annotation.Autowired
30 import org.springframework.test.annotation.Commit
31 import org.springframework.test.context.ContextConfiguration
32 import org.springframework.test.context.TestPropertySource
33 import org.springframework.test.context.junit4.SpringRunner
34 import java.nio.charset.Charset
35 import java.util.Arrays
36
37 /**
38  * ModelTypeReactRepositoryTest.
39  *
40  * @author Brinda Santh
41  */
42
43 @RunWith(SpringRunner::class)
44 @ContextConfiguration(
45     classes = [DesignerApiTestConfiguration::class]
46 )
47 @TestPropertySource(locations = ["classpath:application-test.properties"])
48 @FixMethodOrder(MethodSorters.NAME_ASCENDING)
49 class ModelTypeReactRepositoryTest {
50
51     @Autowired
52     private val modelTypeReactRepository: ModelTypeReactRepository? = null
53
54     internal var modelName = "test-datatype"
55
56     @Test
57     @Commit
58     fun test01Save() {
59         val content = normalizedFile("./src/test/resources/model_type/data_type/datatype-property.json")
60             .readText(Charset.defaultCharset())
61         val 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 = (
69             "test-datatype ," + BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT + "," +
70                 BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE
71             )
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 =
84             modelTypeReactRepository.findByDefinitionType(BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE).collectList().block()
85         Assert.assertNotNull("Failed to findByDefinitionType ", dbFindByDefinitionType)
86         Assert.assertTrue("Failed to findByDefinitionType count", dbFindByDefinitionType!!.size > 0)
87
88         val dbFindByDerivedFrom = modelTypeReactRepository.findByDerivedFrom(BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT).collectList().block()
89         Assert.assertNotNull("Failed to find findByDerivedFrom", dbFindByDerivedFrom)
90         Assert.assertTrue("Failed to find findByDerivedFrom by count", dbFindByDerivedFrom!!.size > 0)
91
92         val dbFindByModelNameIn = modelTypeReactRepository.findByModelNameIn(Arrays.asList(modelName)).collectList().block()
93         Assert.assertNotNull("Failed to findByModelNameIn ", dbFindByModelNameIn)
94         Assert.assertTrue("Failed to findByModelNameIn by count", dbFindByModelNameIn!!.size > 0)
95
96         val dbFindByDefinitionTypeIn =
97             modelTypeReactRepository.findByDefinitionTypeIn(Arrays.asList(BluePrintConstants.MODEL_DEFINITION_TYPE_DATA_TYPE)).collectList().block()
98         Assert.assertNotNull("Failed to findByDefinitionTypeIn", dbFindByDefinitionTypeIn)
99         Assert.assertTrue("Failed to findByDefinitionTypeIn by count", dbFindByDefinitionTypeIn!!.size > 0)
100
101         val dbFindByDerivedFromIn =
102             modelTypeReactRepository.findByDerivedFromIn(Arrays.asList(BluePrintConstants.MODEL_TYPE_DATATYPES_ROOT)).collectList().block()
103         Assert.assertNotNull("Failed to find findByDerivedFromIn", dbFindByDerivedFromIn)
104         Assert.assertTrue("Failed to find findByDerivedFromIn by count", dbFindByDerivedFromIn!!.size > 0)
105     }
106
107     @Test
108     @Commit
109     fun test03Delete() {
110         modelTypeReactRepository!!.deleteByModelName(modelName).block()
111     }
112 }