2 * Copyright © 2019-2020 Orange.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.onap.ccsdk.cds.blueprintsprocessor.healthapi
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
35 *Unit tests for making sure that two endpoints is up and running
37 * @author Shaaban Ebrahim
40 @RunWith(SpringRunner::class)
42 @ContextConfiguration(
43 classes = [BluePrintRuntimeService::class, BluePrintCoreConfiguration::class,
44 BluePrintCatalogService::class, SecurityProperties::class, ComponentScriptExecutor::class]
46 @ComponentScan(basePackages = ["org.onap.ccsdk.cds.blueprintsprocessor", "org.onap.ccsdk.cds.controllerblueprints"])
47 @TestPropertySource(locations = ["classpath:application-test.properties"])
48 class HealthCheckApplicationTests {
51 lateinit var webTestClient: WebTestClient
54 fun testHealthApiUp() {
55 webTestClient.get().uri("/api/v1/combinedHealth")
57 .expectStatus().is2xxSuccessful
61 fun testMetricsApiUp() {
62 webTestClient.get().uri("/api/v1/combinedMetrics")
64 .expectStatus().is2xxSuccessful