/* * Copyright 2000-2012 JetBrains s.r.o. * * 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.intellij.openapi.util.io; import com.intellij.openapi.util.SystemInfo; import com.intellij.util.ArrayUtil; import com.intellij.util.PairProcessor; import com.intellij.util.ThreeState; import com.intellij.util.containers.Convertor; import junit.framework.Assert; import org.junit.Test; import java.util.Arrays; import java.util.Collection; import static org.junit.Assert.*; public class FileUtilTest { private static final char UNIX_SEPARATOR = '/'; private static final char WINDOWS_SEPARATOR = '\\'; @Test public void toCanonicalPath() { assertEquals("", FileUtil.toCanonicalPath("")); assertEquals(" ", FileUtil.toCanonicalPath(" ")); assertEquals("/", FileUtil.toCanonicalPath("/", UNIX_SEPARATOR)); assertEquals("/", FileUtil.toCanonicalPath("/./", UNIX_SEPARATOR)); assertEquals("a/b", FileUtil.toCanonicalPath("a/b/", UNIX_SEPARATOR)); assertEquals("/a/b", FileUtil.toCanonicalPath("/a/////b/", UNIX_SEPARATOR)); assertEquals("/a/b", FileUtil.toCanonicalPath("/a/././b/", UNIX_SEPARATOR)); assertEquals("/c", FileUtil.toCanonicalPath("/a/b/../../c", UNIX_SEPARATOR)); assertEquals("/a", FileUtil.toCanonicalPath("/a/b/..", UNIX_SEPARATOR)); assertEquals("/a", FileUtil.toCanonicalPath("/a/b/../", UNIX_SEPARATOR)); assertEquals("/a\\b", FileUtil.toCanonicalPath("/a\\b/", UNIX_SEPARATOR)); assertEquals("/", FileUtil.toCanonicalPath("/a/../", UNIX_SEPARATOR)); assertEquals("/", FileUtil.toCanonicalPath("/a/../..", UNIX_SEPARATOR)); assertEquals("/b", FileUtil.toCanonicalPath("/a/../../b", UNIX_SEPARATOR)); assertEquals("a...b", FileUtil.toCanonicalPath("a...b", UNIX_SEPARATOR)); assertEquals("a../b", FileUtil.toCanonicalPath("a../b", UNIX_SEPARATOR)); assertEquals("a./.b", FileUtil.toCanonicalPath("a./.b", UNIX_SEPARATOR)); assertEquals("a", FileUtil.toCanonicalPath("a/b/..", UNIX_SEPARATOR)); assertEquals("a/b", FileUtil.toCanonicalPath("a/b/.", UNIX_SEPARATOR)); assertEquals("a/b/...", FileUtil.toCanonicalPath("a/b/...", UNIX_SEPARATOR)); assertEquals("...", FileUtil.toCanonicalPath("...", UNIX_SEPARATOR)); assertEquals(".local", FileUtil.toCanonicalPath(".local/", UNIX_SEPARATOR)); assertEquals("file.ext", FileUtil.toCanonicalPath("file.ext", UNIX_SEPARATOR)); assertEquals("file.", FileUtil.toCanonicalPath("file.", UNIX_SEPARATOR)); assertEquals("file..", FileUtil.toCanonicalPath("file..", UNIX_SEPARATOR)); assertEquals("", FileUtil.toCanonicalPath(".", UNIX_SEPARATOR)); assertEquals("", FileUtil.toCanonicalPath("./", UNIX_SEPARATOR)); assertEquals("", FileUtil.toCanonicalPath("a/..", UNIX_SEPARATOR)); assertEquals("b", FileUtil.toCanonicalPath("a/..//b", UNIX_SEPARATOR)); assertEquals("..", FileUtil.toCanonicalPath("..", UNIX_SEPARATOR)); assertEquals("..", FileUtil.toCanonicalPath("../", UNIX_SEPARATOR)); assertEquals("../..", FileUtil.toCanonicalPath("../..", UNIX_SEPARATOR)); assertEquals("../../..", FileUtil.toCanonicalPath("../../..///./", UNIX_SEPARATOR)); assertEquals("../a....", FileUtil.toCanonicalPath("../a....//", UNIX_SEPARATOR)); assertEquals("..", FileUtil.toCanonicalPath("../a..../../", UNIX_SEPARATOR)); assertEquals("C:/", FileUtil.toCanonicalPath("C:\\", WINDOWS_SEPARATOR)); assertEquals("a/b", FileUtil.toCanonicalPath("a\\b\\", WINDOWS_SEPARATOR)); assertEquals("c:/a/b", FileUtil.toCanonicalPath("c:\\a\\\\b\\", WINDOWS_SEPARATOR)); assertEquals("c:/a/b", FileUtil.toCanonicalPath("c:\\a\\.\\.\\b\\", WINDOWS_SEPARATOR)); assertEquals("c:/d", FileUtil.toCanonicalPath("c:\\a\\b\\..\\..\\d", WINDOWS_SEPARATOR)); assertEquals("/a/b", FileUtil.toCanonicalPath("\\a/b\\", WINDOWS_SEPARATOR)); assertEquals("c:/", FileUtil.toCanonicalPath("c:\\a\\..\\", WINDOWS_SEPARATOR)); assertEquals("c:/", FileUtil.toCanonicalPath("c:\\a\\..\\..", WINDOWS_SEPARATOR)); assertEquals("c:/b", FileUtil.toCanonicalPath("c:\\a\\..\\..\\b", WINDOWS_SEPARATOR)); } @Test public void isAncestor() throws Exception { assertTrue(FileUtil.isAncestor("/", "/a/", true)); assertTrue(FileUtil.isAncestor("/a/b/c", "/a/b/c/d/e/f", true)); assertTrue(FileUtil.isAncestor("/a/b/c/", "/a/b/c/d/e/f", true)); assertFalse(FileUtil.isAncestor("/a/b/c/1", "/a/b/c/2", true)); assertFalse(FileUtil.isAncestor("/a/b/c/1", "/a/b/c/2", false)); assertTrue(FileUtil.isAncestor("/a/b/c/", "/a/b/c", false)); assertTrue(FileUtil.isAncestor("/a///b/c", "/a/b/c/", false)); assertFalse(FileUtil.isAncestor("/a/b/c/", "/a/./b/c", true)); assertFalse(FileUtil.isAncestor("/a/b/c", "/a/b/c/", true)); assertFalse(FileUtil.isAncestor("/a/b/c", "/a/b/cde", true)); assertFalse(FileUtil.isAncestor("/a/b/c", "/a/b/cde", false)); assertEquals(SystemInfo.isWindows, FileUtil.isAncestor("c:\\", "C:/a/b/c", true)); assertEquals(!SystemInfo.isFileSystemCaseSensitive, FileUtil.isAncestor("/a/b/c", "/a/B/c/d", true)); } @Test public void testRemoveAncestors() throws Exception { final String[] arr = {"/a/b/c", "/a", "/a/b", "/d/e", "/b/c", "/a/d", "/b/c/ttt", "/a/ewq.euq"}; final String[] expectedResult = {"/a","/b/c","/d/e"}; @SuppressWarnings("unchecked") final Collection<String> result = FileUtil.removeAncestors(Arrays.asList(arr), Convertor.SELF, PairProcessor.TRUE); assertArrayEquals(expectedResult, ArrayUtil.toStringArray(result)); } @Test public void testCheckImmediateChildren() throws Exception { final String root = "/a"; final String[] arr = {"/a/b/c", "/a", "/a/b", "/d/e", "/b/c", "/a/d", "/a/b/c/d/e"}; final ThreeState[] expectedResult = {ThreeState.UNSURE, ThreeState.YES, ThreeState.YES, ThreeState.NO, ThreeState.NO, ThreeState.YES, ThreeState.UNSURE}; final ThreeState[] expectedResult2 = {ThreeState.UNSURE, ThreeState.NO, ThreeState.YES, ThreeState.NO, ThreeState.NO, ThreeState.YES, ThreeState.UNSURE}; for (int i = 0; i < arr.length; i++) { String s = arr[i]; final ThreeState state = FileUtil.isAncestorThreeState(root, s, false); Assert.assertEquals("" + i, expectedResult[i], state); } for (int i = 0; i < arr.length; i++) { String s = arr[i]; final ThreeState state = FileUtil.isAncestorThreeState(root, s, true); Assert.assertEquals("" + i, expectedResult2[i], state); } } }