CCSDK-1864 : PNF Use Case Move from Jython to Kotlin using CDS Framework
[ccsdk/cds.git] / ms / blueprintsprocessor / application / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / uat / BlueprintsAcceptanceTest.kt
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
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  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.ccsdk.cds.blueprintsprocessor.uat
21
22 import kotlinx.coroutines.runBlocking
23 import org.junit.ClassRule
24 import org.junit.Rule
25 import org.junit.runner.RunWith
26 import org.junit.runners.Parameterized
27 import org.onap.ccsdk.cds.controllerblueprints.core.BluePrintConstants.UAT_SPECIFICATION_FILE
28 import org.onap.ccsdk.cds.controllerblueprints.core.utils.BluePrintArchiveUtils.Companion.compressToBytes
29 import org.springframework.beans.factory.annotation.Autowired
30 import org.springframework.test.context.junit4.rules.SpringClassRule
31 import org.springframework.test.context.junit4.rules.SpringMethodRule
32 import java.io.File
33 import java.nio.file.FileSystem
34 import java.nio.file.FileSystems
35 import kotlin.test.BeforeTest
36 import kotlin.test.Test
37
38 // Only one runner can be configured with jUnit 4. We had to replace the SpringRunner by equivalent jUnit rules.
39 // See more on https://docs.spring.io/autorepo/docs/spring-framework/current/spring-framework-reference/testing.html#testcontext-junit4-rules
40 @RunWith(Parameterized::class)
41 class BlueprintsAcceptanceTest(@Suppress("unused") private val blueprintName: String, // readable test description
42                                private val rootFs: FileSystem) : BaseUatTest() {
43
44     companion object {
45
46         @ClassRule
47         @JvmField
48         val springClassRule = SpringClassRule()
49
50         /**
51          * Generates the parameters to create a test instance for every blueprint found under UAT_BLUEPRINTS_BASE_DIR
52          * that contains the proper UAT definition file.
53          */
54         @Parameterized.Parameters(name = "{index} {0}")
55         @JvmStatic
56         fun scanUatEmpoweredBlueprints(): List<Array<Any>> {
57             return (File(UAT_BLUEPRINTS_BASE_DIR)
58                     .listFiles { file -> file.isDirectory && File(file, UAT_SPECIFICATION_FILE).isFile }
59                     ?: throw RuntimeException("Failed to scan $UAT_BLUEPRINTS_BASE_DIR"))
60                     .map { file ->
61                         arrayOf(
62                                 file.nameWithoutExtension,
63                                 FileSystems.newFileSystem(file.canonicalFile.toPath(), null)
64                         )
65                     }
66         }
67     }
68
69     @Rule
70     @JvmField
71     val springMethodRule = SpringMethodRule()
72
73     @Autowired
74     // Bean is created programmatically by {@link WorkingFoldersInitializer#initialize(String)}
75     @Suppress("SpringJavaInjectionPointsAutowiringInspection")
76     lateinit var tempFolder: ExtendedTemporaryFolder
77
78     @Autowired
79     lateinit var uatExecutor: UatExecutor
80
81     @BeforeTest
82     fun cleanupTemporaryFolder() {
83         tempFolder.deleteAllFiles()
84     }
85
86     @Test
87     fun runUat() {
88         runBlocking {
89             val uatSpec = rootFs.getPath(UAT_SPECIFICATION_FILE).toFile().readText()
90             val cbaBytes = compressToBytes(rootFs.getPath("/"))
91             uatExecutor.execute(uatSpec, cbaBytes)
92         }
93     }
94 }