mirror of
https://github.com/github/semantic.git
synced 2024-12-23 14:54:16 +03:00
54 lines
1.9 KiB
Haskell
54 lines
1.9 KiB
Haskell
module Data.Syntax.Assignment.Spec where
|
|
|
|
import Data.Syntax.Assignment
|
|
import Prologue
|
|
import Test.Hspec
|
|
|
|
spec :: Spec
|
|
spec = do
|
|
describe "Applicative" $ do
|
|
it "matches in sequence" $
|
|
runAssignment ((,) <$> red <*> red) [ast Red "hello" [], ast Red "world" []] `shouldBe` Just ([], (Out "hello", Out "world"))
|
|
|
|
describe "Alternative" $ do
|
|
it "attempts multiple alternatives" $
|
|
runAssignment (green <|> red) [ast Red "hello" []] `shouldBe` Just ([], Out "hello")
|
|
|
|
it "matches repetitions" $
|
|
runAssignment (many red) [ast Red "colourless" [], ast Red "green" [], ast Red "ideas" [], ast Red "sleep" [], ast Red "furiously" []] `shouldBe` Just ([], [Out "colourless", Out "green", Out "ideas", Out "sleep", Out "furiously"])
|
|
|
|
it "matches one-or-more repetitions against one or more input nodes" $
|
|
runAssignment (some red) [ast Red "hello" []] `shouldBe` Just ([], [Out "hello"])
|
|
|
|
describe "rule" $ do
|
|
it "matches nodes with the same symbol" $
|
|
runAssignment red [ast Red "hello" []] `shouldBe` Just ([], Out "hello")
|
|
|
|
describe "children" $ do
|
|
it "advances past the current node" $
|
|
fst <$> runAssignment (children (pure (Out ""))) [ast Red "a" []] `shouldBe` Just []
|
|
|
|
it "matches if its subrule matches" $
|
|
() <$ runAssignment (children red) [ast Blue "b" [ast Red "a" []]] `shouldBe` Just ()
|
|
|
|
it "does not match if its subrule does not match" $
|
|
runAssignment (children red) [ast Blue "b" [ast Green "a" []]] `shouldBe` Nothing
|
|
|
|
ast :: Grammar -> ByteString -> [AST Grammar] -> AST Grammar
|
|
ast g s c = Rose (Node g s) c
|
|
|
|
data Grammar = Red | Green | Blue
|
|
deriving (Eq, Show)
|
|
|
|
data Out = Out ByteString
|
|
deriving (Eq, Show)
|
|
|
|
red :: Assignment Grammar Out
|
|
red = Out <$ rule Red <*> content
|
|
|
|
green :: Assignment Grammar Out
|
|
green = Out <$ rule Green <*> content
|
|
|
|
blue :: Assignment Grammar Out
|
|
blue = Out <$ rule Blue <*> content
|