io.vertx.core.http.VertxHttpHeadersTest.java Source code

Java tutorial

Introduction

Here is the source code for io.vertx.core.http.VertxHttpHeadersTest.java

Source

/*
 * Copyright (c) 2011-2017 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package io.vertx.core.http;

import io.netty.util.AsciiString;
import io.vertx.core.MultiMap;
import io.vertx.core.http.impl.headers.VertxHttpHeaders;
import org.junit.Test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;

/**
 * @author <a href="mailto:julien@julienviet.com">Julien Viet</a>
 */
public class VertxHttpHeadersTest extends CaseInsensitiveHeadersTest {

    public VertxHttpHeadersTest() {
        sameHash1 = "ABCDEF";
        sameHash2 = "HOBOURN";
        sameBucket1 = "ZEITOUN";
        sameBucket2 = "AAKSUHX";
    }

    @Override
    protected MultiMap newMultiMap() {
        return new VertxHttpHeaders();
    }

    @Override
    public void checkNameCollision() {
        assertEquals(AsciiString.hashCode(sameHash1), AsciiString.hashCode(sameHash2));
        assertEquals(AsciiString.hashCode(sameBucket1) & 0xF, AsciiString.hashCode(sameBucket2) & 0xF);
        assertNotEquals(AsciiString.hashCode(sameBucket1), AsciiString.hashCode(sameBucket2));
    }

    @Override
    public void testHashMININT() {
        // Does not apply
    }
}