Improve documentation and tests for file creation
This commit is contained in:
parent
a5942ff026
commit
a31c9d1e88
@ -661,6 +661,8 @@ executeFile fp args
|
|||||||
--
|
--
|
||||||
-- - `PermissionDenied` if output directory cannot be written to
|
-- - `PermissionDenied` if output directory cannot be written to
|
||||||
-- - `AlreadyExists` if destination file already exists
|
-- - `AlreadyExists` if destination file already exists
|
||||||
|
-- - `NoSuchThing` if any of the parent components of the path
|
||||||
|
-- do not exist
|
||||||
createRegularFile :: FileMode -> Path Abs -> IO ()
|
createRegularFile :: FileMode -> Path Abs -> IO ()
|
||||||
createRegularFile fm dest =
|
createRegularFile fm dest =
|
||||||
bracket (SPI.openFd (fromAbs dest) SPI.WriteOnly (Just fm)
|
bracket (SPI.openFd (fromAbs dest) SPI.WriteOnly (Just fm)
|
||||||
@ -675,6 +677,8 @@ createRegularFile fm dest =
|
|||||||
--
|
--
|
||||||
-- - `PermissionDenied` if output directory cannot be written to
|
-- - `PermissionDenied` if output directory cannot be written to
|
||||||
-- - `AlreadyExists` if destination directory already exists
|
-- - `AlreadyExists` if destination directory already exists
|
||||||
|
-- - `NoSuchThing` if any of the parent components of the path
|
||||||
|
-- do not exist
|
||||||
createDir :: FileMode -> Path Abs -> IO ()
|
createDir :: FileMode -> Path Abs -> IO ()
|
||||||
createDir fm dest = createDirectory (fromAbs dest) fm
|
createDir fm dest = createDirectory (fromAbs dest) fm
|
||||||
|
|
||||||
@ -685,6 +689,8 @@ createDir fm dest = createDirectory (fromAbs dest) fm
|
|||||||
--
|
--
|
||||||
-- - `PermissionDenied` if output directory cannot be written to
|
-- - `PermissionDenied` if output directory cannot be written to
|
||||||
-- - `AlreadyExists` if destination file already exists
|
-- - `AlreadyExists` if destination file already exists
|
||||||
|
-- - `NoSuchThing` if any of the parent components of the path
|
||||||
|
-- do not exist
|
||||||
--
|
--
|
||||||
-- Note: calls `symlink`
|
-- Note: calls `symlink`
|
||||||
createSymlink :: Path Abs -- ^ destination file
|
createSymlink :: Path Abs -- ^ destination file
|
||||||
|
@ -50,6 +50,11 @@ spec = beforeAll_ (upTmpDir >> setupFiles) $ afterAll_ cleanupFiles $
|
|||||||
removeDirIfExists "newDir"
|
removeDirIfExists "newDir"
|
||||||
|
|
||||||
-- posix failures --
|
-- posix failures --
|
||||||
|
it "createDir, parent directories do not exist" $
|
||||||
|
createDir' "some/thing/dada"
|
||||||
|
`shouldThrow`
|
||||||
|
(\e -> ioeGetErrorType e == NoSuchThing)
|
||||||
|
|
||||||
it "createDir, can't write to output directory" $
|
it "createDir, can't write to output directory" $
|
||||||
createDir' "noWritePerms/newDir"
|
createDir' "noWritePerms/newDir"
|
||||||
`shouldThrow`
|
`shouldThrow`
|
||||||
|
@ -48,6 +48,11 @@ spec = beforeAll_ (upTmpDir >> setupFiles) $ afterAll_ cleanupFiles $
|
|||||||
removeFileIfExists "newDir"
|
removeFileIfExists "newDir"
|
||||||
|
|
||||||
-- posix failures --
|
-- posix failures --
|
||||||
|
it "createRegularFile, parent directories do not exist" $
|
||||||
|
createRegularFile' "some/thing/dada"
|
||||||
|
`shouldThrow`
|
||||||
|
(\e -> ioeGetErrorType e == NoSuchThing)
|
||||||
|
|
||||||
it "createRegularFile, can't write to destination directory" $
|
it "createRegularFile, can't write to destination directory" $
|
||||||
createRegularFile' "noWritePerms/newDir"
|
createRegularFile' "noWritePerms/newDir"
|
||||||
`shouldThrow`
|
`shouldThrow`
|
||||||
|
@ -49,6 +49,11 @@ spec = beforeAll_ (upTmpDir >> setupFiles) $ afterAll_ cleanupFiles $
|
|||||||
removeFileIfExists "newSymL"
|
removeFileIfExists "newSymL"
|
||||||
|
|
||||||
-- posix failures --
|
-- posix failures --
|
||||||
|
it "createSymlink, parent directories do not exist" $
|
||||||
|
createSymlink' "some/thing/dada" "lala"
|
||||||
|
`shouldThrow`
|
||||||
|
(\e -> ioeGetErrorType e == NoSuchThing)
|
||||||
|
|
||||||
it "createSymlink, can't write to destination directory" $
|
it "createSymlink, can't write to destination directory" $
|
||||||
createSymlink' "noWritePerms/newDir" "lala"
|
createSymlink' "noWritePerms/newDir" "lala"
|
||||||
`shouldThrow`
|
`shouldThrow`
|
||||||
|
Loading…
Reference in New Issue
Block a user