335fd94f5bf6edaccef8382416cbf862cbd10af6
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / bpmn / mock / StubResponseOof.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.bpmn.mock;
22
23 import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
24 import static com.github.tomakehurst.wiremock.client.WireMock.post;
25 import static com.github.tomakehurst.wiremock.client.WireMock.stubFor;
26 import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo;
27
28 /**
29  * StubResponseOof.java class
30  */
31 public class StubResponseOof {
32
33     public static void setupAllMocks() {
34
35     }
36
37     public static void mockOof() {
38         stubFor(post(urlEqualTo("/api/oof/v1/placement"))
39                 .willReturn(aResponse()
40                         .withStatus(202)
41                         .withHeader("Content-Type", "application/json")));
42     }
43
44     public static void mockOof(String responseFile) {
45         stubFor(post(urlEqualTo("/api/oof/v1/placement"))
46                 .willReturn(aResponse()
47                         .withStatus(202)
48                         .withHeader("Content-Type", "application/json")
49                         .withBodyFile(responseFile)));
50     }
51
52     public static void mockOof_400() {
53         stubFor(post(urlEqualTo("/api/oof/v1/placement"))
54                 .willReturn(aResponse()
55                         .withStatus(400)
56                         .withHeader("Content-Type", "application/json")));
57     }
58
59     public static void mockOof_500() {
60         stubFor(post(urlEqualTo("/api/oof/v1/placement"))
61                 .willReturn(aResponse()
62                         .withStatus(500)
63                         .withHeader("Content-Type", "application/json")));
64     }
65
66 }