1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
|
-- Copyright (c) 2020, Shayne Fletcher. All rights reserved.
-- SPDX-License-Identifier: BSD-3-Clause.
{-# LANGUAGE CPP #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE TypeApplications #-}
#include "ghclib_api.h"
import Test.Tasty
import Test.Tasty.HUnit
import System.FilePath
import System.Directory as Directory
import System.Environment
import qualified System.FilePath as FilePath
import System.IO.Extra
import Control.Monad
import Data.List.Extra
import Data.Maybe
import Data.Generics.Uniplate.Data
#if defined (GHC_9_10) || defined (GHC_9_8) || defined (GHC_9_6) || defined (GHC_9_4) || defined (GHC_9_2)
import GHC.Data.Bag
#if !defined (GHC_9_2)
import GHC.Driver.Errors.Types
#endif
import GHC.Types.Error
#endif
import Language.Haskell.GhclibParserEx.Dump
import Language.Haskell.GhclibParserEx.Fixity
import Language.Haskell.GhclibParserEx.GHC.Settings.Config
import Language.Haskell.GhclibParserEx.GHC.Parser
import Language.Haskell.GhclibParserEx.GHC.Hs
import Language.Haskell.GhclibParserEx.GHC.Hs.ExtendInstances
import Language.Haskell.GhclibParserEx.GHC.Hs.Expr
import Language.Haskell.GhclibParserEx.GHC.Hs.Pat
import Language.Haskell.GhclibParserEx.GHC.Hs.Type
-- We only test 'isImportQualifiedPost' at this time which requires >=
-- 8.10; avoid unused import warning.
#if defined (MIN_VERSION_ghc_lib_parser)
# if !MIN_VERSION_ghc_lib_parser(1, 0, 0) || MIN_VERSION_ghc_lib_parser(8, 10, 0)
import Language.Haskell.GhclibParserEx.GHC.Hs.ImpExp
# endif
#elif __GLASGOW_HASKELL__ >= 810
import Language.Haskell.GhclibParserEx.GHC.Hs.ImpExp
#endif
import Language.Haskell.GhclibParserEx.GHC.Driver.Flags()
import Language.Haskell.GhclibParserEx.GHC.Driver.Session
import Language.Haskell.GhclibParserEx.GHC.Types.Name.Reader
#if defined (GHC_9_10) || defined (GHC_9_8) || defined (GHC_9_6) || defined (GHC_9_4) || defined (GHC_9_2) || defined (GHC_9_0) || defined (GHC_8_10)
import GHC.Hs
#else
import HsSyn
#endif
#if defined (GHC_9_10) || defined (GHC_9_8) || defined (GHC_9_6) || defined (GHC_9_4) || defined (GHC_9_2) || defined (GHC_9_0)
import GHC.Types.SrcLoc
import GHC.Driver.Session
import GHC.Parser.Lexer
# if !defined (GHC_9_10) && !defined (GHC_9_8) && !defined (GHC_9_6)
import GHC.Utils.Outputable
# endif
# if !defined (GHC_9_0)
import GHC.Driver.Ppr
# if !defined (GHC_9_10) && !defined (GHC_9_8) && !defined (GHC_9_6) && !defined (GHC_9_4)
import GHC.Parser.Errors.Ppr
# endif
# endif
import GHC.Utils.Error
import GHC.Types.Name.Reader
import GHC.Types.Name.Occurrence
#else
import SrcLoc
import DynFlags
import Lexer
import Outputable
import ErrUtils
import RdrName
import OccName
#endif
import GHC.LanguageExtensions.Type
#if defined (GHC_8_8)
import Bag
#endif
basicDynFlags :: DynFlags
basicDynFlags =
defaultDynFlags fakeSettings
#if !defined (GHC_9_10) && !defined (GHC_9_8) && !defined (GHC_9_6)
fakeLlvmConfig
#endif
main :: IO ()
main = do
setEnv "TASTY_NUM_THREADS" "1"
setUnsafeGlobalDynFlags basicDynFlags
defaultMain tests
tests :: TestTree
tests = testGroup " All tests"
[ parseTests
, fixityTests
, extendInstancesTests
, expressionPredicateTests
, typePredicateTests
, patternPredicateTests
, dynFlagsTests
, nameTests
]
makeFile :: FilePath -> String -> IO FilePath
makeFile relPath contents = do
Directory.createDirectoryIfMissing True $ FilePath.takeDirectory relPath
writeFile relPath contents
return relPath
#if defined(GHC_9_10) || defined (GHC_9_8) || defined(GHC_9_6)
report :: DynFlags -> Bag (MsgEnvelope GhcMessage) -> String
report flags msgs = concat [ showSDoc flags msg | msg <- pprMsgEnvelopeBagWithLocDefault msgs ]
#elif defined (GHC_9_4)
report :: DynFlags -> Bag (MsgEnvelope GhcMessage) -> String
report flags msgs = concat [ showSDoc flags msg | msg <- pprMsgEnvelopeBagWithLoc msgs ]
#elif defined (GHC_9_2)
report :: DynFlags -> Bag (MsgEnvelope DecoratedSDoc) -> String
report flags msgs = concat [ showSDoc flags msg | msg <- pprMsgEnvelopeBagWithLoc msgs ]
#else
report :: DynFlags -> WarningMessages -> String
report flags msgs = concat [ showSDoc flags msg | msg <- pprErrMsgBagWithLoc msgs ]
#endif
chkParseResult :: DynFlags -> ParseResult a -> IO ()
chkParseResult flags = \case
POk s _ -> do
#if defined (GHC_9_10) || defined (GHC_9_8) || defined (GHC_9_6) || defined (GHC_9_4)
let (wrns, errs) = getPsMessages s
#elif defined (GHC_9_2)
let (wrns, errs) = getMessages s
#else
let (wrns, errs) = getMessages s flags
#endif
when (not (null errs) || not (null wrns)) $
#if defined (GHC_9_10) || defined (GHC_9_8) || defined (GHC_9_6) || defined (GHC_9_4)
assertFailure (
report flags (getMessages (GhcPsMessage <$> wrns)) ++
report flags (getMessages (GhcPsMessage <$> errs))
)
#elif defined (GHC_9_2)
assertFailure (report flags (fmap pprWarning wrns) ++ report flags (fmap pprError errs))
#else
assertFailure (report flags wrns ++ report flags errs)
#endif
#if defined (GHC_9_10) || defined (GHC_9_8) || defined (GHC_9_6) || defined (GHC_9_4)
PFailed s -> assertFailure (report flags $ getMessages (GhcPsMessage <$> snd (getPsMessages s)))
#elif defined (GHC_9_2)
PFailed s -> assertFailure (report flags $ fmap pprError (snd (getMessages s)))
#elif defined (GHC_9_0) || defined (GHC_8_10)
PFailed s -> assertFailure (report flags $ snd (getMessages s flags))
#else
PFailed _ loc err -> assertFailure (report flags $ unitBag $ mkPlainErrMsg flags loc err)
#endif
parseTests :: TestTree
parseTests = testGroup "Parse tests"
[
testCase "Module" $
chkParseResult flags (
parseModule (unlines
[ "module Foo (readMany) where"
, "import Data.List"
, "import Data.Maybe"
, "readMany = unfoldr $ listToMaybe . concatMap reads . tails"
]) flags)
, testCase "Module" $
chkParseResult flags (
parseModule (unlines
[ "module Foo (readMany) where"
, "import Data.List"
, "import Data.Maybe"
, "readMany = unfoldr $ listToMaybe . concatMap reads . tails"
]) flags)
, testCase "Signature" $
chkParseResult flags (
parseSignature (unlines
[ "signature Str where"
, "data Str"
, "empty :: Str"
, "append :: Str -> Str -> Str"
]) flags)
, testCase "Import" $
chkParseResult flags (
parseImport "import qualified \"foo-lib\" Foo as Bar hiding ((<.>))" flags)
, testCase "Statement" $
chkParseResult flags (
parseStatement "Foo foo <- bar" flags)
, testCase "Backpack" $
chkParseResult flags (
parseBackpack (unlines
[ "unit main where"
, " module Main where"
, " main = putStrLn \"Hello world!\""
]) flags)
, testCase "Expression" $
chkParseResult flags (
parseExpression "unfoldr $ listToMaybe . concatMap reads . tails" flags)
, testCase "Declaration (1)" $
chkParseResult flags (
parseDeclaration "fact n = if n <= 1 then 1 else n * fact (n - 1)" flags)
, testCase "Declaration (2)" $ -- Example from https://github.com/ndmitchell/hlint/issues/842.
chkParseResult flags (
parseDeclaration "infixr 4 <%@~" flags)
, testCase "File" $ withTempDir $ \tmpDir -> do
foo <- makeFile (tmpDir </> "Foo.hs") $ unlines
["{-# LANGUAGE ScopedTypeVariables #-}"
, "module Foo (readMany) where"
, "import Data.List"
, "import Data.Maybe"
, "readMany = unfoldr $ listToMaybe . concatMap reads . tails"
]
s <- readFile' foo
parsePragmasIntoDynFlags flags ([], []) foo s >>= \case
Left msg -> assertFailure msg
Right flags -> chkParseResult flags (parseFile foo flags s)
]
where
flags = basicDynFlags
#if defined (GHC_9_4) || defined (GHC_9_2) || defined (GHC_9_0)
moduleTest :: String -> DynFlags -> (Located HsModule -> IO ()) -> IO ()
#else
moduleTest :: String -> DynFlags -> (Located (HsModule GhcPs) -> IO ()) -> IO ()
#endif
moduleTest s flags test =
case parseModule s flags of
POk _ e -> test e
_ -> assertFailure "parse error"
exprTest :: String -> DynFlags -> (LHsExpr GhcPs -> IO ()) -> IO ()
exprTest s flags test =
case parseExpression s flags of
POk _ e -> test e
_ -> assertFailure "parse error"
stmtTest :: String -> DynFlags -> (LStmt GhcPs (LHsExpr GhcPs) -> IO ()) -> IO ()
stmtTest s flags test =
case parseStatement s flags of
POk _ e -> test e
_ -> assertFailure "parse error"
typeTest :: String -> DynFlags -> (LHsType GhcPs -> IO ()) -> IO ()
typeTest s flags test =
case parseType s flags of
POk _ e -> test e
_ -> assertFailure "parse error"
patTest :: String -> DynFlags -> (LPat GhcPs -> IO ()) -> IO ()
patTest s flags test =
case parsePattern s flags of
POk _ e -> test e
_ -> assertFailure "parse error"
fixityTests :: TestTree
fixityTests = testGroup "Fixity tests"
[ testCase "Expression" $
exprTest "1 + 2 * 3" flags
(\e ->
assertBool "parse tree not affected" $
#if defined (GHC_9_10) || defined (GHC_9_8) || defined (GHC_9_6) || defined (GHC_9_4) || defined (GHC_9_2)
showSDocUnsafe (showAstData BlankSrcSpan BlankEpAnnotations e) /=
showSDocUnsafe (showAstData BlankSrcSpan BlankEpAnnotations (applyFixities [] e))
#else
showSDocUnsafe (showAstData BlankSrcSpan e) /=
showSDocUnsafe (showAstData BlankSrcSpan (applyFixities [] e))
#endif
)
, testCase "Pattern" $
case parseDeclaration "f (1 : 2 :[]) = 1" flags of
POk _ d ->
assertBool "parse tree not affected" $
#if defined (GHC_9_10) || defined (GHC_9_8) || defined (GHC_9_6) || defined (GHC_9_4) || defined (GHC_9_2)
showSDocUnsafe (showAstData BlankSrcSpan BlankEpAnnotations d) /=
showSDocUnsafe (showAstData BlankSrcSpan BlankEpAnnotations (applyFixities [] d))
#else
showSDocUnsafe (showAstData BlankSrcSpan d) /=
showSDocUnsafe (showAstData BlankSrcSpan (applyFixities [] d))
#endif
PFailed{} -> assertFailure "parse error"
, testCase "fixitiesFromModule" $
case parseModule "infixl 4 <*!" flags of
POk _ m ->
assertBool "one fixity expected" $ not (null (fixitiesFromModule m))
PFailed{} -> assertFailure "parse error"
]
where
flags = basicDynFlags
extendInstancesTests :: TestTree
extendInstancesTests = testGroup "Extend instances tests"
[ testCase "Eq, Ord" $
exprTest "1 + 2 * 3" flags
(\e -> do
e' <- return $ applyFixities [] e
assertBool "astEq" $ astEq e e
assertBool "astEq" $ not (astEq e e')
e <- return $ extendInstances e
e' <- return $ extendInstances e'
assertBool "==" $ e == e
assertBool "/=" $ e /= e'
assertBool "< " $ e' < e
assertBool ">=" $ e >= e'
)
]
where
flags = basicDynFlags
typePredicateTests :: TestTree
typePredicateTests = testGroup "Type predicate tests"
[ testCase "isKindTyApp" $ test_with_exts [TypeApplications] "K @T" $ assert' . isKindTyApp
, testCase "isKindTyApp" $ test_with_exts [TypeApplications] "K T" $ assert' . not . isKindTyApp
]
where
assert' = assertBool ""
test_with_exts exts s = typeTest s (flags exts)
flags = foldl' xopt_set basicDynFlags
expressionPredicateTests :: TestTree
expressionPredicateTests = testGroup "Expression predicate tests"
[ testCase "isTag" $ test "foo" $ assert' . isTag "foo"
, testCase "isTag" $ test "bar" $ assert' . not . isTag "foo"
, testCase "isDol" $ test "f $ x" $ \case L _ (OpApp _ _ op _) -> assert' $ isDol op; _ -> assertFailure "unexpected"
, testCase "isDot" $ test "f . g" $ \case L _ (OpApp _ _ op _) -> assert' $ isDot op; _ -> assertFailure "unexpected"
, testCase "isReturn" $ test "return x" $ \case L _ (HsApp _ f _) -> assert' $ isReturn f; _ -> assertFailure "unexpected"
, testCase "isReturn" $ test "pure x" $ \case L _ (HsApp _ f _) -> assert' $ isReturn f; _ -> assertFailure "unexpected"
#if defined (GHC_9_10) || defined (GHC_9_8) || defined (GHC_9_6) || defined (GHC_9_4)
, testCase "isSection" $ test "(1 +)" $ \case L _ (HsPar _ _ x _) -> assert' $ isSection x; _ -> assertFailure "unexpected"
#else
, testCase "isSection" $ test "(1 +)" $ \case L _ (HsPar _ x) -> assert' $ isSection x; _ -> assertFailure "unexpected"
#endif
#if defined (GHC_9_10) || defined (GHC_9_8) || defined (GHC_9_6) || defined (GHC_9_4)
, testCase "isSection" $ test "(+ 1)" $ \case L _ (HsPar _ _ x _) -> assert' $ isSection x; _ -> assertFailure "unexpected"
#else
, testCase "isSection" $ test "(+ 1)" $ \case L _ (HsPar _ x) -> assert' $ isSection x; _ -> assertFailure "unexpected"
#endif
, testCase "isRecConstr" $ test "Foo {bar=1}" $ assert' . isRecConstr
, testCase "isRecUpdate" $ test "foo {bar=1}" $ assert' . isRecUpdate
, testCase "isVar" $ test "foo" $ assert' . isVar
, testCase "isVar" $ test "3" $ assert' . not. isVar
, testCase "isPar" $ test "(foo)" $ assert' . isPar
, testCase "isPar" $ test "foo" $ assert' . not . isPar
, testCase "isApp" $ test "f x" $ assert' . isApp
, testCase "isApp" $ test "x" $ assert' . not . isApp
, testCase "isOpApp" $ test "l `op` r" $ assert' . isOpApp
, testCase "isOpApp" $ test "op l r" $ assert' . not . isOpApp
, testCase "isAnyApp" $ test "l `op` r" $ assert' . isAnyApp
, testCase "isAnyApp" $ test "f x" $ assert' . isAnyApp
, testCase "isAnyApp" $ test "f x y" $ assert' . isAnyApp
, testCase "isDo" $ test "do pure ()" $ assert' . isDo
, testCase "isDo" $ test "12" $ assert' . not . isDo
, testCase "isAnyApp" $ test "(f x y)" $ assert' . not . isAnyApp
, testCase "isLexeme" $ test "foo" $ assert' . isLexeme
, testCase "isLexeme" $ test "3" $ assert' . isLexeme
, testCase "isLexeme" $ test "f x" $ assert' . not . isLexeme
, testCase "isLambda" $ test "\\x -> 12" $ assert' . isLambda
, testCase "isLambda" $ test "foo" $ assert' . not . isLambda
, testCase "isDotApp" $ test "f . g" $ assert' . isDotApp
, testCase "isDotApp" $ test "f $ g" $ assert' . not . isDotApp
, testCase "isTypeApp" $ test "f @Int" $ assert' . isTypeApp
#if defined (GHC_8_8) || defined (GHC_8_10)
, testCase "isTypeApp" $ test "f @ Int" $ assert' . isTypeApp
#else
, testCase "isTypeApp" $ test "f @ Int" $ assert' . not . isTypeApp
#endif
, testCase "isTypeApp" $ test "f" $ assert' . not . isTypeApp
, testCase "isWHNF" $ test "[]" $ assert' . isWHNF
, testCase "isWHNF" $ test "[1, 2]" $ assert' . isWHNF
, testCase "isWHNF" $ test "'f'" $ assert' . isWHNF
, testCase "isWHNF" $ test "foo" $ assert' . not . isWHNF
, testCase "isWHNF" $ test "42" $ assert' . not . isWHNF
, testCase "isWHNF" $ test "\\foo -> []" $ assert' . isWHNF
, testCase "isWHNF" $ test "(\\foo -> [])" $ assert' . isWHNF
, testCase "isWHNF" $ test "(\\foo -> []) x" $ assert' . not . isWHNF
, testCase "isWHNF" $ test "(42, \"foo\")" $ assert' . isWHNF
, testCase "isWHNF" $ test "(42, \"foo\") :: (Int, String)" $ assert' . isWHNF
, testCase "isWHNF" $ test "(\\x -> x * x) 3 :: Int" $ assert' . not . isWHNF
, testCase "isWHNF" $ test "Just foo" $ assert' . isWHNF
, testCase "isWHNF" $ test "Left foo" $ assert' . isWHNF
, testCase "isWHNF" $ test "Right foo" $ assert' . isWHNF
, testCase "isWHNF" $ test "POk s" $ assert' . not . isWHNF
, testCase "isLCase" $ test "\\case _ -> False" $ assert' . isLCase
, testCase "isLCase" $ test "case x of _ -> False" $ assert' . not . isLCase
, testCase "isSpliceDecl" $ test "$x" $ assert' . isSpliceDecl . unLoc
, testCase "isSpliceDecl" $ test "f$x" $ assert' . not . isSpliceDecl . unLoc
, testCase "isSpliceDecl" $ test "$(a + b)" $ assert' . isSpliceDecl . unLoc
#if !( defined(GHC_8_8) || defined(GHC_8_10) || defined (GHC_9_0) || defined (GHC_9_2) || defined(GHC_9_4) )
-- ghc api >= 9.6.1
, testCase "isTypedSplice" $ test "$$foo" $ assert' . isTypedSplice . unLoc
, testCase "isTypedSplice" $ test "$foo" $ assert' . not . isTypedSplice . unLoc
, testCase "isUntypedSplice" $ test "$foo" $ assert' . isUntypedSplice . unLoc
, testCase "isUntypedSplice" $ test "$$foo" $ assert' . not . isUntypedSplice . unLoc
#endif
, testCase "isQuasiQuoteExpr" $ test "[expr|1 + 2|]" $ assert' . isQuasiQuoteExpr
, testCase "isQuasiQuoteExpr" $ test "[expr(1 + 2)]" $ assert' . not . isQuasiQuoteExpr
, testCase "isWholeFrac" $ test "3.2e1" $ assert' . isWholeFrac . unLoc
, testCase "isWholeFrac" $ test "3.22e1" $ assert' . not . isWholeFrac . unLoc
, testCase "isMDo" $ test_with_exts [ RecursiveDo ] "mdo { pure () }" $ assert' . any isMDo . universeBi
, testCase "isListComp (1)" $ test "[ x + y | x <- xs, y <- ys ]" $ assert' . any isListComp . universeBi
, testCase "isListComp (2)" $ test_with_exts [ MonadComprehensions ] "[ x + y | x <- xs, y <- ys ]" $ assert' . any isMonadComp . universeBi
, testCase "isMonadComp (0)" $ test_with_exts [ MonadComprehensions ] "[ x + y | x <- Just 1, y <- Just 2 ]" $ assert' . not . any isListComp . universeBi
, testCase "isMonadComp (1)" $ test_with_exts [ MonadComprehensions ] "[ x + y | x <- Just 1, y <- Just 2 ]" $ assert' . any isMonadComp . universeBi
, testCase "isMonadComp (2)" $ test "[ x + y | x <- Just 1, y <- Just 2 ]" $ assert' . not . any isMonadComp . universeBi
, testCase "isMonadComp (3)" $ test "[ x + y | x <- Just 1, y <- Just 2 ]" $ assert' . any isListComp . universeBi
, testCase "strToVar" $ assert' . isVar . strToVar $ "foo"
, testCase "varToStr" $ test "[]" $ assert' . (== "[]") . varToStr
, testCase "varToStr" $ test "foo" $ assert' . (== "foo") . varToStr
, testCase "varToStr" $ test "3" $ assert' . null . varToStr
, testCase "isLetStmt" $ test_stmt "let x = 12" $ assert' . isLetStmt . unLoc
, testCase "isLetStmt" $ test_stmt "x <- pure 12" $ assert' . not . isLetStmt . unLoc
, testCase "isRecStmt" $ test_stmt_with_exts [ RecursiveDo ] "rec { xs <- Just (1:xs) }" $ assert' . isRecStmt . unLoc
, testCase "isRecStmt" $ test_stmt_with_exts [ RecursiveDo ] "xs <- Just (1 : xs)" $ assert' . not . isRecStmt . unLoc
]
where
assert' = assertBool ""
test s = exprTest s (flags [])
test_stmt s = stmtTest s (flags [])
test_with_exts exts s = exprTest s (flags exts)
test_stmt_with_exts exts s = stmtTest s (flags exts)
flags exts = foldl' xopt_set basicDynFlags
(exts ++
[ TemplateHaskell
, TemplateHaskellQuotes
, QuasiQuotes
, TypeApplications
, LambdaCase
]
)
patternPredicateTests :: TestTree
patternPredicateTests = testGroup "Pattern predicate tests"
[ testCase "patToStr" $ test "True" $ assert' . (== "True") . patToStr
, testCase "patToStr" $ test "False" $ assert' . (== "False") . patToStr
, testCase "patToStr" $ test "[]" $ assert' . (== "[]") . patToStr
, testCase "strToPat" $ assert' . (== "True") . patToStr . strToPat $ "True"
, testCase "strToPat" $ assert' . (== "False") . patToStr . strToPat $ "False"
, testCase "strToPat" $ assert' . (== "[]") . patToStr . strToPat $ "[]"
, testCase "fromPChar" $ test "'a'" $ assert' . (== Just 'a') . fromPChar
, testCase "fromPChar" $ test "\"a\"" $ assert' . isNothing . fromPChar
, testCase "isSplicePat" $ test "$(varP pylonExPtrVarName)" $ assert' . isSplicePat
]
where
assert' = assertBool ""
test = test_with_exts []
test_with_exts exts s = patTest s (flags exts)
flags exts = foldl' xopt_set basicDynFlags
(exts ++
[ TemplateHaskell
, TemplateHaskellQuotes
, QuasiQuotes
, TypeApplications
, LambdaCase
]
)
dynFlagsTests :: TestTree
dynFlagsTests = testGroup "DynFlags tests"
[ testCase "readExtension" $ assertBool "parse DeriveTraversable" (readExtension "DeriveTraversable" == Just DeriveTraversable)
, testCase "readExtension" $ assertBool "parse DeriveTravresable" (isNothing $ readExtension "DeriveTravresable")
, testCase "extensionImplications" $ do
Just (_, (es, ds)) <- return $ find (\(e, _) -> e == DeriveTraversable) extensionImplications
assertBool "no extensions disabled" (null ds)
assertBool "two extensions enabled" $ DeriveFunctor `elem` es && DeriveFoldable `elem` es
, testCase "check instance Bounded Language" $ assertBool "enumerate is null" (not (null (enumerate @Language)))
, testCase "check instance Ord Extension" $ assertBool "minBound >= maxBound" (minBound @Extension < maxBound @Extension)
, testCase "disable via pragma" $ withTempDir $ \tmpDir -> do
foo <- makeFile (tmpDir </> "Foo.hs") $ unlines
[ "{-# LANGUAGE NoStarIsType #-}"
, "{-# LANGUAGE ExplicitNamespaces #-}"
, "import GHC.TypeLits(KnownNat, type (+), type (*))"
]
s <- readFile' foo
-- If 'StarIsType' ends up enabled after
-- 'parsePragmasIntoDynflags' has done its work, we'll get a
-- parse error (see
-- https://github.com/ndmitchell/hlint/issues/971).
parsePragmasIntoDynFlags flags ([StarIsType], []) foo s >>= \case
Left msg -> assertFailure msg
Right flags -> chkParseResult flags (parseFile foo flags s)
#if defined (MIN_VERSION_ghc_lib_parser)
# if !MIN_VERSION_ghc_lib_parser(1, 0, 0) || MIN_VERSION_ghc_lib_parser(8, 10, 0)
, testCase "ImportQualifiedPost" $ do
case parseImport "import Foo qualified" (flags `xopt_set` ImportQualifiedPost) of
POk _ (L _ decl) -> assertBool "expected postpositive" (isImportQualifiedPost . ideclQualified $ decl)
PFailed _ -> assertFailure "parse error"
# endif
#elif __GLASGOW_HASKELL__ >= 810
, testCase "ImportQualifiedPost" $ do
case parseImport "import Foo qualified" (flags `xopt_set` ImportQualifiedPost) of
POk _ (L _ decl) -> assertBool "expected postpositive" (isImportQualifiedPost . ideclQualified $ decl)
PFailed _ -> assertFailure "parse error"
#endif
]
where
flags = basicDynFlags
nameTests :: TestTree
nameTests = testGroup "Name tests"
[ testCase "modName (1)" $
moduleTest "module Foo.Bar.Baz where" flags
(\n -> assertBool "Unexpected name string" $ modName n == "Foo.Bar.Baz")
, testCase "modName (2)" $
moduleTest "f x = x * 2" flags
(\n -> assertBool "Unexpected name string" $ modName n == "Main")
, testCase "isSymbolRdrName (1)" $ assertBool "Expected 'True'" $ isSymbolRdrName (mkRdrUnqual (mkVarOcc "+"))
, testCase "isSymbolRdrName (2)" $ assertBool "Expected 'False'" $ not (isSymbolRdrName (mkRdrUnqual (mkVarOcc "_foo")))
, testCase "isSymbolRdrName (3)" $ assertBool "Expected 'False'" $ not (isSymbolRdrName (mkRdrUnqual (mkVarOcc "foo'")))
, testCase "isSymbolRdrName (4)" $ assertBool "Expected 'True'" $ isSymbolRdrName (mkRdrUnqual (mkVarOcc ":+:"))
]
where
flags = basicDynFlags
|