Update versions for London
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / designer-api / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / designer / api / repository / ResourceDictionaryReactRepositoryTest.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.ResourceDictionary
26 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
27 import org.onap.ccsdk.cds.controllerblueprints.resource.dict.ResourceDefinition
28 import org.springframework.beans.factory.annotation.Autowired
29 import org.springframework.test.annotation.Commit
30 import org.springframework.test.context.ContextConfiguration
31 import org.springframework.test.context.TestPropertySource
32 import org.springframework.test.context.junit4.SpringRunner
33 import org.springframework.transaction.annotation.Transactional
34
35 @RunWith(SpringRunner::class)
36 @ContextConfiguration(
37     classes = [DesignerApiTestConfiguration::class]
38 )
39 @TestPropertySource(locations = ["classpath:application-test.properties"])
40 @FixMethodOrder(MethodSorters.NAME_ASCENDING)
41 class ResourceDictionaryReactRepositoryTest {
42
43     private val sourceName = "test-source"
44
45     @Autowired
46     lateinit var resourceDictionaryRepository: ResourceDictionaryRepository
47
48     @Test
49     @Commit
50     fun test01Save() {
51         val resourceDefinition = JacksonUtils
52             .readValueFromFile(
53                 "./../../../../../components/model-catalog/resource-dictionary/starter-dictionary/sample-db-source.json",
54                 ResourceDefinition::class.java
55             )
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 }