// Copyright (C) 2014 The Android Open Source Project // // 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 com.google.gerrit.util.http; import static com.google.common.truth.Truth.assertThat; import com.google.gerrit.util.http.testutil.FakeHttpServletRequest; import org.junit.Test; public class RequestUtilTest { @Test public void emptyContextPath() { assertThat(RequestUtil.getEncodedPathInfo(fakeRequest("", "/s", "/foo/bar"))) .isEqualTo("/foo/bar"); assertThat(RequestUtil.getEncodedPathInfo(fakeRequest("", "/s", "/foo%2Fbar"))) .isEqualTo("/foo%2Fbar"); } @Test public void emptyServletPath() { assertThat(RequestUtil.getEncodedPathInfo(fakeRequest("", "/c", "/foo/bar"))) .isEqualTo("/foo/bar"); assertThat(RequestUtil.getEncodedPathInfo(fakeRequest("", "/c", "/foo%2Fbar"))) .isEqualTo("/foo%2Fbar"); } @Test public void trailingSlashes() { assertThat(RequestUtil.getEncodedPathInfo(fakeRequest("/c", "/s", "/foo/bar/"))) .isEqualTo("/foo/bar/"); assertThat(RequestUtil.getEncodedPathInfo(fakeRequest("/c", "/s", "/foo/bar///"))) .isEqualTo("/foo/bar/"); assertThat(RequestUtil.getEncodedPathInfo(fakeRequest("/c", "/s", "/foo%2Fbar/"))) .isEqualTo("/foo%2Fbar/"); assertThat(RequestUtil.getEncodedPathInfo(fakeRequest("/c", "/s", "/foo%2Fbar///"))) .isEqualTo("/foo%2Fbar/"); } @Test public void emptyPathInfo() { assertThat(RequestUtil.getEncodedPathInfo(fakeRequest("/c", "/s", ""))).isNull(); } private FakeHttpServletRequest fakeRequest( String contextPath, String servletPath, String pathInfo) { FakeHttpServletRequest req = new FakeHttpServletRequest("gerrit.example.com", 80, contextPath, servletPath); return req.setPathInfo(pathInfo); } }