View Javadoc
1   /*
2    * Copyright 2002-2014 the original author or authors.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  
17  package org.springframework.http;
18  
19  import java.io.ByteArrayOutputStream;
20  import java.io.IOException;
21  import java.io.OutputStream;
22  import java.nio.charset.Charset;
23  
24  import static org.mockito.Mockito.*;
25  
26  /**
27   * @author Arjen Poutsma
28   */
29  public class MockHttpOutputMessage implements HttpOutputMessage {
30  
31  	private final HttpHeaders headers = new HttpHeaders();
32  
33  	private final ByteArrayOutputStream body = spy(new ByteArrayOutputStream());
34  
35  	private boolean headersWritten = false;
36  
37  	@Override
38  	public HttpHeaders getHeaders() {
39  		return (this.headersWritten ? HttpHeaders.readOnlyHttpHeaders(this.headers) : this.headers);
40  	}
41  
42  	@Override
43  	public OutputStream getBody() throws IOException {
44  		this.headersWritten = true;
45  		return body;
46  	}
47  
48  	public byte[] getBodyAsBytes() {
49  		this.headersWritten = true;
50  		return body.toByteArray();
51  	}
52  
53  	public String getBodyAsString(Charset charset) {
54  		byte[] bytes = getBodyAsBytes();
55  		return new String(bytes, charset);
56  	}
57  }