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
|
module Parser.Statement (
testStep,
) where
import Control.Monad.Identity
import Control.Monad.State
import Data.Kind
import Data.Maybe
import qualified Data.Set as S
import Data.Text qualified as T
import qualified Data.Text.Lazy as TL
import Data.Typeable
import Text.Megaparsec hiding (State)
import Text.Megaparsec.Char
import qualified Text.Megaparsec.Char.Lexer as L
import Network (Network, Node)
import Parser.Core
import Parser.Expr
import Process (Process)
import Test
import Util
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
]
letStatement :: TestParser [TestStep]
letStatement = do
line <- getSourceLine
indent <- L.indentLevel
wsymbol "let"
off <- stateOffset <$> getParserState
name <- varName
osymbol "="
SomeExpr e <- someExpr
localState $ do
let tname = TypedVarName name
addVarName off tname
void $ eol
body <- testBlock indent
return [Let line tname e body]
forStatement :: TestParser [TestStep]
forStatement = do
line <- getSourceLine
ref <- L.indentLevel
wsymbol "for"
voff <- stateOffset <$> getParserState
name <- varName
wsymbol "in"
loff <- stateOffset <$> getParserState
SomeExpr e <- someExpr
let err = parseError $ FancyError loff $ S.singleton $ ErrorFail $ T.unpack $
"expected a list, expression has type '" <> textExprType e <> "'"
ExprListUnpacker unpack _ <- maybe err return $ exprListUnpacker e
symbol ":"
scn
indent <- L.indentGuard scn GT ref
localState $ do
let tname = TypedVarName name
addVarName voff tname
body <- testBlock indent
return [For line tname (unpack <$> e) body]
class (Typeable a, Typeable (ParamRep a)) => ParamType a where
type ParamRep a :: Type
type ParamRep a = a
parseParam :: proxy a -> TestParser (ParamRep a)
showParamType :: proxy a -> String
paramDefault :: proxy a -> TestParser (ParamRep a)
paramDefault _ = mzero
paramFromSomeExpr :: proxy a -> SomeExpr -> Maybe (ParamRep a)
paramFromSomeExpr _ (SomeExpr e) = cast e
instance ParamType SourceLine where
parseParam _ = mzero
showParamType _ = "<source line>"
instance ExprType a => ParamType (TypedVarName a) where
parseParam _ = newVarName
showParamType _ = "<variable>"
instance ExprType a => ParamType (Expr a) where
parseParam _ = typedExpr
showParamType _ = "<" ++ T.unpack (textExprType @a Proxy) ++ ">"
instance ParamType a => ParamType [a] where
type ParamRep [a] = [ParamRep a]
parseParam _ = listOf (parseParam @a Proxy)
showParamType _ = showParamType @a Proxy ++ " [, " ++ showParamType @a Proxy ++ " ...]"
paramDefault _ = return []
paramFromSomeExpr _ se@(SomeExpr e) = cast e <|> ((:[]) <$> paramFromSomeExpr @a Proxy se)
instance ParamType a => ParamType (Maybe a) where
type ParamRep (Maybe a) = Maybe (ParamRep a)
parseParam _ = Just <$> parseParam @a Proxy
showParamType _ = showParamType @a Proxy
paramDefault _ = return Nothing
paramFromSomeExpr _ se = Just <$> paramFromSomeExpr @a Proxy se
instance (ParamType a, ParamType b) => ParamType (Either a b) where
type ParamRep (Either a b) = Either (ParamRep a) (ParamRep b)
parseParam _ = try (Left <$> parseParam @a Proxy) <|> (Right <$> parseParam @b Proxy)
showParamType _ = showParamType @a Proxy ++ " or " ++ showParamType @b Proxy
paramFromSomeExpr _ se = (Left <$> paramFromSomeExpr @a Proxy se) <|> (Right <$> paramFromSomeExpr @b Proxy se)
data SomeParam f = forall a. ParamType a => SomeParam (Proxy a) (f (ParamRep a))
data CommandDef a = CommandDef [(String, SomeParam Proxy)] ([SomeParam Identity] -> a)
instance Functor CommandDef where
fmap f (CommandDef types ctor) = CommandDef types (f . ctor)
instance Applicative CommandDef where
pure x = CommandDef [] (\case [] -> x; _ -> error "command arguments mismatch")
CommandDef types1 ctor1 <*> CommandDef types2 ctor2 =
CommandDef (types1 ++ types2) $ \params ->
let (params1, params2) = splitAt (length types1) params
in ctor1 params1 $ ctor2 params2
param :: forall a. ParamType a => String -> CommandDef a
param name = CommandDef [(name, SomeParam (Proxy @a) Proxy)] $ \case
[SomeParam Proxy (Identity x)] -> fromJust $ cast x
_ -> error "command arguments mismatch"
data ParamOrContext a
instance ParamType a => ParamType (ParamOrContext a) where
type ParamRep (ParamOrContext a) = ParamRep a
parseParam _ = parseParam @a Proxy
showParamType _ = showParamType @a Proxy
paramDefault _ = gets testContext >>= \case
se@(SomeExpr ctx)
| Just e <- paramFromSomeExpr @a Proxy se -> return e
| otherwise -> fail $ showParamType @a Proxy <> " not available from context type '" <> T.unpack (textExprType ctx) <> "'"
paramOrContext :: forall a. ParamType a => String -> CommandDef a
paramOrContext name = CommandDef [(name, SomeParam (Proxy @(ParamOrContext a)) Proxy)] $ \case
[SomeParam Proxy (Identity x)] -> fromJust $ cast x
_ -> error "command arguments mismatch"
cmdLine :: CommandDef SourceLine
cmdLine = param ""
data InnerBlock
instance ParamType InnerBlock where
type ParamRep InnerBlock = [TestStep]
parseParam _ = mzero
showParamType _ = "<code block>"
instance ParamType TestStep where
parseParam _ = mzero
showParamType _ = "<code line>"
innerBlock :: CommandDef [TestStep]
innerBlock = CommandDef [("", SomeParam (Proxy @InnerBlock) Proxy)] $ \case
[SomeParam Proxy (Identity x)] -> fromJust $ cast x
_ -> error "command arguments mismatch"
command :: String -> CommandDef TestStep -> TestParser [TestStep]
command name (CommandDef types ctor) = do
indent <- L.indentLevel
line <- getSourceLine
wsymbol name
localState $ do
restOfLine indent [] line $ map (fmap $ \(SomeParam p@(_ :: Proxy p) Proxy) -> SomeParam p $ Nothing @(ParamRep p)) types
where
restOfLine :: Pos -> [(Pos, [(String, SomeParam Maybe)])] -> SourceLine -> [(String, SomeParam Maybe)] -> TestParser [TestStep]
restOfLine cmdi partials line params = choice
[do void $ lookAhead eol
iparams <- forM params $ \case
(_, SomeParam (p :: Proxy p) Nothing)
| Just (Refl :: p :~: SourceLine) <- eqT -> return $ SomeParam p $ Identity line
| Just (Refl :: p :~: InnerBlock) <- eqT -> SomeParam p . Identity <$> restOfParts cmdi partials
(sym, SomeParam p Nothing) -> choice
[ SomeParam p . Identity <$> paramDefault p
, fail $ "missing " ++ (if null sym then "" else "'" ++ sym ++ "' ") ++ showParamType p
]
(_, SomeParam (p :: Proxy p) (Just x)) -> return $ SomeParam p $ Identity x
return [ctor iparams]
,do symbol ":"
scn
indent <- L.indentLevel
restOfParts cmdi ((indent, params) : partials)
,do tryParams cmdi partials line [] params
]
restOfParts :: Pos -> [(Pos, [(String, SomeParam Maybe)])] -> TestParser [TestStep]
restOfParts cmdi [] = testBlock cmdi
restOfParts cmdi partials@((partIndent, params) : rest) = do
scn
pos <- L.indentLevel
line <- getSourceLine
optional eof >>= \case
Just _ -> return []
_ | pos < partIndent -> restOfParts cmdi rest
| pos == partIndent -> (++) <$> restOfLine cmdi partials line params <*> restOfParts cmdi partials
| otherwise -> L.incorrectIndent EQ partIndent pos
tryParam sym (SomeParam (p :: Proxy p) cur) = do
when (not $ null sym) $ wsymbol sym
when (isJust cur) $ do
fail $ "multiple " ++ (if null sym then "unnamed" else "'" ++ sym ++ "'") ++ " parameters"
SomeParam p . Just <$> parseParam @p Proxy
tryParams cmdi partIndent line prev ((sym, p) : ps) = choice $
(if null sym then reverse else id) {- try unnamed parameter as last option -} $
[do p' <- tryParam sym p
restOfLine cmdi partIndent line $ concat [reverse prev, [(sym, p')], ps]
,do tryParams cmdi partIndent line ((sym, p) : prev) ps
]
tryParams _ _ _ _ [] = mzero
testLocal :: TestParser [TestStep]
testLocal = do
ref <- L.indentLevel
wsymbol "local"
symbol ":"
void $ eol
indent <- L.indentGuard scn GT ref
localState $ testBlock indent
testWith :: TestParser [TestStep]
testWith = do
ref <- L.indentLevel
wsymbol "with"
off <- stateOffset <$> getParserState
ctx@(SomeExpr (_ :: Expr ctxe)) <- someExpr
let expected =
[ SomeExprType @Network Proxy
, SomeExprType @Node Proxy
, SomeExprType @Process Proxy
]
notAllowed <- flip allM expected $ \case
SomeExprType (Proxy :: Proxy a) | Just (Refl :: ctxe :~: a) <- eqT -> return False
_ -> return True
when notAllowed $ parseError $ FancyError off $ S.singleton $ ErrorFail $ T.unpack $
"expected " <> T.intercalate ", " (map (("'"<>) . (<>"'") . textSomeExprType) expected) <> ", expression has type '" <> textExprType @ctxe Proxy <> "'"
symbol ":"
void $ eol
indent <- L.indentGuard scn GT ref
localState $ do
modify $ \s -> s { testContext = ctx }
testBlock indent
testSubnet :: TestParser [TestStep]
testSubnet = command "subnet" $ Subnet
<$> param ""
<*> paramOrContext "of"
<*> innerBlock
testNode :: TestParser [TestStep]
testNode = command "node" $ DeclNode
<$> param ""
<*> paramOrContext "on"
<*> innerBlock
testSpawn :: TestParser [TestStep]
testSpawn = command "spawn" $ Spawn
<$> param "as"
<*> paramOrContext "on"
<*> innerBlock
testSend :: TestParser [TestStep]
testSend = command "send" $ Send
<$> paramOrContext "to"
<*> param ""
testExpect :: TestParser [TestStep]
testExpect = command "expect" $ Expect
<$> cmdLine
<*> paramOrContext "from"
<*> param ""
<*> param "capture"
<*> innerBlock
testFlush :: TestParser [TestStep]
testFlush = command "flush" $ Flush
<$> paramOrContext "from"
<*> param ""
testGuard :: TestParser [TestStep]
testGuard = command "guard" $ Guard
<$> cmdLine
<*> param ""
testDisconnectNode :: TestParser [TestStep]
testDisconnectNode = command "disconnect_node" $ DisconnectNode
<$> paramOrContext ""
<*> innerBlock
testDisconnectNodes :: TestParser [TestStep]
testDisconnectNodes = command "disconnect_nodes" $ DisconnectNodes
<$> paramOrContext ""
<*> innerBlock
testDisconnectUpstream :: TestParser [TestStep]
testDisconnectUpstream = command "disconnect_upstream" $ DisconnectUpstream
<$> paramOrContext ""
<*> innerBlock
testPacketLoss :: TestParser [TestStep]
testPacketLoss = command "packet_loss" $ PacketLoss
<$> param ""
<*> paramOrContext "on"
<*> innerBlock
testWait :: TestParser [TestStep]
testWait = do
wsymbol "wait"
return [Wait]
testBlock :: Pos -> TestParser [TestStep]
testBlock indent = concat <$> go
where
go = do
scn
pos <- L.indentLevel
optional eof >>= \case
Just _ -> return []
_ | pos < indent -> return []
| pos == indent -> (:) <$> testStep <*> go
| otherwise -> L.incorrectIndent EQ indent pos
testStep :: TestParser [TestStep]
testStep = choice
[ letStatement
, forStatement
, testLocal
, testWith
, testSubnet
, testNode
, testSpawn
, testSend
, testExpect
, testFlush
, testGuard
, testDisconnectNode
, testDisconnectNodes
, testDisconnectUpstream
, testPacketLoss
, testWait
]
|