mirror of
https://github.com/anoma/juvix.git
synced 2024-12-12 14:28:08 +03:00
5de0026d83
Co-authored-by: Paul Cadman <git@paulcadman.dev>
79 lines
2.2 KiB
Haskell
79 lines
2.2 KiB
Haskell
module Termination.Negative (module Termination.Negative) where
|
|
|
|
import Base
|
|
import Juvix.Compiler.Internal.Translation.FromAbstract.Analysis.Termination
|
|
|
|
type FailMsg = String
|
|
|
|
data NegTest = NegTest
|
|
{ _name :: String,
|
|
_relDir :: Path Rel Dir,
|
|
_file :: Path Rel File,
|
|
_checkErr :: TerminationError -> Maybe FailMsg
|
|
}
|
|
|
|
testDescr :: NegTest -> TestDescr
|
|
testDescr NegTest {..} =
|
|
let tRoot = root <//> _relDir
|
|
file' = tRoot <//> _file
|
|
in TestDescr
|
|
{ _testName = _name,
|
|
_testRoot = tRoot,
|
|
_testAssertion = Single $ do
|
|
entryPoint <- set entryPointNoStdlib True <$> defaultEntryPointCwdIO file'
|
|
result <- runIOEither entryPoint upToInternal
|
|
case mapLeft fromJuvixError result of
|
|
Left (Just lexError) -> whenJust (_checkErr lexError) assertFailure
|
|
Left Nothing -> assertFailure "The termination checker did not find an error."
|
|
Right _ -> assertFailure "An error ocurred but it was not by the termination checker."
|
|
}
|
|
|
|
allTests :: TestTree
|
|
allTests =
|
|
testGroup
|
|
"Termination negative tests"
|
|
(map (mkTest . testDescr) tests)
|
|
|
|
root :: Path Abs Dir
|
|
root = relToProject $(mkRelDir "tests/negative/Termination")
|
|
|
|
tests :: [NegTest]
|
|
tests =
|
|
[ NegTest
|
|
"Mutual recursive functions non terminating"
|
|
$(mkRelDir ".")
|
|
$(mkRelFile "Mutual.juvix")
|
|
$ \case
|
|
ErrNoLexOrder {} -> Nothing,
|
|
NegTest
|
|
"Another mutual block non terminating"
|
|
$(mkRelDir ".")
|
|
$(mkRelFile "Ord.juvix")
|
|
$ \case
|
|
ErrNoLexOrder {} -> Nothing,
|
|
NegTest
|
|
"Only one function, f, marked terminating in a mutual block"
|
|
$(mkRelDir ".")
|
|
$(mkRelFile "TerminatingF.juvix")
|
|
$ \case
|
|
ErrNoLexOrder {} -> Nothing,
|
|
NegTest
|
|
"Only one function, g, marked terminating in a mutual block"
|
|
$(mkRelDir ".")
|
|
$(mkRelFile "TerminatingG.juvix")
|
|
$ \case
|
|
ErrNoLexOrder {} -> Nothing,
|
|
NegTest
|
|
"Tree"
|
|
$(mkRelDir ".")
|
|
$(mkRelFile "Data/Tree.juvix")
|
|
$ \case
|
|
ErrNoLexOrder {} -> Nothing,
|
|
NegTest
|
|
"Quicksort is not terminating"
|
|
$(mkRelDir ".")
|
|
$(mkRelFile "Data/QuickSort.juvix")
|
|
$ \case
|
|
ErrNoLexOrder {} -> Nothing
|
|
]
|