ghc-mod/test/Main.hs

59 lines
2.0 KiB
Haskell
Raw Normal View History

{-# LANGUAGE CPP, ScopedTypeVariables #-}
import Spec
import Dir
import Control.Exception as E
2014-08-20 03:14:27 +00:00
import Control.Monad (void)
2015-03-04 20:48:21 +00:00
import Data.List
2014-08-20 03:14:27 +00:00
import Language.Haskell.GhcMod (debugInfo)
import System.Process
import Test.Hspec
import TestUtils
2014-08-20 03:14:27 +00:00
main :: IO ()
main = do
2015-03-04 20:48:21 +00:00
let sandboxes = [ "test/data/cabal-project"
, "test/data/check-packageid"
, "test/data/duplicate-pkgver/"
, "test/data/broken-cabal/"
]
2014-08-20 03:14:27 +00:00
genSandboxCfg dir = withDirectory dir $ \cwdir -> do
system ("sed 's|@CWD@|" ++ cwdir ++ "|g' cabal.sandbox.config.in > cabal.sandbox.config")
pkgDirs =
2015-03-04 20:48:21 +00:00
[ "test/data/cabal-project/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d"
, "test/data/check-packageid/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d"
, "test/data/duplicate-pkgver/.cabal-sandbox/i386-osx-ghc-7.6.3-packages.conf.d"]
genGhcPkgCache dir = system $ "ghc-pkg recache --force -f" ++ dir
2015-03-04 20:48:21 +00:00
genSandboxCfg `mapM_` sandboxes
genGhcPkgCache `mapM_` pkgDirs
2015-03-04 20:48:21 +00:00
2015-08-17 09:20:43 +00:00
let stackDir = "test/data/stack-project"
void $ withDirectory_ stackDir $ do
void $ system "stack init --force"
void $ system "stack setup"
void $ system "stack build"
2015-08-17 09:20:43 +00:00
2015-03-04 20:48:21 +00:00
let caches = [ "setup-config"
, "setup-config.ghc-mod.cabal-helper"
, "setup-config.ghc-mod.cabal-components"
2015-03-28 01:33:42 +00:00
, "setup-config.ghc-mod.resolved-components"
, "setup-config.ghc-mod.package-options"
, "setup-config.ghc-mod.package-db-stack"
2015-03-04 20:48:21 +00:00
, "ghc-mod.cache"
]
cachesFindExp :: String
cachesFindExp = unwords $ intersperse "-o " $ map ("-name "++) caches
cleanCmd = "find test \\( "++ cachesFindExp ++" \\) -exec rm {} \\;"
2015-03-28 01:33:42 +00:00
putStrLn $ "$ " ++ cleanCmd
2015-03-04 20:48:21 +00:00
void $ system cleanCmd
2014-08-20 03:14:27 +00:00
void $ system "cabal --version"
void $ system "ghc --version"
(putStrLn =<< runD debugInfo)
`E.catch` (\(_ :: E.SomeException) -> return () )
hspec spec