2020-11-10 00:07:31 +00:00
|
|
|
{- Tests for Utility.Path. Split into a separate module to avoid it needing
|
|
|
|
- QuickCheck.
|
|
|
|
-
|
2021-01-22 18:21:29 +00:00
|
|
|
- Copyright 2010-2021 Joey Hess <id@joeyh.name>
|
2020-11-10 00:07:31 +00:00
|
|
|
-
|
|
|
|
- License: BSD-2-clause
|
|
|
|
-}
|
|
|
|
|
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
{-# OPTIONS_GHC -fno-warn-tabs #-}
|
|
|
|
|
|
|
|
module Utility.Path.Tests (
|
|
|
|
prop_upFrom_basics,
|
|
|
|
prop_relPathDirToFileAbs_basics,
|
|
|
|
prop_relPathDirToFileAbs_regressionTest,
|
|
|
|
) where
|
|
|
|
|
|
|
|
import System.FilePath.ByteString
|
|
|
|
import qualified Data.ByteString as B
|
|
|
|
import Data.List
|
|
|
|
import Data.Maybe
|
2021-01-22 18:21:29 +00:00
|
|
|
import Data.Char
|
2020-11-10 00:07:31 +00:00
|
|
|
import Control.Applicative
|
|
|
|
import Prelude
|
|
|
|
|
|
|
|
import Utility.Path
|
|
|
|
import Utility.FileSystemEncoding
|
|
|
|
import Utility.QuickCheck
|
|
|
|
|
|
|
|
prop_upFrom_basics :: TestableFilePath -> Bool
|
|
|
|
prop_upFrom_basics tdir
|
|
|
|
| dir == "/" = p == Nothing
|
|
|
|
| otherwise = p /= Just dir
|
|
|
|
where
|
|
|
|
p = fromRawFilePath <$> upFrom (toRawFilePath dir)
|
|
|
|
dir = fromTestableFilePath tdir
|
|
|
|
|
2021-01-13 17:21:15 +00:00
|
|
|
prop_relPathDirToFileAbs_basics :: TestableFilePath -> Bool
|
|
|
|
prop_relPathDirToFileAbs_basics pt = and
|
|
|
|
[ relPathDirToFileAbs p (p </> "bar") == "bar"
|
|
|
|
, relPathDirToFileAbs (p </> "bar") p == ".."
|
|
|
|
, relPathDirToFileAbs p p == ""
|
|
|
|
]
|
2020-11-10 00:07:31 +00:00
|
|
|
where
|
2021-01-22 18:21:29 +00:00
|
|
|
-- relPathDirToFileAbs needs absolute paths, so make the path
|
|
|
|
-- absolute by adding a path separator to the front.
|
|
|
|
p = pathSeparator `B.cons` relf
|
|
|
|
-- Make the input a relative path. On windows, make sure it does
|
|
|
|
-- not contain anything that looks like a drive letter.
|
|
|
|
relf = B.filter (not . skipchar) $ B.dropWhile isPathSeparator $
|
|
|
|
toRawFilePath (fromTestableFilePath pt)
|
|
|
|
skipchar b = b == (fromIntegral (ord ':'))
|
2020-11-10 00:07:31 +00:00
|
|
|
|
|
|
|
prop_relPathDirToFileAbs_regressionTest :: Bool
|
|
|
|
prop_relPathDirToFileAbs_regressionTest = same_dir_shortcurcuits_at_difference
|
|
|
|
where
|
|
|
|
{- Two paths have the same directory component at the same
|
|
|
|
- location, but it's not really the same directory.
|
|
|
|
- Code used to get this wrong. -}
|
|
|
|
same_dir_shortcurcuits_at_difference =
|
|
|
|
relPathDirToFileAbs (joinPath [pathSeparator `B.cons` "tmp", "r", "lll", "xxx", "yyy", "18"])
|
|
|
|
(joinPath [pathSeparator `B.cons` "tmp", "r", ".git", "annex", "objects", "18", "gk", "SHA256-foo", "SHA256-foo"])
|
|
|
|
== joinPath ["..", "..", "..", "..", ".git", "annex", "objects", "18", "gk", "SHA256-foo", "SHA256-foo"]
|