Merge "Reorder modifiers"
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / openecomp / mso / bpmn / mock / StubResponseSNIRO.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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  * ============LICENSE_END=========================================================
17  */
18
19 /*
20  * © 2014 AT&T Intellectual Property. All rights reserved. Used under license from AT&T Intellectual Property.
21  */
22 package org.openecomp.mso.bpmn.mock;
23
24 import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
25 import static com.github.tomakehurst.wiremock.client.WireMock.post;
26 import static com.github.tomakehurst.wiremock.client.WireMock.stubFor;
27 import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo;
28
29 /**
30  * Please describe the StubResponseSNIRO.java class
31  *
32  * @author cb645j
33  */
34 public class StubResponseSNIRO {
35
36         public static void setupAllMocks() {
37
38         }
39
40         public static void mockSNIRO() {
41                 stubFor(post(urlEqualTo("/sniro/api/v2/placement"))
42                                 .willReturn(aResponse()
43                                                 .withStatus(202)
44                                                 .withHeader("Content-Type", "application/json")));
45         }
46
47         public static void mockSNIRO(String responseFile) {
48                 stubFor(post(urlEqualTo("/sniro/api/v2/placement"))
49                                 .willReturn(aResponse()
50                                                 .withStatus(202)
51                                                 .withHeader("Content-Type", "application/json")
52                                                 .withBodyFile(responseFile)));
53         }
54
55         public static void mockSNIRO_400() {
56                 stubFor(post(urlEqualTo("/sniro/api/v2/placement"))
57                                 .willReturn(aResponse()
58                                                 .withStatus(400)
59                                                 .withHeader("Content-Type", "application/json")));
60         }
61
62         public static void mockSNIRO_500() {
63                 stubFor(post(urlEqualTo("/sniro/api/v2/placement"))
64                                 .willReturn(aResponse()
65                                                 .withStatus(500)
66                                                 .withHeader("Content-Type", "application/json")));
67         }
68
69 }