ce20611688f507f50869718392f09971b6b92f3b
[ccsdk/cds.git] /
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 com.nhaarman.mockitokotlin2.any
28 import com.nhaarman.mockitokotlin2.eq
29 import org.yaml.snakeyaml.Yaml
30 import java.nio.file.Path
31
32 data class ProcessDefinition(val name: String, val request: JsonNode, val expectedResponse: JsonNode,
33                              val responseNormalizerSpec: JsonNode = MissingNode.getInstance())
34
35 data class RequestDefinition(val method: String,
36                              @JsonDeserialize(using = PathDeserializer::class)
37                              val path: String,
38                              @JsonAlias("content-type")
39                              val contentType: String? = null,
40                              val body: JsonNode = MissingNode.getInstance()) {
41     fun requestHeadersMatcher(): Map<String, String> {
42         return if (contentType != null) eq(mapOf("Content-Type" to contentType)) else any()
43     }
44 }
45
46 data class ResponseDefinition(val status: Int = 200, val body: JsonNode = MissingNode.getInstance()) {
47     companion object {
48         val DEFAULT_RESPONSE = ResponseDefinition()
49     }
50 }
51
52 data class ExpectationDefinition(val request: RequestDefinition,
53                                  val response: ResponseDefinition = ResponseDefinition.DEFAULT_RESPONSE)
54
55 data class ServiceDefinition(val selector: String, val expectations: List<ExpectationDefinition>)
56
57 data class UatDefinition(val processes: List<ProcessDefinition>,
58                          @JsonAlias("external-services")
59                          val externalServices: List<ServiceDefinition> = emptyList()) {
60
61     companion object {
62         fun load(mapper: ObjectMapper, path: Path): UatDefinition {
63             return path.toFile().reader().use { reader ->
64                 mapper.convertValue(Yaml().load(reader), UatDefinition::class.java)
65             }
66         }
67     }
68 }