5a1999ec1c482164fc2a8d4d4a739a6928bcf8e6
[ccsdk/cds.git] /
1 /*
2  * Copyright © 2019-2020 Orange.
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.healthapi
18
19 import org.junit.Test
20 import org.junit.runner.RunWith
21 import org.onap.ccsdk.cds.blueprintsprocessor.core.BluePrintCoreConfiguration
22 import org.onap.ccsdk.cds.blueprintsprocessor.services.execution.ComponentScriptExecutor
23 import org.onap.ccsdk.cds.controllerblueprints.core.interfaces.BluePrintCatalogService
24 import org.onap.ccsdk.cds.controllerblueprints.core.service.BluePrintRuntimeService
25 import org.springframework.beans.factory.annotation.Autowired
26 import org.springframework.boot.autoconfigure.security.SecurityProperties
27 import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest
28 import org.springframework.context.annotation.ComponentScan
29 import org.springframework.test.context.ContextConfiguration
30 import org.springframework.test.context.TestPropertySource
31 import org.springframework.test.context.junit4.SpringRunner
32 import org.springframework.test.web.reactive.server.WebTestClient
33
34 /**
35  *Unit tests for making sure that two endpoints is up and running
36  *
37  * @author Shaaban Ebrahim
38  * @version 1.0
39  */
40 @RunWith(SpringRunner::class)
41 @WebFluxTest
42 @ContextConfiguration(
43     classes = [BluePrintRuntimeService::class, BluePrintCoreConfiguration::class,
44         BluePrintCatalogService::class, SecurityProperties::class, ComponentScriptExecutor::class]
45 )
46 @ComponentScan(basePackages = ["org.onap.ccsdk.cds.blueprintsprocessor", "org.onap.ccsdk.cds.controllerblueprints"])
47 @TestPropertySource(locations = ["classpath:application-test.properties"])
48 class HealthCheckApplicationTests {
49
50     @Autowired
51     lateinit var webTestClient: WebTestClient
52
53     @Test
54     fun testHealthApiUp() {
55         webTestClient.get().uri("/api/v1/combinedHealth")
56             .exchange()
57             .expectStatus().is2xxSuccessful
58     }
59
60     @Test
61     fun testMetricsApiUp() {
62         webTestClient.get().uri("/api/v1/combinedMetrics")
63             .exchange()
64             .expectStatus().is2xxSuccessful
65     }
66 }