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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
20 package org.onap.ccsdk.cds.blueprintsprocessor
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
32 data class ProcessDefinition(val name: String, val request: JsonNode, val expectedResponse: JsonNode,
33 val responseNormalizerSpec: JsonNode = MissingNode.getInstance())
35 data class RequestDefinition(val method: String,
36 @JsonDeserialize(using = PathDeserializer::class)
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()
46 data class ResponseDefinition(val status: Int = 200, val body: JsonNode = MissingNode.getInstance()) {
48 val DEFAULT_RESPONSE = ResponseDefinition()
52 data class ExpectationDefinition(val request: RequestDefinition,
53 val response: ResponseDefinition = ResponseDefinition.DEFAULT_RESPONSE)
55 data class ServiceDefinition(val selector: String, val expectations: List<ExpectationDefinition>)
57 data class UatDefinition(val processes: List<ProcessDefinition>,
58 @JsonAlias("external-services")
59 val externalServices: List<ServiceDefinition> = emptyList()) {
62 fun load(mapper: ObjectMapper, path: Path): UatDefinition {
63 return path.toFile().reader().use { reader ->
64 mapper.convertValue(Yaml().load(reader), UatDefinition::class.java)