e1a498a6f1374756fe5c8b6b73ef59a108c30e66
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / selfservice-api / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / selfservice / api / ExecutionServiceControllerTest.kt
1 /*
2  * Copyright © 2017-2018 AT&T Intellectual Property.
3  * Modifications Copyright © 2019 Bell Canada.
4  * Modifications Copyright © 2019 IBM.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18 package org.onap.ccsdk.cds.blueprintsprocessor.selfservice.api
19
20 import kotlinx.coroutines.runBlocking
21 import org.junit.Test
22 import org.junit.runner.RunWith
23 import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintCoreConfiguration
24 import org.onap.ccsdk.cds.blueprintsprocessor.core.api.data.ExecutionServiceInput
25 import org.onap.ccsdk.cds.controllerblueprints.core.deleteDir
26 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintCatalogService
27 import org.onap.ccsdk.cds.controllerblueprints.core.normalizedFile
28 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
29 import org.springframework.beans.factory.annotation.Autowired
30 import org.springframework.boot.autoconfigure.security.SecurityProperties
31 import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
32 import org.springframework.context.annotation.ComponentScan
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.test.web.reactive.server.WebTestClient
37 import org.springframework.web.reactive.function.BodyInserters
38 import java.io.File
39 import java.util.*
40 import kotlin.test.AfterTest
41 import kotlin.test.BeforeTest
42 import kotlin.test.assertTrue
43
44 @RunWith(SpringRunner::class)
45 @WebFluxTest
46 @ContextConfiguration(classes = [ExecutionServiceHandler::class, BluePrintCoreConfiguration::class,
47     BluePrintCatalogService::class, SecurityProperties::class])
48 @ComponentScan(basePackages = ["org.onap.ccsdk.cds.blueprintsprocessor",
49     "org.onap.ccsdk.cds.controllerblueprints"])
50 @TestPropertySource(locations = ["classpath:application-test.properties"])
51 class ExecutionServiceControllerTest {
52
53     @Autowired
54     lateinit var blueprintsProcessorCatalogService: BluePrintCatalogService
55     @Autowired
56     lateinit var webTestClient: WebTestClient
57
58     @BeforeTest
59     fun init() {
60         deleteDir("target", "blueprints")
61     }
62
63     @AfterTest
64     fun cleanDir() {
65         deleteDir("target", "blueprints")
66     }
67
68     @Test
69     fun `test rest process`() {
70         runBlocking {
71             blueprintsProcessorCatalogService.saveToDatabase(UUID.randomUUID().toString(), loadTestCbaFile())
72
73             val executionServiceInput = JacksonUtils
74                     .readValueFromClassPathFile("execution-input/default-input.json",
75                             ExecutionServiceInput::class.java)!!
76
77             webTestClient
78                     .post()
79                     .uri("/api/v1/execution-service/process")
80                     .body(BodyInserters.fromObject(executionServiceInput))
81                     .exchange()
82                     .expectStatus().isOk
83         }
84     }
85
86     @Test
87     fun `rest resource process should return status code 500 in case of server-side exception`() {
88         runBlocking {
89             blueprintsProcessorCatalogService.saveToDatabase(UUID.randomUUID().toString(), loadTestCbaFile())
90
91             val executionServiceInput = JacksonUtils
92                     .readValueFromClassPathFile("execution-input/faulty-input.json",
93                             ExecutionServiceInput::class.java)!!
94
95             webTestClient
96                     .post()
97                     .uri("/api/v1/execution-service/process")
98                     .body(BodyInserters.fromObject(executionServiceInput))
99                     .exchange()
100                     .expectStatus().is5xxServerError
101         }
102     }
103
104     private fun loadTestCbaFile(): File {
105         val testCbaFile = normalizedFile("./src/test/resources/test-cba.zip")
106         assertTrue(testCbaFile.exists(), "couldn't get file ${testCbaFile.absolutePath}")
107         return testCbaFile
108     }
109 }