Migrate "ms/controllerblueprints" from ccsdk/apps
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / commons / db-lib / src / test / kotlin / org / onap / ccsdk / apps / blueprintsprocessor / db / BlueprintProcessorCatalogServiceImplTest.kt
1 /*
2  * Copyright (C) 2019 Bell Canada.
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 package org.onap.ccsdk.apps.blueprintsprocessor.db
17
18 import org.junit.Test
19 import org.junit.runner.RunWith
20 import org.onap.ccsdk.apps.controllerblueprints.core.interfaces.BluePrintCatalogService
21 import org.springframework.beans.factory.annotation.Autowired
22 import org.springframework.boot.autoconfigure.EnableAutoConfiguration
23 import org.springframework.context.annotation.ComponentScan
24 import org.springframework.test.context.TestPropertySource
25 import org.springframework.test.context.junit4.SpringRunner
26 import java.io.File
27 import java.nio.file.Paths
28 import kotlin.test.assertTrue
29
30 @RunWith(SpringRunner::class)
31 @EnableAutoConfiguration
32 @ComponentScan(basePackages = ["org.onap.ccsdk.apps.blueprintsprocessor", "org.onap.ccsdk.apps.controllerblueprints"])
33 @TestPropertySource(locations = ["classpath:application-test.properties"])
34 class BlueprintProcessorCatalogServiceImplTest {
35
36     @Autowired
37     lateinit var blueprintCatalog: BluePrintCatalogService
38
39     @Test
40     fun `test catalog service`() {
41         val file = Paths.get("./src/test/resources/test-cba.zip").toFile()
42         assertTrue(file.exists(), "couldnt get file ${file.absolutePath}")
43
44         blueprintCatalog.saveToDatabase(file)
45
46         blueprintCatalog.getFromDatabase("baseconfiguration", "1.0.0")
47
48         blueprintCatalog.deleteFromDatabase("baseconfiguration", "1.0.0")
49
50         File("./src/test/resources/baseconfiguration").deleteRecursively()
51     }
52 }