af23e7902b874bb7de9bf15871ea76baa1a3c127
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / selfservice-api / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / selfservice / api / BluePrintProcessingGRPCHandlerTest.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
19 package org.onap.ccsdk.cds.blueprintsprocessor.selfservice.api
20
21 import com.google.protobuf.util.JsonFormat
22 import io.grpc.stub.StreamObserver
23 import io.grpc.testing.GrpcServerRule
24 import org.junit.Assert
25 import org.junit.Rule
26 import org.junit.Test
27 import org.junit.runner.RunWith
28 import org.onap.ccsdk.cds.controllerblueprints.common.api.ActionIdentifiers
29 import org.onap.ccsdk.cds.controllerblueprints.common.api.CommonHeader
30 import org.onap.ccsdk.cds.controllerblueprints.core.utils.JacksonUtils
31 import org.onap.ccsdk.cds.controllerblueprints.processing.api.BluePrintProcessingServiceGrpc
32 import org.onap.ccsdk.cds.controllerblueprints.processing.api.ExecutionServiceInput
33 import org.onap.ccsdk.cds.controllerblueprints.processing.api.ExecutionServiceOutput
34 import org.slf4j.LoggerFactory
35 import org.springframework.beans.factory.annotation.Autowired
36 import org.springframework.test.annotation.DirtiesContext
37 import org.springframework.test.context.ContextConfiguration
38 import org.springframework.test.context.TestPropertySource
39 import org.springframework.test.context.junit4.SpringRunner
40 import kotlin.test.BeforeTest
41
42 @RunWith(SpringRunner::class)
43 @DirtiesContext
44 @ContextConfiguration(
45     classes = [SelfServiceApiTestConfiguration::class, TestDatabaseConfiguration::class]
46 )
47 @TestPropertySource(locations = ["classpath:application-test.properties"])
48 class BluePrintProcessingGRPCHandlerTest {
49
50     private val log = LoggerFactory.getLogger(BluePrintProcessingGRPCHandlerTest::class.java)
51
52     @get:Rule
53     val grpcServerRule = GrpcServerRule().directExecutor()
54
55     @Autowired
56     lateinit var bluePrintProcessingGRPCHandler: BluePrintProcessingGRPCHandler
57
58     lateinit var requestObs: StreamObserver<ExecutionServiceInput>
59
60     @BeforeTest
61     fun init() {
62         grpcServerRule.serviceRegistry.addService(bluePrintProcessingGRPCHandler)
63
64         val blockingStub = BluePrintProcessingServiceGrpc.newStub(grpcServerRule.channel)
65
66         requestObs = blockingStub.process(object : StreamObserver<ExecutionServiceOutput> {
67             override fun onNext(executionServiceOuput: ExecutionServiceOutput) {
68                 log.debug("onNext {}", executionServiceOuput)
69                 if ("1234" == executionServiceOuput.commonHeader.requestId) {
70                     Assert.assertEquals(
71                         "Failed to process request, \'actionIdentifiers.mode\' not specified. Valid value are: \'sync\' or \'async\'.",
72                         executionServiceOuput.status.errorMessage
73                     )
74                 }
75             }
76
77             override fun onError(error: Throwable) {
78                 log.debug("Fail to process message", error)
79                 Assert.assertEquals("INTERNAL: Could not find blueprint : from database", error.message)
80             }
81
82             override fun onCompleted() {
83                 log.info("Done")
84             }
85         })
86     }
87
88     @Test
89     fun testSelfServiceGRPCHandler() {
90         val commonHeader = CommonHeader.newBuilder()
91             .setTimestamp("2012-04-23T18:25:43.511Z")
92             .setOriginatorId("System")
93             .setRequestId("1234")
94             .setSubRequestId("1234-56").build()
95
96         val jsonContent = JacksonUtils.getClassPathFileContent("execution-input/sample-payload.json")
97         val payloadBuilder = ExecutionServiceInput.newBuilder().payloadBuilder
98         JsonFormat.parser().merge(jsonContent, payloadBuilder)
99
100         val input = ExecutionServiceInput.newBuilder()
101             .setCommonHeader(commonHeader)
102             .setPayload(payloadBuilder.build())
103             .build()
104
105         requestObs.onNext(input)
106
107         val commonHeader2 = CommonHeader.newBuilder()
108             .setTimestamp("2012-04-23T18:25:43.511Z")
109             .setOriginatorId("System")
110             .setRequestId("2345")
111             .setSubRequestId("1234-56").build()
112
113         val actionIdentifier = ActionIdentifiers.newBuilder().setMode("sync").build()
114
115         val input2 = ExecutionServiceInput.newBuilder()
116             .setCommonHeader(commonHeader2)
117             .setActionIdentifiers(actionIdentifier)
118             .setPayload(payloadBuilder.build())
119             .build()
120
121         requestObs.onNext(input2)
122
123         requestObs.onCompleted()
124     }
125 }