2010-11-18 17:48:28 +00:00
|
|
|
{- Checks system configuration and generates SysConfig.hs. -}
|
2010-11-18 17:30:42 +00:00
|
|
|
|
|
|
|
import System.Directory
|
2011-02-11 19:37:37 +00:00
|
|
|
import Data.List
|
2010-11-18 17:30:42 +00:00
|
|
|
|
2011-01-20 00:02:48 +00:00
|
|
|
import TestConfig
|
2010-11-18 18:07:22 +00:00
|
|
|
|
2010-11-27 21:31:20 +00:00
|
|
|
tests :: [TestCase]
|
2010-11-18 17:30:42 +00:00
|
|
|
tests = [
|
2011-03-19 18:33:24 +00:00
|
|
|
TestCase "version" $ getVersion
|
|
|
|
, testCp "cp_a" "-a"
|
2011-01-20 00:02:48 +00:00
|
|
|
, testCp "cp_p" "-p"
|
|
|
|
, testCp "cp_reflink_auto" "--reflink=auto"
|
|
|
|
, TestCase "uuid generator" $ selectCmd "uuid" ["uuid", "uuidgen"]
|
|
|
|
, TestCase "xargs -0" $ requireCmd "xargs_0" "xargs -0 </dev/null"
|
|
|
|
, TestCase "rsync" $ requireCmd "rsync" "rsync --version >/dev/null"
|
2011-03-17 15:57:03 +00:00
|
|
|
, TestCase "curl" $ testCmd "curl" "curl --version >/dev/null"
|
2011-02-11 19:37:37 +00:00
|
|
|
, TestCase "unicode FilePath support" $ unicodeFilePath
|
2011-03-01 21:07:15 +00:00
|
|
|
] ++ shaTestCases [1, 256, 512, 224, 384]
|
|
|
|
|
|
|
|
shaTestCases :: [Int] -> [TestCase]
|
|
|
|
shaTestCases l = map make l
|
|
|
|
where
|
|
|
|
make n =
|
|
|
|
let cmd = "sha" ++ show n ++ "sum"
|
|
|
|
in TestCase cmd $ requireCmd cmd (cmd ++ " </dev/null")
|
2010-11-18 17:30:42 +00:00
|
|
|
|
|
|
|
tmpDir :: String
|
|
|
|
tmpDir = "tmp"
|
|
|
|
|
|
|
|
testFile :: String
|
|
|
|
testFile = tmpDir ++ "/testfile"
|
|
|
|
|
2011-01-20 00:02:48 +00:00
|
|
|
testCp :: ConfigKey -> String -> TestCase
|
|
|
|
testCp k option = TestCase cmd $ testCmd k run
|
2011-01-19 22:08:50 +00:00
|
|
|
where
|
2011-01-20 00:02:48 +00:00
|
|
|
cmd = "cp " ++ option
|
|
|
|
run = cmd ++ " " ++ testFile ++ " " ++ testFile ++ ".new"
|
2010-11-18 17:30:42 +00:00
|
|
|
|
2011-02-11 19:37:37 +00:00
|
|
|
{- Checks if FilePaths contain decoded unicode, or not. The testdata
|
|
|
|
- directory contains a "unicode-test-ü" file; try to find the file,
|
|
|
|
- and see if the "ü" is encoded correctly.
|
|
|
|
-
|
|
|
|
- Note that the file is shipped with git-annex, rather than created,
|
|
|
|
- to avoid other potential unicode issues.
|
|
|
|
-}
|
|
|
|
unicodeFilePath :: Test
|
|
|
|
unicodeFilePath = do
|
|
|
|
fs <- getDirectoryContents "testdata"
|
|
|
|
let file = head $ filter (isInfixOf "unicode-test") fs
|
|
|
|
return $ Config "unicodefilepath" (BoolConfig $ isInfixOf "ü" file)
|
|
|
|
|
2011-03-19 18:33:24 +00:00
|
|
|
{- Pulls package version out of the changelog. -}
|
|
|
|
getVersion :: Test
|
|
|
|
getVersion = do
|
|
|
|
changelog <- readFile "debian/changelog"
|
|
|
|
let verline = head $ lines changelog
|
|
|
|
let version = middle (words verline !! 1)
|
|
|
|
return $ Config "packageversion" (StringConfig version)
|
|
|
|
where
|
|
|
|
middle s = drop 1 $ take (length s - 1) s
|
|
|
|
|
2010-11-18 18:11:18 +00:00
|
|
|
setup :: IO ()
|
|
|
|
setup = do
|
2010-11-18 17:30:42 +00:00
|
|
|
createDirectoryIfMissing True tmpDir
|
|
|
|
writeFile testFile "test file contents"
|
2010-11-18 18:11:18 +00:00
|
|
|
|
|
|
|
cleanup :: IO ()
|
|
|
|
cleanup = do
|
2010-11-18 17:30:42 +00:00
|
|
|
removeDirectoryRecursive tmpDir
|
2010-11-18 18:11:18 +00:00
|
|
|
|
|
|
|
main :: IO ()
|
|
|
|
main = do
|
|
|
|
setup
|
|
|
|
config <- runTests tests
|
2010-11-18 17:30:42 +00:00
|
|
|
writeSysConfig config
|
2010-11-18 18:11:18 +00:00
|
|
|
cleanup
|