@@ -49,7 +49,7 @@ class SimpleClientHttpResponseTests {
49
49
@ Test // SPR-14040
50
50
public void shouldNotCloseConnectionWhenResponseClosed () throws Exception {
51
51
TestByteArrayInputStream is = new TestByteArrayInputStream ("Spring" .getBytes (StandardCharsets .UTF_8 ));
52
- given (this .connection .getErrorStream ()).willReturn (null );
52
+ given (this .connection .getResponseCode ()).willReturn (200 );
53
53
given (this .connection .getInputStream ()).willReturn (is );
54
54
55
55
InputStream responseStream = this .response .getBody ();
@@ -64,7 +64,7 @@ public void shouldNotCloseConnectionWhenResponseClosed() throws Exception {
64
64
public void shouldDrainStreamWhenResponseClosed () throws Exception {
65
65
byte [] buf = new byte [6 ];
66
66
TestByteArrayInputStream is = new TestByteArrayInputStream ("SpringSpring" .getBytes (StandardCharsets .UTF_8 ));
67
- given (this .connection .getErrorStream ()).willReturn (null );
67
+ given (this .connection .getResponseCode ()).willReturn (200 );
68
68
given (this .connection .getInputStream ()).willReturn (is );
69
69
70
70
InputStream responseStream = this .response .getBody ();
@@ -82,6 +82,7 @@ public void shouldDrainStreamWhenResponseClosed() throws Exception {
82
82
public void shouldDrainErrorStreamWhenResponseClosed () throws Exception {
83
83
byte [] buf = new byte [6 ];
84
84
TestByteArrayInputStream is = new TestByteArrayInputStream ("SpringSpring" .getBytes (StandardCharsets .UTF_8 ));
85
+ given (this .connection .getResponseCode ()).willReturn (404 );
85
86
given (this .connection .getErrorStream ()).willReturn (is );
86
87
87
88
InputStream responseStream = this .response .getBody ();
@@ -98,6 +99,7 @@ public void shouldDrainErrorStreamWhenResponseClosed() throws Exception {
98
99
@ Test // SPR-16773
99
100
public void shouldNotDrainWhenErrorStreamClosed () throws Exception {
100
101
InputStream is = mock ();
102
+ given (this .connection .getResponseCode ()).willReturn (404 );
101
103
given (this .connection .getErrorStream ()).willReturn (is );
102
104
willDoNothing ().given (is ).close ();
103
105
given (is .transferTo (any ())).willCallRealMethod ();
@@ -115,7 +117,7 @@ public void shouldNotDrainWhenErrorStreamClosed() throws Exception {
115
117
@ Test // SPR-17181
116
118
public void shouldDrainResponseEvenIfResponseNotRead () throws Exception {
117
119
TestByteArrayInputStream is = new TestByteArrayInputStream ("SpringSpring" .getBytes (StandardCharsets .UTF_8 ));
118
- given (this .connection .getErrorStream ()).willReturn (null );
120
+ given (this .connection .getResponseCode ()).willReturn (200 );
119
121
given (this .connection .getInputStream ()).willReturn (is );
120
122
121
123
this .response .close ();
0 commit comments