forked from OpenFeign/feign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSOAPFaultDecoderTest.java
More file actions
126 lines (109 loc) · 4.61 KB
/
Copy pathSOAPFaultDecoderTest.java
File metadata and controls
126 lines (109 loc) · 4.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/**
* Copyright 2012-2021 The Feign Authors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package feign.soap;
import static feign.Util.UTF_8;
import java.io.DataInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Collections;
import javax.xml.soap.SOAPConstants;
import javax.xml.ws.soap.SOAPFaultException;
import org.assertj.core.api.Assertions;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import feign.FeignException;
import feign.Request;
import feign.Request.HttpMethod;
import feign.Response;
import feign.Util;
import feign.jaxb.JAXBContextFactory;
@SuppressWarnings("deprecation")
public class SOAPFaultDecoderTest {
@Rule
public final ExpectedException thrown = ExpectedException.none();
@Test
public void soapDecoderThrowsSOAPFaultException() throws IOException {
thrown.expect(SOAPFaultException.class);
thrown.expectMessage("Processing error");
Response response = Response.builder()
.status(200)
.reason("OK")
.request(Request.create(HttpMethod.GET, "/api", Collections.emptyMap(), null, Util.UTF_8))
.headers(Collections.emptyMap())
.body(getResourceBytes("/samples/SOAP_1_2_FAULT.xml"))
.build();
new SOAPDecoder.Builder().withSOAPProtocol(SOAPConstants.SOAP_1_2_PROTOCOL)
.withJAXBContextFactory(new JAXBContextFactory.Builder().build()).build()
.decode(response, Object.class);
}
@Test
public void errorDecoderReturnsSOAPFaultException() throws IOException {
Response response = Response.builder()
.status(400)
.reason("BAD REQUEST")
.request(Request.create(HttpMethod.GET, "/api", Collections.emptyMap(), null, Util.UTF_8))
.headers(Collections.emptyMap())
.body(getResourceBytes("/samples/SOAP_1_1_FAULT.xml"))
.build();
Exception error =
new SOAPErrorDecoder().decode("Service#foo()", response);
Assertions.assertThat(error).isInstanceOf(SOAPFaultException.class)
.hasMessage("Message was not SOAP 1.1 compliant");
}
@Test
public void errorDecoderReturnsFeignExceptionOn503Status() throws IOException {
Response response = Response.builder()
.status(503)
.reason("Service Unavailable")
.request(Request.create(HttpMethod.GET, "/api", Collections.emptyMap(), null, Util.UTF_8))
.headers(Collections.emptyMap())
.body("Service Unavailable", UTF_8)
.build();
Exception error =
new SOAPErrorDecoder().decode("Service#foo()", response);
Assertions.assertThat(error).isInstanceOf(FeignException.class)
.hasMessage(
"[503 Service Unavailable] during [GET] to [/api] [Service#foo()]: [Service Unavailable]");
}
@Test
public void errorDecoderReturnsFeignExceptionOnEmptyFault() throws IOException {
String responseBody = "<?xml version = '1.0' encoding = 'UTF-8'?>\n" +
"<SOAP-ENV:Envelope\n" +
" xmlns:SOAP-ENV = \"http://schemas.xmlsoap.org/soap/envelope/\"\n" +
" xmlns:xsi = \"http://www.w3.org/1999/XMLSchema-instance\"\n" +
" xmlns:xsd = \"http://www.w3.org/1999/XMLSchema\">\n" +
" <SOAP-ENV:Body>\n" +
" </SOAP-ENV:Body>\n" +
"</SOAP-ENV:Envelope>";
Response response = Response.builder()
.status(500)
.reason("Internal Server Error")
.request(Request.create(HttpMethod.GET, "/api", Collections.emptyMap(), null, Util.UTF_8))
.headers(Collections.emptyMap())
.body(responseBody, UTF_8)
.build();
Exception error =
new SOAPErrorDecoder().decode("Service#foo()", response);
Assertions.assertThat(error).isInstanceOf(FeignException.class)
.hasMessage("[500 Internal Server Error] during [GET] to [/api] [Service#foo()]: ["
+ responseBody + "]");
}
private static byte[] getResourceBytes(String resourcePath) throws IOException {
InputStream resourceAsStream = SOAPFaultDecoderTest.class.getResourceAsStream(resourcePath);
byte[] bytes = new byte[resourceAsStream.available()];
new DataInputStream(resourceAsStream).readFully(bytes);
return bytes;
}
}