blob: c6d1ff7df511d7475770d87c841452749ba87bfd [file] [log] [blame]
// 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 static com.google.gerrit.util.http.RequestUtil.getEncodedPathInfo;
import static com.google.gerrit.util.http.RequestUtil.getRestPathWithoutIds;
import static org.mockito.Mockito.mock;
import com.google.gerrit.util.http.testutil.FakeHttpServletRequest;
import java.util.function.Supplier;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.junit.Test;
public class RequestUtilTest {
@Test
public void getEncodedPathInfo_emptyContextPath() {
assertThat(getEncodedPathInfo(fakeRequest("", "/s", "/foo/bar"))).isEqualTo("/foo/bar");
assertThat(getEncodedPathInfo(fakeRequest("", "/s", "/foo%2Fbar"))).isEqualTo("/foo%2Fbar");
}
@Test
public void getEncodedPathInfo_emptyServletPath() {
assertThat(getEncodedPathInfo(fakeRequest("", "/c", "/foo/bar"))).isEqualTo("/foo/bar");
assertThat(getEncodedPathInfo(fakeRequest("", "/c", "/foo%2Fbar"))).isEqualTo("/foo%2Fbar");
}
@Test
public void getEncodedPathInfo_trailingSlashes() {
assertThat(getEncodedPathInfo(fakeRequest("/c", "/s", "/foo/bar/"))).isEqualTo("/foo/bar/");
assertThat(getEncodedPathInfo(fakeRequest("/c", "/s", "/foo/bar///"))).isEqualTo("/foo/bar/");
assertThat(getEncodedPathInfo(fakeRequest("/c", "/s", "/foo%2Fbar/"))).isEqualTo("/foo%2Fbar/");
assertThat(getEncodedPathInfo(fakeRequest("/c", "/s", "/foo%2Fbar///")))
.isEqualTo("/foo%2Fbar/");
}
@Test
public void emptyPathInfo() {
assertThat(getEncodedPathInfo(fakeRequest("/c", "/s", ""))).isNull();
}
@Test
public void getRestPathWithoutIds_emptyContextPath() {
assertThat(getRestPathWithoutIds(fakeRequest("", "/a/accounts", "/123/test")))
.isEqualTo("/accounts/test");
assertThat(getRestPathWithoutIds(fakeRequest("", "/accounts", "/123/test")))
.isEqualTo("/accounts/test");
}
@Test
public void getRestPathWithoutIds_nonEmptyContextPath() {
assertThat(getRestPathWithoutIds(fakeRequest("/c", "/a/accounts", "/123/test")))
.isEqualTo("/accounts/test");
assertThat(getRestPathWithoutIds(fakeRequest("/c", "/accounts", "/123/test")))
.isEqualTo("/accounts/test");
}
@Test
public void getSession_create() {
HttpServletRequest req = fakeRequest("/", "/", "/foo", () -> mock(HttpSession.class), null);
assertThat(req.getSession(false)).isNull();
assertThat(req.getSession(true)).isNotNull();
assertThat(req.getSession()).isNotNull();
}
@Test
public void getSession_getExisting() {
HttpServletRequest req = fakeRequest("/", "/", "/foo", null, mock(HttpSession.class));
assertThat(req.getSession(false)).isNotNull();
}
@Test
public void getRequestURI_shouldNotInclueQueryString() {
FakeHttpServletRequest req = fakeRequest("/", "/", "/foo");
req.setQueryString("query=foo");
assertThat(req.getRequestURI()).endsWith("/foo");
assertThat(req.getRequestURI()).doesNotContain("?query=foo");
}
private FakeHttpServletRequest fakeRequest(
String contextPath, String servletPath, String pathInfo) {
return fakeRequest(contextPath, servletPath, pathInfo, null, null);
}
private FakeHttpServletRequest fakeRequest(
String contextPath,
String servletPath,
String pathInfo,
Supplier<HttpSession> newSessionSupplier,
HttpSession currentSession) {
FakeHttpServletRequest req =
new FakeHttpServletRequest(
"gerrit.example.com", 80, contextPath, servletPath, newSessionSupplier, currentSession);
return req.setPathInfo(pathInfo);
}
}