/* * ==================================================================== * * 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.client.protocol; import java.io.IOException; import java.net.InetSocketAddress; import org.apache.ogt.http.HttpException; import org.apache.ogt.http.HttpHost; import org.apache.ogt.http.HttpRequest; import org.apache.ogt.http.HttpResponse; import org.apache.ogt.http.HttpStatus; import org.apache.ogt.http.ProtocolVersion; import org.apache.ogt.http.client.methods.HttpGet; import org.apache.ogt.http.entity.StringEntity; import org.apache.ogt.http.impl.client.DefaultHttpClient; import org.apache.ogt.http.localserver.BasicServerTestBase; import org.apache.ogt.http.localserver.LocalTestServer; import org.apache.ogt.http.protocol.HttpContext; import org.apache.ogt.http.protocol.HttpRequestHandler; import org.apache.ogt.http.util.EntityUtils; import org.junit.Assert; import org.junit.Before; import org.junit.Test; public class TestUriEscapes extends BasicServerTestBase { @Before public void setUp() throws Exception { localServer = new LocalTestServer(null, null); localServer.registerDefaultHandlers(); localServer.start(); } private static class UriListeningService implements HttpRequestHandler { private volatile String requestedUri; public void handle( final HttpRequest request, final HttpResponse response, final HttpContext context) throws HttpException, IOException { ProtocolVersion ver = request.getRequestLine().getProtocolVersion(); this.requestedUri = request.getRequestLine().getUri(); response.setStatusLine(ver, HttpStatus.SC_OK); StringEntity entity = new StringEntity("Response Body"); response.setEntity(entity); } public String getRequestedUri() { return requestedUri; } } private void doTest(String uri, boolean relative) throws Exception { InetSocketAddress address = this.localServer.getServiceAddress(); int port = address.getPort(); String host = address.getHostName(); UriListeningService listener = new UriListeningService(); this.localServer.register("*", listener); DefaultHttpClient client = new DefaultHttpClient(); HttpResponse response; if(!relative) { String request = "http://" + host + ":" + port + uri; HttpGet httpget = new HttpGet(request); response = client.execute(httpget); EntityUtils.consume(response.getEntity()); } else { HttpHost target = new HttpHost(host, port); HttpGet httpget = new HttpGet(uri); response = client.execute(target, httpget); EntityUtils.consume(response.getEntity()); } Assert.assertEquals(HttpStatus.SC_OK, response.getStatusLine().getStatusCode()); Assert.assertEquals(uri, listener.getRequestedUri()); } @Test public void testEscapedAmpersandInQueryAbsolute() throws Exception { doTest("/path/a=b&c=%26d", false); } @Test public void testEscapedAmpersandInQueryRelative() throws Exception { doTest("/path/a=b&c=%26d", true); } @Test public void testPlusInPathAbsolute() throws Exception { doTest("/path+go", false); } @Test public void testPlusInPathRelative() throws Exception { doTest("/path+go", true); } @Test public void testEscapedSpaceInPathAbsolute() throws Exception { doTest("/path%20go?a=b&c=d", false); } @Test public void testEscapedSpaceInPathRelative() throws Exception { doTest("/path%20go?a=b&c=d", true); } @Test public void testEscapedAmpersandInPathAbsolute() throws Exception { doTest("/this%26that?a=b&c=d", false); } @Test public void testEscapedAmpersandInPathRelative() throws Exception { doTest("/this%26that?a=b&c=d", true); } @Test public void testEscapedSpaceInQueryAbsolute() throws Exception { doTest("/path?a=b&c=d%20e", false); } @Test public void testEscapedSpaceInQueryRelative() throws Exception { doTest("/path?a=b&c=d%20e", true); } @Test public void testPlusInQueryAbsolute() throws Exception { doTest("/path?a=b&c=d+e", false); } @Test public void testPlusInQueryRelative() throws Exception { doTest("/path?a=b&c=d+e", true); } }