UAT: fix validation of request headers
[ccsdk/cds.git] / ms / blueprintsprocessor / application / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / UatDefinition.kt
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.ccsdk.cds.blueprintsprocessor
21
22 import com.fasterxml.jackson.annotation.JsonAlias
23 import com.fasterxml.jackson.databind.JsonNode
24 import com.fasterxml.jackson.databind.ObjectMapper
25 import com.fasterxml.jackson.databind.annotation.JsonDeserialize
26 import com.fasterxml.jackson.databind.node.MissingNode
27 import org.yaml.snakeyaml.Yaml
28 import java.nio.file.Path
29
30 data class ProcessDefinition(val name: String, val request: JsonNode, val expectedResponse: JsonNode,
31                              val responseNormalizerSpec: JsonNode = MissingNode.getInstance())
32
33 data class RequestDefinition(val method: String,
34                              @JsonDeserialize(using = PathDeserializer::class)
35                              val path: String,
36                              val headers: Map<String, String> = emptyMap(),
37                              val body: JsonNode = MissingNode.getInstance())
38
39 data class ResponseDefinition(val status: Int = 200, val body: JsonNode = MissingNode.getInstance()) {
40     companion object {
41         val DEFAULT_RESPONSE = ResponseDefinition()
42     }
43 }
44
45 data class ExpectationDefinition(val request: RequestDefinition,
46                                  val response: ResponseDefinition = ResponseDefinition.DEFAULT_RESPONSE)
47
48 data class ServiceDefinition(val selector: String, val expectations: List<ExpectationDefinition>)
49
50 data class UatDefinition(val processes: List<ProcessDefinition>,
51                          @JsonAlias("external-services")
52                          val externalServices: List<ServiceDefinition> = emptyList()) {
53
54     companion object {
55         fun load(mapper: ObjectMapper, path: Path): UatDefinition {
56             return path.toFile().reader().use { reader ->
57                 mapper.convertValue(Yaml().load(reader), UatDefinition::class.java)
58             }
59         }
60     }
61 }