blob: 733fd1c673af29702f21ffc65c50ebbcc6402db8 [file] [log] [blame]
//
// ========================================================================
// Copyright (c) 1995-2015 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 java.io.File;
import java.net.MalformedURLException;
import org.eclipse.jetty.toolchain.test.FS;
import org.eclipse.jetty.toolchain.test.MavenTestingUtils;
import org.junit.Assert;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
public class ResourceAliasTest
{
static File __dir;
@BeforeClass
public static void beforeClass()
{
__dir=MavenTestingUtils.getTargetTestingDir("RAT");
}
@Before
public void before()
{
FS.ensureDirExists(__dir);
FS.ensureEmpty(__dir);
}
/* ------------------------------------------------------------ */
@Test
public void testNullCharEndingFilename() throws Exception
{
File file=new File(__dir,"test.txt");
Assert.assertFalse(file.exists());
Assert.assertTrue(file.createNewFile());
Assert.assertTrue(file.exists());
File file0=new File(__dir,"test.txt\0");
if (!file0.exists())
return; // this file system does not suffer this problem
Assert.assertTrue(file0.exists()); // This is an alias!
Resource dir = Resource.newResource(__dir);
// Test not alias paths
Resource resource = Resource.newResource(file);
Assert.assertTrue(resource.exists());
Assert.assertNull(resource.getAlias());
resource = Resource.newResource(file.getAbsoluteFile());
Assert.assertTrue(resource.exists());
Assert.assertNull(resource.getAlias());
resource = Resource.newResource(file.toURI());
Assert.assertTrue(resource.exists());
Assert.assertNull(resource.getAlias());
resource = Resource.newResource(file.toURI().toString());
Assert.assertTrue(resource.exists());
Assert.assertNull(resource.getAlias());
resource = dir.addPath("test.txt");
Assert.assertTrue(resource.exists());
Assert.assertNull(resource.getAlias());
// Test alias paths
resource = Resource.newResource(file0);
Assert.assertTrue(resource.exists());
Assert.assertNotNull(resource.getAlias());
resource = Resource.newResource(file0.getAbsoluteFile());
Assert.assertTrue(resource.exists());
Assert.assertNotNull(resource.getAlias());
resource = Resource.newResource(file0.toURI());
Assert.assertTrue(resource.exists());
Assert.assertNotNull(resource.getAlias());
resource = Resource.newResource(file0.toURI().toString());
Assert.assertTrue(resource.exists());
Assert.assertNotNull(resource.getAlias());
try
{
resource = dir.addPath("test.txt\0");
Assert.assertTrue(resource.exists());
Assert.assertNotNull(resource.getAlias());
}
catch(MalformedURLException e)
{
Assert.assertTrue(true);
}
}
}