70e1b8ed2850a60a8436e02dfe55fa1629428e5f
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / designer-api / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / designer / api / repository / ResourceDictionaryRepositoryTest.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.BluePrintProperties
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.blueprintsprocessor.designer.api.domain.ResourceDictionary
29 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
30 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceDefinition
31 import org.springframework.beans.factory.annotation.Autowired
32 import org.springframework.test.annotation.Commit
33 import org.springframework.test.context.ContextConfiguration
34 import org.springframework.test.context.TestPropertySource
35 import org.springframework.test.context.junit4.SpringRunner
36 import org.springframework.transaction.annotation.Transactional
37
38 @RunWith(SpringRunner::class)
39 @ContextConfiguration(classes = [DesignerApiTestConfiguration::class,
40     BlueprintPropertyConfiguration::class, BluePrintProperties::class, BluePrintDBLibConfiguration::class])
41 @TestPropertySource(locations = ["classpath:application-test.properties"])
42 @FixMethodOrder(MethodSorters.NAME_ASCENDING)
43 class ResourceDictionaryReactRepositoryTest {
44
45     private val sourceName = "test-source"
46
47     @Autowired
48     lateinit var resourceDictionaryRepository: ResourceDictionaryRepository
49
50     @Test
51     @Commit
52     fun test01Save() {
53         val resourceDefinition = JacksonUtils
54                 .readValueFromFile("./../../../../../components/model-catalog/resource-dictionary/starter-dictionary/sample-db-source.json",
55                         ResourceDefinition::class.java)
56         Assert.assertNotNull("Failed to get resourceDefinition from content", resourceDefinition)
57         resourceDefinition!!.name = sourceName
58
59         val resourceDictionary = transformResourceDictionary(resourceDefinition)
60         val dbResourceDictionary = resourceDictionaryRepository.save(resourceDictionary)
61         Assert.assertNotNull("Failed to save ResourceDictionary", dbResourceDictionary)
62     }
63
64     @Test
65     fun test02FindByNameReact() {
66         val dbResourceDictionary = resourceDictionaryRepository.findByName(sourceName)
67         Assert.assertNotNull("Failed to query React Resource Dictionary by Name", dbResourceDictionary)
68     }
69
70     @Test
71     fun test03FindByNameInReact() {
72         val dbResourceDictionaries = resourceDictionaryRepository.findByNameIn(arrayListOf(sourceName))
73         Assert.assertNotNull("Failed to query React Resource Dictionary by Names", dbResourceDictionaries)
74     }
75
76     @Test
77     fun test04FindByTagsContainingIgnoreCaseReact() {
78         val dbTagsResourceDictionaries = resourceDictionaryRepository.findByTagsContainingIgnoreCase(sourceName)
79         Assert.assertNotNull("Failed to query React Resource Dictionary by Tags", dbTagsResourceDictionaries)
80     }
81
82     @Test
83     @Transactional
84     @Commit
85     fun test05Delete() {
86         resourceDictionaryRepository.deleteByName(sourceName)
87     }
88
89     private fun transformResourceDictionary(resourceDefinition: ResourceDefinition): ResourceDictionary {
90         val resourceDictionary = ResourceDictionary()
91         resourceDictionary.name = resourceDefinition.name
92         resourceDictionary.dataType = resourceDefinition.property.type
93         resourceDictionary.description = resourceDefinition.property.description!!
94         resourceDictionary.tags = resourceDefinition.tags!!
95         resourceDictionary.updatedBy = resourceDefinition.updatedBy
96         resourceDictionary.definition = resourceDefinition
97         return resourceDictionary
98     }
99 }