Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 26674934485cfc0ee393c87f212dd0a6d94a7dd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
//
//  ========================================================================
//  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.is;

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.OS;
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;
import static org.junit.Assume.assumeTrue;

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_CHARSET);
        return new URL(decoded);
    }
    
    @Test
    public void testSemicolon() throws Exception
    {
        assumeTrue(!OS.IS_WINDOWS);
        createDummyFile("foo;");

        try(Resource base = new FileResource(testdir.getDir());)
        {
            Resource res = base.addPath("foo;");
            Assert.assertNull(res.getAlias());
        }
    }

    @Test
    public void testExist_Normal() throws Exception
    {
        createDummyFile("a.jsp");

        URI ref = testdir.getDir().toURI().resolve("a.jsp");
        try(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");
            try(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");
            try(FileResource fileres = new FileResource(decode(ref.toURL()));)
            {
                Assert.assertThat("FileResource: " + fileres,fileres.exists(),is(false));
            }
        } 
        catch(URISyntaxException e) 
        {
            // Valid path
        }
    }
}

Back to the top