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
|
{-# LANGUAGE TemplateHaskell #-}
{-# OPTIONS_GHC -Wno-orphans #-}
module Parser (
parseTestFile,
) where
import Control.Lens (Lens', makeLenses, (^.), (.~))
import Control.Monad.State
import Data.Char
import Data.Set (Set)
import qualified Data.Set as S
import Data.Text (Text)
import Data.Text qualified as T
import qualified Data.Text.Lazy as TL
import qualified Data.Text.Lazy.IO as TL
import Data.Void
import Generics.Deriving.Base as G
import Text.Megaparsec hiding (State)
import Text.Megaparsec.Char
import qualified Text.Megaparsec.Char.Lexer as L
import System.Exit
import Test
type TestParser = ParsecT Void TestStream (State (Set ProcName))
type TestStream = TL.Text
instance MonadEval TestParser where
lookupStringVar _ = return T.empty
skipLineComment :: TestParser ()
skipLineComment = L.skipLineComment $ TL.pack "#"
scn :: TestParser ()
scn = L.space space1 skipLineComment empty
sc :: TestParser ()
sc = L.space (void $ takeWhile1P Nothing f) skipLineComment empty
where f x = x == ' ' || x == '\t'
wordChar :: TestParser (Token TestStream)
wordChar = alphaNumChar <|> char '_'
lexeme :: TestParser a -> TestParser a
lexeme = L.lexeme sc
symbol :: String -> TestParser ()
symbol = void . L.symbol sc . TL.pack
wsymbol :: String -> TestParser ()
wsymbol str = void $ lexeme $ string (TL.pack str) <* notFollowedBy wordChar
toplevel :: TestParser a -> TestParser a
toplevel = L.nonIndented scn
block :: (a -> [b] -> TestParser c) -> TestParser a -> TestParser b -> TestParser c
block merge header item = L.indentBlock scn $ do
h <- header
choice
[ do try $ void $ lexeme $ char ':'
return $ L.IndentSome Nothing (merge h) item
, L.IndentNone <$> merge h []
]
listOf :: TestParser a -> TestParser [a]
listOf item = do
sc
x <- item
sc
(x:) <$> choice [ char ',' >> listOf item, return [] ]
nodeName :: TestParser NodeName
nodeName = label "network node name" $ lexeme $ do
c <- lowerChar
cs <- takeWhileP Nothing (\x -> isAlphaNum x || x == '_' || x == '-')
return $ NodeName $ TL.toStrict (c `TL.cons` cs)
procName :: TestParser ProcName
procName = label "process name" $ lexeme $ do
c <- lowerChar
cs <- takeWhileP Nothing (\x -> isAlphaNum x || x == '_' || x == '-')
return $ ProcName $ TL.toStrict (c `TL.cons` cs)
identifier :: TestParser Text
identifier = do
TL.toStrict <$> takeWhile1P Nothing (\x -> isAlphaNum x || x == '_')
varName :: TestParser VarName
varName = do
VarName . T.splitOn (T.singleton '.') . TL.toStrict <$>
takeWhile1P Nothing (\x -> isAlphaNum x || x == '_' || x == '.')
varExpansion :: TestParser VarName
varExpansion = do
void $ char '$'
choice
[ VarName . (:[]) <$> identifier
,do void $ char '{'
name <- varName
void $ char '}'
return name
]
quotedString :: TestParser (Expr Text)
quotedString = label "string" $ lexeme $ do
symbol "\""
let inner = choice
[ char '"' >> return []
, takeWhile1P Nothing (`notElem` "\"\\$") >>= \s -> (StringLit (TL.toStrict s):) <$> inner
,do void $ char '\\'
c <- choice
[ char '\\' >> return '\\'
, char '"' >> return '"'
, char '$' >> return '$'
, char 'n' >> return '\n'
, char 'r' >> return '\r'
, char 't' >> return '\t'
]
(StringLit (T.singleton c) :) <$> inner
,do name <- varExpansion
(StringVar name :) <$> inner
]
Concat <$> inner
regex :: TestParser (Expr Regex)
regex = label "regular expression" $ lexeme $ do
symbol "/"
let inner = choice
[ char '/' >> return []
, takeWhile1P Nothing (`notElem` "/\\$") >>= \s -> (StringLit (TL.toStrict s) :) <$> inner
,do void $ char '\\'
s <- choice
[ char '/' >> return (StringLit $ T.singleton '/')
, anySingle >>= \c -> return (StringLit $ T.pack ['\\', c])
]
(s:) <$> inner
,do name <- varExpansion
(StringVar name :) <$> inner
]
expr <- Regex <$> inner
_ <- eval expr -- test regex parsing with empty variables
return expr
stringExpr :: TestParser (Expr Text)
stringExpr = choice
[ quotedString
, StringVar <$> varName
]
boolExpr :: TestParser (Expr Bool)
boolExpr = do
x <- stringExpr
sc
op <- choice
[ symbol "==" >> return (==)
, symbol "/=" >> return (/=)
]
y <- stringExpr
sc
return $ BinOp op x y
class GInit f where ginit :: f x
instance GInit U1 where ginit = U1
instance GInit (K1 i (Maybe a)) where ginit = K1 Nothing
instance GInit f => GInit (M1 i c f) where ginit = M1 ginit
instance (GInit f, GInit h) => GInit (f :*: h) where ginit = ginit :*: ginit
data Param a = forall b. Param String (Lens' a (Maybe b)) (TestParser b)
getSourceLine :: TestParser SourceLine
getSourceLine = do
pstate <- statePosState <$> getParserState
return $ SourceLine $ T.concat
[ T.pack $ sourcePosPretty $ pstateSourcePos pstate
, T.pack ": "
, TL.toStrict $ TL.takeWhile (/='\n') $ pstateInput pstate
]
command :: (Generic b, GInit (Rep b)) => String -> [Param b] -> (SourceLine -> b -> TestParser a) -> TestParser [a]
command name params fin = do
origline <- getSourceLine
wsymbol name
let blockHelper line prev cur = L.indentBlock scn $ helper line prev cur
helper line prev cur = choice $ concat
[[ do void $ eol
L.IndentNone . (:[]) <$> fin line cur
]
,[ do void $ lexeme (char ':')
return $ L.IndentSome Nothing (return . concat) $ do
line' <- getSourceLine
blockHelper line' prev cur
]
, flip map params $ \(Param sym l p) -> do
x <- if null sym
then do
x <- p
when (any null prev) $ do
fail $ "multiple unnamed parameters"
return x
else do
wsymbol sym
when (any (== sym) prev) $ do
fail $ "multiple '" ++ sym ++ "' parameters"
p
helper line (sym:prev) (l .~ Just x $ cur)
]
blockHelper origline [] (G.to ginit)
data SpawnBuilder = SpawnBuilder
{ _spawnBuilderProc :: Maybe ProcName
, _spawnBuilderNode :: Maybe NodeName
}
deriving (Generic)
makeLenses ''SpawnBuilder
testSpawn :: TestParser [TestStep]
testSpawn = command "spawn"
[ Param "on" spawnBuilderNode nodeName
, Param "as" spawnBuilderProc procName
] $ \_ b -> Spawn
<$> (maybe (fail "missing 'as' <proc>") return $ b ^. spawnBuilderProc)
<*> (maybe (fail "missing 'on' <node>") return $ b ^. spawnBuilderNode)
data SendBuilder = SendBuilder
{ _sendBuilderProc :: Maybe ProcName
, _sendBuilderLine :: Maybe (Expr Text)
}
deriving (Generic)
makeLenses ''SendBuilder
testSend :: TestParser [TestStep]
testSend = command "send"
[ Param "to" sendBuilderProc procName
, Param "" sendBuilderLine quotedString
] $ \_ b -> Send
<$> (maybe (fail "missing 'to' <proc>") return $ b ^. sendBuilderProc)
<*> (maybe (fail "missing line to send") return $ b ^. sendBuilderLine)
data ExpectBuilder = ExpectBuilder
{ _expectBuilderProc :: Maybe ProcName
, _expectBuilderRegex :: Maybe (Expr Regex)
, _expectBuilderCaptures :: Maybe [VarName]
}
deriving (Generic)
makeLenses ''ExpectBuilder
testExpect :: TestParser [TestStep]
testExpect = command "expect"
[ Param "from" expectBuilderProc procName
, Param "" expectBuilderRegex regex
, Param "capture" expectBuilderCaptures (listOf $ VarName . (:[]) <$> identifier)
] $ \s b -> Expect s
<$> (maybe (fail "missing 'from' <proc>") return $ b ^. expectBuilderProc)
<*> (maybe (fail "missing regex to match") return $ b ^. expectBuilderRegex)
<*> (maybe (return []) return $ b ^. expectBuilderCaptures)
data GuardBuilder = GuardBuilder
{ _guardBuilderExpr :: Maybe (Expr Bool)
}
deriving (Generic)
makeLenses ''GuardBuilder
testGuard :: TestParser [TestStep]
testGuard = command "guard"
[ Param "" guardBuilderExpr boolExpr
] $ \s b -> Guard s
<$> (maybe (fail "missing guard expression") return $ b ^. guardBuilderExpr)
testWait :: TestParser [TestStep]
testWait = do
wsymbol "wait"
return [Wait]
parseTestDefinition :: TestParser Test
parseTestDefinition = label "test definition" $ toplevel $ do
block (\name steps -> return $ Test name $ concat steps) header $ choice
[ testSpawn
, testSend
, testExpect
, testGuard
, testWait
]
where header = do
wsymbol "test"
lexeme $ TL.toStrict <$> takeWhileP (Just "test name") (/=':')
parseTestDefinitions :: TestParser [Test]
parseTestDefinitions = do
tests <- many parseTestDefinition
eof
return tests
parseTestFile :: FilePath -> IO [Test]
parseTestFile path = do
content <- TL.readFile path
case evalState (runParserT parseTestDefinitions path content) S.empty of
Left err -> putStr (errorBundlePretty err) >> exitFailure
Right tests -> return tests
|