View Javadoc
1   /*
2    * ====================================================================
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *   http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing,
14   * software distributed under the License is distributed on an
15   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   * KIND, either express or implied.  See the License for the
17   * specific language governing permissions and limitations
18   * under the License.
19   * ====================================================================
20   *
21   * This software consists of voluntary contributions made by many
22   * individuals on behalf of the Apache Software Foundation.  For more
23   * information on the Apache Software Foundation, please see
24   * <http://www.apache.org/>.
25   *
26   */
27  
28  package org.apache.hc.core5.http.impl.io;
29  
30  import java.io.ByteArrayOutputStream;
31  import java.io.OutputStream;
32  
33  import org.apache.hc.core5.http.StreamClosedException;
34  import org.apache.hc.core5.http.io.SessionOutputBuffer;
35  import org.junit.Assert;
36  import org.junit.Test;
37  
38  public class TestContentLengthOutputStream {
39  
40      @Test
41      public void testBasics() throws Exception {
42          final ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
43          final SessionOutputBuffer outbuffer = new SessionOutputBufferImpl(16);
44          final OutputStream out = new ContentLengthOutputStream(outbuffer, outputStream, 15L);
45  
46          final byte[] tmp = new byte[10];
47          out.write(tmp, 0, 10);
48          out.write(1);
49          out.write(tmp, 0, 10);
50          out.write(tmp, 0, 10);
51          out.write(tmp);
52          out.write(1);
53          out.write(2);
54          out.flush();
55          out.close();
56          final byte[] data = outputStream.toByteArray();
57          Assert.assertEquals(15, data.length);
58      }
59  
60      @Test
61      public void testClose() throws Exception {
62          final ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
63          final SessionOutputBuffer outbuffer = new SessionOutputBufferImpl(16);
64          final OutputStream out = new ContentLengthOutputStream(outbuffer, outputStream, 15L);
65          out.close();
66          out.close();
67          final byte[] tmp = new byte[10];
68          try {
69              out.write(tmp);
70              Assert.fail("StreamClosedException expected");
71          } catch (final StreamClosedException expected) {
72          }
73          try {
74              out.write(1);
75              Assert.fail("StreamClosedException expected");
76          } catch (final StreamClosedException expected) {
77          }
78      }
79  
80  }
81