60 lines
1.5 KiB
Haskell
60 lines
1.5 KiB
Haskell
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
module GetFileTypeSpec where
|
|
|
|
|
|
import HSFM.FileSystem.FileOperations
|
|
import Test.Hspec
|
|
import System.IO.Error
|
|
(
|
|
ioeGetErrorType
|
|
)
|
|
import GHC.IO.Exception
|
|
(
|
|
IOErrorType(..)
|
|
)
|
|
import Utils
|
|
|
|
|
|
|
|
getFileTypeSpec :: Spec
|
|
getFileTypeSpec =
|
|
describe "HSFM.FileSystem.FileOperations.getFileType" $ do
|
|
|
|
-- successes --
|
|
it "getFileType, regular file" $
|
|
getFileType' "test/getFileTypeSpec/regularfile"
|
|
`shouldReturn` RegularFile
|
|
|
|
it "getFileType, directory" $
|
|
getFileType' "test/getFileTypeSpec/directory"
|
|
`shouldReturn` Directory
|
|
|
|
it "getFileType, directory with null permissions" $
|
|
getFileType' "test/getFileTypeSpec/noPerms"
|
|
`shouldReturn` Directory
|
|
|
|
it "getFileType, symlink to file" $
|
|
getFileType' "test/getFileTypeSpec/symlink"
|
|
`shouldReturn` SymbolicLink
|
|
|
|
it "getFileType, symlink to directory" $
|
|
getFileType' "test/getFileTypeSpec/symlinkD"
|
|
`shouldReturn` SymbolicLink
|
|
|
|
it "getFileType, broken symlink" $
|
|
getFileType' "test/getFileTypeSpec/brokenSymlink"
|
|
`shouldReturn` SymbolicLink
|
|
|
|
-- posix failures --
|
|
it "getFileType, file does not exist" $
|
|
getFileType' "test/getFileTypeSpec/nothingHere"
|
|
`shouldThrow`
|
|
(\e -> ioeGetErrorType e == NoSuchThing)
|
|
|
|
it "getFileType, can't open directory" $
|
|
getFileType' "test/getFileTypeSpec/noPerms/forz"
|
|
`shouldThrow`
|
|
(\e -> ioeGetErrorType e == PermissionDenied)
|
|
|