1
1
mirror of https://github.com/github/semantic.git synced 2024-12-01 17:59:10 +03:00
semantic/semantic-python/test/Directive.hs

59 lines
2.0 KiB
Haskell
Raw Normal View History

2019-08-16 19:34:56 +03:00
module Directive ( Directive (..)
, parseDirective
, toProcess
) where
import Control.Applicative
2019-08-16 19:34:56 +03:00
import Data.ByteString.Char8 (ByteString)
import qualified Data.ByteString.Char8 as ByteString
import Data.Coerce
import System.Process
import qualified Text.Trifecta as Trifecta
{- |
Directives are parsed from magic comments in test files and
describe to the test suite how to query the results of a given test
case. A directive that looks like this:
2019-08-16 19:34:56 +03:00
@
# CHECK-JQ: has("mach")
@
would, after converting the contents of the file to a Core expression,
dump that expression to JSON and pipe said JSON to @jq -e
'has("mach")@, which will return an error code unless the passed JSON
is a hash containing the @"mach"@ key.
This syntax was inspired by LLVM's
[FileCheck](https://llvm.org/docs/CommandGuide/FileCheck.html). This
approach is less direct than tests that pattern-match over an AST, but
enable us to keep the text of test cases in close proximity to the
assertions we want to make, which improves maintainability
significantly and has been a successful strategy for the LLVM and Rust
projects.
-}
data Directive = JQ ByteString -- | @# CHECK-JQ: expr@
| Fails -- | @# CHECK-FAILS@ fails unless translation fails.
deriving (Eq, Show)
2019-08-16 19:34:56 +03:00
2019-08-16 20:20:08 +03:00
fails :: Trifecta.Parser Directive
fails = Fails <$ Trifecta.string "# CHECK-FAILS"
jq :: Trifecta.Parser Directive
jq = do
2019-08-16 19:34:56 +03:00
Trifecta.string "# CHECK-JQ: "
2019-08-16 20:20:08 +03:00
JQ . ByteString.pack <$> many (Trifecta.noneOf "\n")
directive :: Trifecta.Parser Directive
directive = fails <|> jq
2019-08-16 19:34:56 +03:00
parseDirective :: ByteString -> Either String Directive
parseDirective = Trifecta.foldResult (Left . show) Right
. Trifecta.parseByteString (directive <* Trifecta.eof) mempty
toProcess :: Directive -> CreateProcess
toProcess (JQ d) = proc "jq" ["-e", ByteString.unpack d]
toProcess x = error ("can't call toProcess on " <> show x)