/* * JBoss, Home of Professional Open Source. * Copyright 2014 Red Hat, Inc., and individual contributors * as indicated by the @author tags. * * Licensed 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. */ package io.undertow.server.protocol.ajp; import io.undertow.testutils.category.UnitTest; import io.undertow.server.HttpServerExchange; import io.undertow.util.Headers; import io.undertow.util.Methods; import io.undertow.util.Protocols; import io.undertow.util.BadRequestException; import org.junit.Assert; import org.junit.Test; import org.junit.experimental.categories.Category; import org.xnio.IoUtils; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.nio.ByteBuffer; /** * @author Stuart Douglas */ @Category(UnitTest.class) public class AjpParsingUnitTestCase { private static final ByteBuffer buffer; static { final InputStream stream = AjpParsingUnitTestCase.class.getResourceAsStream("sample-ajp-request"); try { ByteArrayOutputStream out = new ByteArrayOutputStream(); int r = 0; byte[] buf = new byte[1024]; while ((r = stream.read(buf)) > 0) { out.write(buf, 0, r); } buffer = ByteBuffer.wrap(out.toByteArray()); } catch (IOException e) { throw new RuntimeException(e); } finally { IoUtils.safeClose(stream); } } public static final AjpRequestParser AJP_REQUEST_PARSER = new AjpRequestParser("UTF-8", true, 100, 100); @Test public void testAjpParsing() throws IOException, BadRequestException { final ByteBuffer buffer = AjpParsingUnitTestCase.buffer.duplicate(); HttpServerExchange result = new HttpServerExchange(null); final AjpRequestParseState state = new AjpRequestParseState(); AJP_REQUEST_PARSER.parse(buffer, state, result); Assert.assertEquals(165, state.dataSize); Assert.assertTrue(state.isComplete()); Assert.assertEquals(0, buffer.remaining()); testResult(result); } @Test public void testByteByByteAjpParsing() throws IOException, BadRequestException { final ByteBuffer buffer = AjpParsingUnitTestCase.buffer.duplicate(); HttpServerExchange result = new HttpServerExchange(null); final AjpRequestParseState state = new AjpRequestParseState(); int limit = buffer.limit(); for (int i = 1; i <= limit; ++i) { buffer.limit(i); AJP_REQUEST_PARSER.parse(buffer, state, result); } Assert.assertEquals(165, state.dataSize); Assert.assertTrue(state.isComplete()); testResult(result); } private void testResult(final HttpServerExchange exchange) { Assert.assertSame(Methods.GET, exchange.getRequestMethod()); Assert.assertEquals(Protocols.HTTP_1_1, exchange.getProtocol()); Assert.assertEquals(3, exchange.getRequestHeaders().getHeaderNames().size()); Assert.assertEquals("localhost:7777", exchange.getRequestHeaders().getFirst(Headers.HOST)); Assert.assertEquals("Apache-HttpClient/4.1.3 (java 1.5)", exchange.getRequestHeaders().getFirst(Headers.USER_AGENT)); Assert.assertEquals("Keep-Alive", exchange.getRequestHeaders().getFirst(Headers.CONNECTION)); } }