2 * Copyright © 2017-2018 AT&T Intellectual Property.
3 * Modifications Copyright © 2019 Bell Canada.
4 * Modifications Copyright © 2019 IBM.
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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
19 package org.onap.ccsdk.cds.blueprintsprocessor.selfservice.api
21 import com.google.protobuf.ByteString
22 import io.grpc.testing.GrpcServerRule
25 import org.junit.runner.RunWith
26 import org.onap.ccsdk.cds.blueprintsprocessor.selfservice.api.messaginglib.MessagingControllerTest
27 import org.onap.ccsdk.cds.blueprintsprocessor.selfservice.api.messaginglib.ProducerConfiguration
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.deleteDir
31 import org.onap.ccsdk.cds.controllerblueprints.core.normalizedFile
32 import org.onap.ccsdk.cds.controllerblueprints.management.api.*
33 import org.springframework.beans.factory.annotation.Autowired
34 import org.springframework.boot.autoconfigure.EnableAutoConfiguration
35 import org.springframework.context.annotation.ComponentScan
36 import org.springframework.context.annotation.FilterType
37 import org.springframework.test.annotation.DirtiesContext
38 import org.springframework.test.context.TestPropertySource
39 import org.springframework.test.context.junit4.SpringRunner
40 import kotlin.test.AfterTest
41 import kotlin.test.BeforeTest
42 import kotlin.test.assertEquals
43 import kotlin.test.assertTrue
45 @RunWith(SpringRunner::class)
46 @EnableAutoConfiguration
48 @ComponentScan(basePackages = ["org.onap.ccsdk.cds.blueprintsprocessor", "org.onap.ccsdk.cds.controllerblueprints"],
49 excludeFilters = [ComponentScan.Filter(value = [MessagingConfig::class, MessagingController::class, ProducerConfiguration::class,
50 MessagingControllerTest.ConsumerConfiguration::class, MessagingControllerTest::class], type = FilterType.ASSIGNABLE_TYPE)])
51 @TestPropertySource(locations = ["classpath:application-test.properties"])
52 class BluePrintManagementGRPCHandlerTest {
55 val grpcServerRule = GrpcServerRule().directExecutor()
58 lateinit var bluePrintManagementGRPCHandler: BluePrintManagementGRPCHandler
62 // Create a server, add service, start, and register for automatic graceful shutdown.
63 grpcServerRule.serviceRegistry.addService(bluePrintManagementGRPCHandler)
64 deleteDir("target", "blueprints")
69 deleteDir("target", "blueprints")
73 fun `test upload blueprint`() {
74 val blockingStub = BluePrintManagementServiceGrpc.newBlockingStub(grpcServerRule.channel)
76 val req = createUploadInputRequest(id, UploadAction.PUBLISH.toString())
77 val output = blockingStub.uploadBlueprint(req)
79 assertEquals(200, output.status.code)
80 assertTrue(output.status.message.contains("Successfully uploaded CBA"))
81 assertEquals(id, output.commonHeader.requestId)
85 fun `test delete blueprint`() {
86 val blockingStub = BluePrintManagementServiceGrpc.newBlockingStub(grpcServerRule.channel)
88 val req = createUploadInputRequest(id, UploadAction.DRAFT.toString())
90 var output = blockingStub.uploadBlueprint(req)
91 assertEquals(200, output.status.code)
92 assertTrue(output.status.message.contains("Successfully uploaded CBA"))
93 assertEquals(id, output.commonHeader.requestId)
95 val removeReq = createRemoveInputRequest(id)
96 output = blockingStub.removeBlueprint(removeReq)
97 assertEquals(200, output.status.code)
100 private fun createUploadInputRequest(id: String, action: String): BluePrintUploadInput {
101 val file = normalizedFile("./src/test/resources/test-cba.zip")
102 assertTrue(file.exists(), "couldnt get file ${file.absolutePath}")
104 val commonHeader = CommonHeader
106 .setTimestamp("2012-04-23T18:25:43.511Z")
107 .setOriginatorId("System")
109 .setSubRequestId("1234-56").build()
111 val actionIdentifier = ActionIdentifiers.newBuilder()
112 .setActionName(action)
113 .setBlueprintName("sample")
114 .setBlueprintVersion("1.0.0")
117 val fileChunk = FileChunk.newBuilder().setChunk(ByteString.copyFrom(file.inputStream().readBytes()))
120 return BluePrintUploadInput.newBuilder()
121 .setCommonHeader(commonHeader)
122 .setActionIdentifiers(actionIdentifier)
123 .setFileChunk(fileChunk)
127 private fun createRemoveInputRequest(id: String): BluePrintRemoveInput {
128 val commonHeader = CommonHeader
130 .setTimestamp("2012-04-23T18:25:43.511Z")
131 .setOriginatorId("System")
133 .setSubRequestId("1234-56").build()
135 return BluePrintRemoveInput.newBuilder()
136 .setCommonHeader(commonHeader)
137 .setBlueprintName("sample")
138 .setBlueprintVersion("1.0.0")