Add declarative acceptance tests
[ccsdk/cds.git] / ms / controllerblueprints / modules / service / src / test / kotlin / org / onap / ccsdk / cds / controllerblueprints / service / enhancer / BluePrintEnhancerServiceImplTest.kt
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  * Modifications Copyright © 2018 IBM.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 package org.onap.ccsdk.cds.controllerblueprints.service.enhancer
19
20 import kotlinx.coroutines.runBlocking
21 import org.junit.Assert
22 import org.junit.Test
23 import org.junit.runner.RunWith
24 import org.onap.ccsdk.cds.controllerblueprints.TestApplication
25 import org.onap.ccsdk.cds.controllerblueprints.core.deleteDir
26 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintEnhancerService
27 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintValidatorService
28 import org.onap.ccsdk.cds.controllerblueprints.core.normalizedPathName
29 import org.onap.ccsdk.cds.controllerblueprints.service.load.ModelTypeLoadService
30 import org.onap.ccsdk.cds.controllerblueprints.service.load.ResourceDictionaryLoadService
31 import org.springframework.beans.factory.annotation.Autowired
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(classes = arrayOf(TestApplication::class))
38 @TestPropertySource(locations = arrayOf("classpath:application.properties"))
39 class BluePrintEnhancerServiceImplTest {
40
41     @Autowired
42     lateinit var modelTypeLoadService: ModelTypeLoadService
43
44     @Autowired
45     lateinit var resourceDictionaryLoadService: ResourceDictionaryLoadService
46
47     @Autowired
48     lateinit var bluePrintEnhancerService: BluePrintEnhancerService
49
50     @Autowired
51     lateinit var bluePrintValidatorService: BluePrintValidatorService
52
53
54     @Test
55     @Throws(Exception::class)
56     fun testEnhancementAndValidation() {
57
58         runBlocking {
59             modelTypeLoadService.loadPathModelType("./../../../../components/model-catalog/definition-type/starter-type")
60
61             val dictPaths: MutableList<String> = arrayListOf()
62             dictPaths.add("./../../../../components/model-catalog/resource-dictionary/starter-dictionary")
63             dictPaths.add("./../../../../components/model-catalog/resource-dictionary/test-dictionary")
64             resourceDictionaryLoadService.loadPathsResourceDictionary(dictPaths)
65
66             testBaseConfigEnhancementAndValidation()
67             testVFWEnhancementAndValidation()
68             testGoldenEnhancementAndValidation()
69             testRemoteScriptsEnhancementAndValidation()
70             testCapabilityCliEnhancementAndValidation()
71         }
72     }
73
74     fun testBaseConfigEnhancementAndValidation() {
75         val basePath = "./../../../../components/model-catalog/blueprint-model/test-blueprint/baseconfiguration"
76         testComponentInvokeEnhancementAndValidation(basePath, "base-enhance")
77     }
78
79     fun testVFWEnhancementAndValidation() {
80         val basePath = "./../../../../components/model-catalog/blueprint-model/service-blueprint/vFW"
81         testComponentInvokeEnhancementAndValidation(basePath, "vFW-enhance")
82     }
83
84     fun testGoldenEnhancementAndValidation() {
85         val basePath = "./../../../../components/model-catalog/blueprint-model/test-blueprint/golden"
86         testComponentInvokeEnhancementAndValidation(basePath, "golden-enhance")
87     }
88
89     fun testRemoteScriptsEnhancementAndValidation() {
90         val basePath = "./../../../../components/model-catalog/blueprint-model/test-blueprint/remote_scripts"
91         testComponentInvokeEnhancementAndValidation(basePath, "remote_scripts-enhance")
92
93     }
94
95     fun testCapabilityCliEnhancementAndValidation() {
96         val basePath = "./../../../../components/model-catalog/blueprint-model/test-blueprint/capability_cli"
97         testComponentInvokeEnhancementAndValidation(basePath, "capability_cli-enhance")
98     }
99
100     private fun testComponentInvokeEnhancementAndValidation(basePath: String, targetDirName: String) {
101         runBlocking {
102             val targetPath = normalizedPathName("target/blueprints/enrichment", targetDirName)
103
104             deleteDir(targetPath)
105
106             val bluePrintContext = bluePrintEnhancerService.enhance(basePath, targetPath)
107             Assert.assertNotNull("failed to get blueprintContext ", bluePrintContext)
108
109             // Validate the Generated BluePrints
110             val valid = bluePrintValidatorService.validateBluePrints(targetPath)
111             Assert.assertTrue("blueprint($basePath) validation failed ", valid)
112
113             // Enable this to get the enhanced zip file
114 //            val compressFile = normalizedFile("target/blueprints/enrichment", "$targetDirName.zip")
115 //            normalizedFile(targetPath).compress(compressFile)
116
117             deleteDir(targetPath)
118         }
119     }
120
121
122 }