Package org.neo4j.smack.pipeline.http

Source Code of org.neo4j.smack.pipeline.http.TestHttpHeaderContainer

package org.neo4j.smack.pipeline.http;

import static org.hamcrest.Matchers.is;
import static org.junit.Assert.assertThat;

import org.junit.Test;
import org.neo4j.smack.gcfree.MutableString;
import org.neo4j.smack.pipeline.http.HttpHeaderContainer;
import org.neo4j.smack.pipeline.http.HttpHeaderNames;


public class TestHttpHeaderContainer {

    @Test
    public void testAssignAndClear() {
        HttpHeaderContainer headers = new HttpHeaderContainer();
       
        headers.addHeader(HttpHeaderNames.CONTENT_LENGTH, new MutableString("0"));
        assertThat(headers.getHeaders(HttpHeaderNames.CONTENT_LENGTH).size(), is(1));
       
        headers.clear();
       
        assertThat(headers.getHeaders(HttpHeaderNames.CONTENT_LENGTH).size(), is(0));
    }
   
    @Test
    public void testInternalStorageGetsReused() {
        HttpHeaderContainer headers = new HttpHeaderContainer();
       
        headers.addHeader(HttpHeaderNames.CONTENT_LENGTH, new MutableString("0"));
        headers.addHeader(HttpHeaderNames.CONTENT_LENGTH, new MutableString("0"));
        headers.addHeader(HttpHeaderNames.CONTENT_LENGTH, new MutableString("0"));
        headers.addHeader(HttpHeaderNames.CONTENT_LENGTH, new MutableString("0"));
       
        int preClearCapacity = headers.getHeaders(HttpHeaderNames.CONTENT_LENGTH).currentCapacity();
       
        headers.clear();

        headers.addHeader(HttpHeaderNames.CONTENT_LENGTH, new MutableString("0"));
        headers.addHeader(HttpHeaderNames.CONTENT_LENGTH, new MutableString("0"));
        headers.addHeader(HttpHeaderNames.CONTENT_LENGTH, new MutableString("0"));
        headers.addHeader(HttpHeaderNames.CONTENT_LENGTH, new MutableString("0"));
       
        assertThat(headers.getHeaders(HttpHeaderNames.CONTENT_LENGTH).currentCapacity(), is(preClearCapacity));
    }
   
}
TOP

Related Classes of org.neo4j.smack.pipeline.http.TestHttpHeaderContainer

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.