summaryrefslogtreecommitdiffstats
path: root/javatests/com/google/gerrit/util/http/RequestUtilTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'javatests/com/google/gerrit/util/http/RequestUtilTest.java')
-rw-r--r--javatests/com/google/gerrit/util/http/RequestUtilTest.java62
1 files changed, 62 insertions, 0 deletions
diff --git a/javatests/com/google/gerrit/util/http/RequestUtilTest.java b/javatests/com/google/gerrit/util/http/RequestUtilTest.java
new file mode 100644
index 0000000000..48b7b9c95b
--- /dev/null
+++ b/javatests/com/google/gerrit/util/http/RequestUtilTest.java
@@ -0,0 +1,62 @@
+// 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);
+ }
+}