module Test.Util.Paths (
getGoldenDir
, getRelPath
, inNixBuild
) where
import Control.Monad.IO.Class (liftIO)
import Data.FileEmbed (makeRelativeToProject)
import Language.Haskell.TH.Syntax (Exp, Q, liftData)
import System.Environment (lookupEnv)
getGoldenDir :: Q Exp
getGoldenDir :: Q Exp
getGoldenDir = FilePath -> Q Exp
getRelPath FilePath
"golden"
getRelPath :: FilePath -> Q Exp
getRelPath :: FilePath -> Q Exp
getRelPath FilePath
relPath = do
absPath <- FilePath -> Q FilePath
makeRelativeToProject FilePath
relPath
useRel <- liftIO inNixBuild
liftData (if useRel then relPath else absPath)
inNixBuild :: IO Bool
inNixBuild :: IO Bool
inNixBuild = do
let testEnv :: FilePath -> IO Bool
testEnv = (Maybe FilePath -> Bool) -> IO (Maybe FilePath) -> IO Bool
forall a b. (a -> b) -> IO a -> IO b
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (Bool -> (FilePath -> Bool) -> Maybe FilePath -> Bool
forall b a. b -> (a -> b) -> Maybe a -> b
maybe Bool
False (Bool -> Bool
not (Bool -> Bool) -> (FilePath -> Bool) -> FilePath -> Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. FilePath -> Bool
forall a. [a] -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null)) (IO (Maybe FilePath) -> IO Bool)
-> (FilePath -> IO (Maybe FilePath)) -> FilePath -> IO Bool
forall b c a. (b -> c) -> (a -> b) -> a -> c
. FilePath -> IO (Maybe FilePath)
lookupEnv
haveNixBuildDir <- FilePath -> IO Bool
testEnv FilePath
"NIX_BUILD_TOP"
inNixShell <- testEnv "IN_NIX_SHELL"
pure (haveNixBuildDir && not inNixShell)