Skip to content

Commit 54c37ff

Browse files
committed
Check response code in SimpleClientHttpResponse::getBody
The error stream can be null with an empty body, so check the response code instead. Closes gh-33020
1 parent acf7340 commit 54c37ff

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

spring-web/src/main/java/org/springframework/http/client/SimpleClientHttpResponse.java

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2023 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -85,8 +85,15 @@ public HttpHeaders getHeaders() {
8585

8686
@Override
8787
public InputStream getBody() throws IOException {
88-
InputStream errorStream = this.connection.getErrorStream();
89-
this.responseStream = (errorStream != null ? errorStream : this.connection.getInputStream());
88+
if (this.responseStream == null) {
89+
if (this.connection.getResponseCode() >= 400) {
90+
InputStream errorStream = this.connection.getErrorStream();
91+
this.responseStream = (errorStream != null) ? errorStream : InputStream.nullInputStream();
92+
}
93+
else {
94+
this.responseStream = this.connection.getInputStream();
95+
}
96+
}
9097
return this.responseStream;
9198
}
9299

spring-web/src/test/java/org/springframework/http/client/SimpleClientHttpResponseTests.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class SimpleClientHttpResponseTests {
4949
@Test // SPR-14040
5050
public void shouldNotCloseConnectionWhenResponseClosed() throws Exception {
5151
TestByteArrayInputStream is = new TestByteArrayInputStream("Spring".getBytes(StandardCharsets.UTF_8));
52-
given(this.connection.getErrorStream()).willReturn(null);
52+
given(this.connection.getResponseCode()).willReturn(200);
5353
given(this.connection.getInputStream()).willReturn(is);
5454

5555
InputStream responseStream = this.response.getBody();
@@ -64,7 +64,7 @@ public void shouldNotCloseConnectionWhenResponseClosed() throws Exception {
6464
public void shouldDrainStreamWhenResponseClosed() throws Exception {
6565
byte[] buf = new byte[6];
6666
TestByteArrayInputStream is = new TestByteArrayInputStream("SpringSpring".getBytes(StandardCharsets.UTF_8));
67-
given(this.connection.getErrorStream()).willReturn(null);
67+
given(this.connection.getResponseCode()).willReturn(200);
6868
given(this.connection.getInputStream()).willReturn(is);
6969

7070
InputStream responseStream = this.response.getBody();
@@ -82,6 +82,7 @@ public void shouldDrainStreamWhenResponseClosed() throws Exception {
8282
public void shouldDrainErrorStreamWhenResponseClosed() throws Exception {
8383
byte[] buf = new byte[6];
8484
TestByteArrayInputStream is = new TestByteArrayInputStream("SpringSpring".getBytes(StandardCharsets.UTF_8));
85+
given(this.connection.getResponseCode()).willReturn(404);
8586
given(this.connection.getErrorStream()).willReturn(is);
8687

8788
InputStream responseStream = this.response.getBody();
@@ -98,6 +99,7 @@ public void shouldDrainErrorStreamWhenResponseClosed() throws Exception {
9899
@Test // SPR-16773
99100
public void shouldNotDrainWhenErrorStreamClosed() throws Exception {
100101
InputStream is = mock();
102+
given(this.connection.getResponseCode()).willReturn(404);
101103
given(this.connection.getErrorStream()).willReturn(is);
102104
willDoNothing().given(is).close();
103105
given(is.transferTo(any())).willCallRealMethod();
@@ -115,7 +117,7 @@ public void shouldNotDrainWhenErrorStreamClosed() throws Exception {
115117
@Test // SPR-17181
116118
public void shouldDrainResponseEvenIfResponseNotRead() throws Exception {
117119
TestByteArrayInputStream is = new TestByteArrayInputStream("SpringSpring".getBytes(StandardCharsets.UTF_8));
118-
given(this.connection.getErrorStream()).willReturn(null);
120+
given(this.connection.getResponseCode()).willReturn(200);
119121
given(this.connection.getInputStream()).willReturn(is);
120122

121123
this.response.close();

0 commit comments

Comments
 (0)