Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-util/src/test/java/org/eclipse/jetty/util/resource/FileResourceTest.java')
-rw-r--r--jetty-util/src/test/java/org/eclipse/jetty/util/resource/FileResourceTest.java98
1 files changed, 98 insertions, 0 deletions
diff --git a/jetty-util/src/test/java/org/eclipse/jetty/util/resource/FileResourceTest.java b/jetty-util/src/test/java/org/eclipse/jetty/util/resource/FileResourceTest.java
new file mode 100644
index 0000000000..7d7b197351
--- /dev/null
+++ b/jetty-util/src/test/java/org/eclipse/jetty/util/resource/FileResourceTest.java
@@ -0,0 +1,98 @@
+//
+// ========================================================================
+// Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
+// ------------------------------------------------------------------------
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// and Apache License v2.0 which accompanies this distribution.
+//
+// The Eclipse Public License is available at
+// http://www.eclipse.org/legal/epl-v10.html
+//
+// The Apache License v2.0 is available at
+// http://www.opensource.org/licenses/apache2.0.php
+//
+// You may elect to redistribute this code under either of these licenses.
+// ========================================================================
+//
+
+package org.eclipse.jetty.util.resource;
+
+import static org.hamcrest.Matchers.*;
+
+import java.io.File;
+import java.io.IOException;
+import java.net.MalformedURLException;
+import java.net.URI;
+import java.net.URISyntaxException;
+import java.net.URL;
+
+import org.eclipse.jetty.toolchain.test.TestingDir;
+import org.eclipse.jetty.util.StringUtil;
+import org.eclipse.jetty.util.UrlEncoded;
+import org.junit.Assert;
+import org.junit.Ignore;
+import org.junit.Rule;
+import org.junit.Test;
+
+public class FileResourceTest
+{
+ @Rule
+ public TestingDir testdir = new TestingDir();
+
+ private URI createDummyFile(String name) throws IOException
+ {
+ File file = testdir.getFile(name);
+ file.createNewFile();
+ return file.toURI();
+ }
+
+ private URL decode(URL url) throws MalformedURLException
+ {
+ String raw = url.toExternalForm();
+ String decoded = UrlEncoded.decodeString(raw,0,raw.length(),StringUtil.__UTF8);
+ return new URL(decoded);
+ }
+
+ @Test
+ public void testExist_Normal() throws Exception
+ {
+ createDummyFile("a.jsp");
+
+ URI ref = testdir.getDir().toURI().resolve("a.jsp");
+ FileResource fileres = new FileResource(decode(ref.toURL()));
+ Assert.assertThat("FileResource: " + fileres,fileres.exists(),is(true));
+ }
+
+ @Ignore("Cannot get null to be seen by FileResource")
+ @Test
+ public void testExist_BadNull() throws Exception
+ {
+ createDummyFile("a.jsp");
+
+ try {
+ // request with null at end
+ URI ref = testdir.getDir().toURI().resolve("a.jsp%00");
+ FileResource fileres = new FileResource(decode(ref.toURL()));
+ Assert.assertThat("FileResource: " + fileres,fileres.exists(),is(false));
+ } catch(URISyntaxException e) {
+ // Valid path
+ }
+ }
+
+ @Ignore("Validation shouldn't be done in FileResource")
+ @Test
+ public void testExist_BadNullX() throws Exception
+ {
+ createDummyFile("a.jsp");
+
+ try {
+ // request with null and x at end
+ URI ref = testdir.getDir().toURI().resolve("a.jsp%00x");
+ FileResource fileres = new FileResource(decode(ref.toURL()));
+ Assert.assertThat("FileResource: " + fileres,fileres.exists(),is(false));
+ } catch(URISyntaxException e) {
+ // Valid path
+ }
+ }
+}

Back to the top