/* * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. * */ package org.apache.ogt.http.impl.io; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStream; import junit.framework.TestCase; import org.apache.ogt.http.impl.io.ContentLengthOutputStream; import org.apache.ogt.http.mockup.SessionOutputBufferMockup; public class TestContentLengthOutputStream extends TestCase { public TestContentLengthOutputStream(String testName) { super(testName); } public void testConstructors() throws Exception { new ContentLengthOutputStream(new SessionOutputBufferMockup(), 10L); try { new ContentLengthOutputStream(null, 10L); fail("IllegalArgumentException should have been thrown"); } catch (IllegalArgumentException ex) { // expected } try { new ContentLengthOutputStream(new SessionOutputBufferMockup(), -10); fail("IllegalArgumentException should have been thrown"); } catch (IllegalArgumentException ex) { // expected } } public void testBasics() throws Exception { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); SessionOutputBufferMockup datatransmitter = new SessionOutputBufferMockup(buffer); OutputStream out = new ContentLengthOutputStream(datatransmitter, 15L); byte[] tmp = new byte[10]; out.write(tmp, 0, 10); out.write(1); out.write(tmp, 0, 10); out.write(tmp, 0, 10); out.write(tmp); out.write(1); out.write(2); out.flush(); out.close(); byte[] data = datatransmitter.getData(); assertEquals(15, data.length); } public void testClose() throws Exception { ByteArrayOutputStream buffer = new ByteArrayOutputStream(); SessionOutputBufferMockup datatransmitter = new SessionOutputBufferMockup(buffer); OutputStream out = new ContentLengthOutputStream(datatransmitter, 15L); out.close(); out.close(); byte[] tmp = new byte[10]; try { out.write(tmp); fail("IOException should have been thrown"); } catch (IOException ex) { // expected } try { out.write(1); fail("IOException should have been thrown"); } catch (IOException ex) { // expected } } }