~ubuntu-branches/ubuntu/trusty/httpcomponents-core/trusty

« back to all changes in this revision

Viewing changes to httpcore/src/test/java/org/apache/http/entity/TestHttpEntityWrapper.java

  • Committer: Bazaar Package Importer
  • Author(s): David Paleino
  • Date: 2010-06-12 08:37:34 UTC
  • Revision ID: james.westby@ubuntu.com-20100612083734-1y8kp6qm4sjk60az
Tags: upstream-4.0.1
ImportĀ upstreamĀ versionĀ 4.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $HeadURL: https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.0.1/httpcore/src/test/java/org/apache/http/entity/TestHttpEntityWrapper.java $
 
3
 * $Revision: 744517 $
 
4
 * $Date: 2009-02-14 17:39:33 +0100 (Sat, 14 Feb 2009) $
 
5
 * 
 
6
 * ====================================================================
 
7
 * Licensed to the Apache Software Foundation (ASF) under one
 
8
 * or more contributor license agreements.  See the NOTICE file
 
9
 * distributed with this work for additional information
 
10
 * regarding copyright ownership.  The ASF licenses this file
 
11
 * to you under the Apache License, Version 2.0 (the
 
12
 * "License"); you may not use this file except in compliance
 
13
 * with the License.  You may obtain a copy of the License at
 
14
 *
 
15
 *   http://www.apache.org/licenses/LICENSE-2.0
 
16
 *
 
17
 * Unless required by applicable law or agreed to in writing,
 
18
 * software distributed under the License is distributed on an
 
19
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 
20
 * KIND, either express or implied.  See the License for the
 
21
 * specific language governing permissions and limitations
 
22
 * under the License.
 
23
 * ====================================================================
 
24
 *
 
25
 * This software consists of voluntary contributions made by many
 
26
 * individuals on behalf of the Apache Software Foundation.  For more
 
27
 * information on the Apache Software Foundation, please see
 
28
 * <http://www.apache.org/>.
 
29
 *
 
30
 */
 
31
 
 
32
package org.apache.http.entity;
 
33
 
 
34
import java.io.ByteArrayOutputStream;
 
35
 
 
36
import junit.framework.Test;
 
37
import junit.framework.TestCase;
 
38
import junit.framework.TestSuite;
 
39
 
 
40
import org.apache.http.protocol.HTTP;
 
41
 
 
42
/**
 
43
 * Unit tests for {@link HttpEntityWrapper}.
 
44
 *
 
45
 */
 
46
public class TestHttpEntityWrapper extends TestCase {
 
47
 
 
48
    public TestHttpEntityWrapper(String testName) {
 
49
        super(testName);
 
50
    }
 
51
 
 
52
    public static void main(String args[]) {
 
53
        String[] testCaseName = { TestHttpEntityWrapper.class.getName() };
 
54
        junit.textui.TestRunner.main(testCaseName);
 
55
    }
 
56
 
 
57
    public static Test suite() {
 
58
        return new TestSuite(TestHttpEntityWrapper.class);
 
59
    }
 
60
 
 
61
    public void testBasics() throws Exception {
 
62
        String s = "Message content";
 
63
        StringEntity httpentity = new StringEntity(s, HTTP.ISO_8859_1);
 
64
        httpentity.setContentType(HTTP.PLAIN_TEXT_TYPE);
 
65
        httpentity.setContentEncoding(HTTP.IDENTITY_CODING);
 
66
        HttpEntityWrapper wrapped = new HttpEntityWrapper(httpentity); 
 
67
        
 
68
        assertEquals(httpentity.getContentLength(), wrapped.getContentLength());
 
69
        assertEquals(httpentity.getContentType(), wrapped.getContentType());
 
70
        assertEquals(httpentity.getContentEncoding(), wrapped.getContentEncoding());
 
71
        assertEquals(httpentity.isChunked(), wrapped.isChunked());
 
72
        assertEquals(httpentity.isRepeatable(), wrapped.isRepeatable());
 
73
        assertEquals(httpentity.isStreaming(), wrapped.isStreaming());
 
74
        assertNotNull(wrapped.getContent());
 
75
    }
 
76
 
 
77
    public void testIllegalConstructor() throws Exception {
 
78
        try {
 
79
            new HttpEntityWrapper(null);
 
80
            fail("IllegalArgumentException should have been thrown");
 
81
        } catch (IllegalArgumentException ex) {
 
82
            // expected
 
83
        }
 
84
    }
 
85
 
 
86
    public void testWriteTo() throws Exception {
 
87
        String s = "Message content";
 
88
        byte[] bytes = s.getBytes(HTTP.ISO_8859_1);
 
89
        StringEntity httpentity = new StringEntity(s);
 
90
        HttpEntityWrapper wrapped = new HttpEntityWrapper(httpentity); 
 
91
        
 
92
        ByteArrayOutputStream out = new ByteArrayOutputStream();
 
93
        wrapped.writeTo(out);
 
94
        byte[] bytes2 = out.toByteArray();
 
95
        assertNotNull(bytes2);
 
96
        assertEquals(bytes.length, bytes2.length);
 
97
        for (int i = 0; i < bytes.length; i++) {
 
98
            assertEquals(bytes[i], bytes2[i]);
 
99
        }
 
100
 
 
101
        out = new ByteArrayOutputStream();
 
102
        wrapped.writeTo(out);
 
103
        bytes2 = out.toByteArray();
 
104
        assertNotNull(bytes2);
 
105
        assertEquals(bytes.length, bytes2.length);
 
106
        for (int i = 0; i < bytes.length; i++) {
 
107
            assertEquals(bytes[i], bytes2[i]);
 
108
        }
 
109
        
 
110
        try {
 
111
            wrapped.writeTo(null);
 
112
            fail("IllegalArgumentException should have been thrown");
 
113
        } catch (IllegalArgumentException ex) {
 
114
            // expected
 
115
        }
 
116
    }
 
117
 
 
118
    public void testConsumeContent() throws Exception {
 
119
        String s = "Message content";
 
120
        StringEntity httpentity = new StringEntity(s);
 
121
        HttpEntityWrapper wrapped = new HttpEntityWrapper(httpentity);
 
122
        wrapped.consumeContent();
 
123
        wrapped.consumeContent();
 
124
    }
 
125
    
 
126
}