blob: 3aa0da3952022991b5fb72d3aa0a72213307aa20 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.maven.shared.utils;
import java.io.File;
import org.hamcrest.CoreMatchers;
import org.junit.Assume;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
/**
* Test the {@link PathTool} class.
*
* @author <a href="mailto:struberg@yahoo.de">Mark Struberg</a>
*/
public class PathToolTest {
@Rule
public TemporaryFolder tempFolder = new TemporaryFolder();
@Test
// Keep in sync with testGetRelativeFilePath_Windows()
public void testGetRelativeFilePath_NonWindows() {
Assume.assumeThat(File.separatorChar, is('/'));
assertThat(PathTool.getRelativeFilePath(null, null), is(""));
assertThat(PathTool.getRelativeFilePath(null, "/usr/local/java/bin"), is(""));
assertThat(PathTool.getRelativeFilePath("/usr/local", null), is(""));
assertThat(PathTool.getRelativeFilePath("/usr/local", "/usr/local/java/bin"), is("java/bin"));
assertThat(PathTool.getRelativeFilePath("/usr/local", "/usr/local/java/bin/"), is("java/bin/"));
assertThat(PathTool.getRelativeFilePath("/usr/local/java/bin", "/usr/local/"), is("../../"));
assertThat(PathTool.getRelativeFilePath("/usr/local/", "/usr/local/java/bin/java.sh"), is("java/bin/java.sh"));
assertThat(PathTool.getRelativeFilePath("/usr/local/java/bin/java.sh", "/usr/local/"), is("../../../"));
assertThat(PathTool.getRelativeFilePath("/usr/local/", "/bin"), is("../../bin"));
assertThat(PathTool.getRelativeFilePath("/bin", "/usr/local/"), is("../usr/local/"));
}
@Test
// Keep in sync with testGetRelativeFilePath_NonWindows()
public void testGetRelativeFilePath_Windows() {
Assume.assumeThat(File.separatorChar, is('\\'));
assertThat(PathTool.getRelativeFilePath(null, null), is(""));
assertThat(PathTool.getRelativeFilePath(null, "c:\\usr\\local\\java\\bin"), is(""));
assertThat(PathTool.getRelativeFilePath("c:\\usr\\local", null), is(""));
assertThat(PathTool.getRelativeFilePath("c:\\usr\\local", "c:\\usr\\local\\java\\bin"), is("java\\bin"));
assertThat(PathTool.getRelativeFilePath("c:\\usr\\local", "c:\\usr\\local\\java\\bin\\"), is("java\\bin\\"));
assertThat(PathTool.getRelativeFilePath("c:\\usr\\local\\java\\bin", "c:\\usr\\local\\"), is("..\\..\\"));
assertThat(
PathTool.getRelativeFilePath("c:\\usr\\local\\", "c:\\usr\\local\\java\\bin\\java.sh"),
is("java\\bin\\java.sh"));
assertThat(
PathTool.getRelativeFilePath("c:\\usr\\local\\java\\bin\\java.sh", "c:\\usr\\local\\"),
is("..\\..\\..\\"));
assertThat(PathTool.getRelativeFilePath("c:\\usr\\local\\", "c:\\bin"), is("..\\..\\bin"));
assertThat(PathTool.getRelativeFilePath("c:\\bin", "c:\\usr\\local\\"), is("..\\usr\\local\\"));
}
@Test
public void testGetRelativePath_2parm() {
assertThat(PathTool.getRelativePath(null, null), is(""));
assertThat(PathTool.getRelativePath(null, "/usr/local/java/bin"), is(""));
assertThat(PathTool.getRelativePath("/usr/local/", null), is(""));
assertThat(PathTool.getRelativePath("/usr/local/", "/usr/local/java/bin"), is(".."));
assertThat(PathTool.getRelativePath("/usr/local/", "/usr/local/java/bin/java.sh"), is("../.."));
assertThat(PathTool.getRelativePath("/usr/local/java/bin/java.sh", "/usr/local/"), is(""));
}
@Test
public void testUppercaseDrive() {
assertThat(PathTool.uppercaseDrive(null), CoreMatchers.nullValue());
assertThat(PathTool.uppercaseDrive("d:"), is("D:"));
assertThat(PathTool.uppercaseDrive("D:"), is("D:"));
assertThat(PathTool.uppercaseDrive("/notadrive"), is("/notadrive"));
}
}