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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
|
import AbstractCurry.Types
import AbstractCurry.Files
import AbstractCurry.Select
import AbstractCurry.Build
import AbstractCurry.Pretty (showCProg)
import AbstractCurry.Transform (renameCurryModule,updCProg,updQNamesInCProg)
import AnsiCodes
import Char (toUpper)
import Distribution
import FilePath ((</>), pathSeparator, takeDirectory)
import qualified FlatCurry.Types as FC
import FlatCurry.Files
import qualified FlatCurry.Goodies as FCG
import GetOpt
import IO
import List
import Maybe (fromJust, isJust)
import ReadNumeric (readNat)
import System (system, exitWith, getArgs, getPID, getEnviron)
import CheckDetUsage (checkDetUse, containsDetOperations)
import ContractUsage
import CurryCheckConfig (packagePath, packageVersion)
import DefaultRuleUsage (checkDefaultRules, containsDefaultRules)
import PropertyUsage
import SimplifyPostConds (simplifyPostConditionsWithTheorems)
import TheoremUsage
import UsageCheck (checkBlacklistUse, checkSetUse)
maxArity :: Int
maxArity = 5
ccBanner :: String
ccBanner = unlines [bannerLine,bannerText,bannerLine]
where
bannerText = "CurryCheck: a tool for testing Curry programs (Version " ++
packageVersion ++ " of 14/12/2017)"
bannerLine = take (length bannerText) (repeat '-')
usageText :: String
usageText = usageInfo ("Usage: curry check [options] <module names>\n") options
data Options = Options
{ optHelp :: Bool
, optVerb :: Int
, optKeep :: Bool
, optMaxTest :: Int
, optMaxFail :: Int
, optDefType :: String
, optSource :: Bool
, optProp :: Bool
, optSpec :: Bool
, optDet :: Bool
, optProof :: Bool
, optColor :: Bool
, optMainProg :: String
}
defaultOptions :: Options
defaultOptions = Options
{ optHelp = False
, optVerb = 1
, optKeep = False
, optMaxTest = 0
, optMaxFail = 0
, optDefType = "Ordering"
, optSource = True
, optProp = True
, optSpec = True
, optDet = True
, optProof = True
, optColor = True
, optMainProg = ""
}
options :: [OptDescr (Options -> Options)]
options =
[ Option "h?" ["help"] (NoArg (\opts -> opts { optHelp = True }))
"print help and exit"
, Option "q" ["quiet"] (NoArg (\opts -> opts { optVerb = 0 }))
"run quietly (no output, only exit code)"
, Option "v" ["verbosity"]
(OptArg (maybe (checkVerb 3) (safeReadNat checkVerb)) "<n>")
"verbosity level:\n0: quiet (same as `-q')\n1: show test names (default)\n2: show more information about test generation\n3: show test data (same as `-v')\n4: show also some debug information"
, Option "k" ["keep"] (NoArg (\opts -> opts { optKeep = True }))
"keep temporarily generated program files"
, Option "m" ["maxtests"]
(ReqArg (safeReadNat (\n opts -> opts { optMaxTest = n })) "<n>")
"maximal number of tests (default: 100)"
, Option "f" ["maxfails"]
(ReqArg (safeReadNat (\n opts -> opts { optMaxFail = n })) "<n>")
"maximal number of condition failures\n(default: 10000)"
, Option "d" ["deftype"]
(ReqArg checkDefType "<t>")
"type for defaulting polymorphic tests:\nBool | Int | Char | Ordering (default)"
, Option "" ["nosource"]
(NoArg (\opts -> opts { optSource = False }))
"do not perform source code checks"
, Option "" ["noprop"]
(NoArg (\opts -> opts { optProp = False }))
"do not perform any property tests"
, Option "" ["nospec"]
(NoArg (\opts -> opts { optSpec = False }))
"do not perform specification/postcondition tests"
, Option "" ["nodet"]
(NoArg (\opts -> opts { optDet = False }))
"do not perform determinism tests"
, Option "" ["noproof"]
(NoArg (\opts -> opts { optProof = False }))
"do not consider proofs to simplify properties"
, Option "" ["nocolor"]
(NoArg (\opts -> opts { optColor = False }))
"do not use colors when showing tests"
, Option "" ["mainprog"]
(ReqArg (\s opts -> opts { optMainProg = s }) "<prog>")
"name of generated main program\n(default: TEST<pid>.curry)"
]
where
safeReadNat opttrans s opts =
let numError = error "Illegal number argument (try `-h' for help)" in
maybe numError
(\ (n,rs) -> if null rs then opttrans n opts else numError)
(readNat s)
checkVerb n opts = if n>=0 && n<5
then opts { optVerb = n }
else error "Illegal verbosity level (try `-h' for help)"
checkDefType s opts = if s `elem` ["Bool","Int","Char","Ordering"]
then opts { optDefType = s }
else error "Illegal default type (try `-h' for help)"
processOpts :: Options -> IO Options
processOpts opts = do
isterm <- hIsTerminalDevice stdout
return $ if isterm then opts else opts { optColor = False}
isQuiet :: Options -> Bool
isQuiet opts = optVerb opts == 0
putStrIfNormal :: Options -> String -> IO ()
putStrIfNormal opts s = unless (isQuiet opts) (putStr s >> hFlush stdout)
putStrIfVerbose :: Options -> String -> IO ()
putStrIfVerbose opts s = when (optVerb opts > 1) (putStr s >> hFlush stdout)
putStrLnIfDebug :: Options -> String -> IO ()
putStrLnIfDebug opts s = when (optVerb opts > 3) (putStrLn s >> hFlush stdout)
withColor :: Options -> (String -> String) -> String -> String
withColor opts coloring = if optColor opts then coloring else id
defTypeSuffix :: String
defTypeSuffix = "_ON_BASETYPE"
postCondSuffix :: String
postCondSuffix = "SatisfiesPostCondition"
satSpecSuffix :: String
satSpecSuffix = "SatisfiesSpecification"
isDetSuffix :: String
isDetSuffix = "IsDeterministic"
data Test = PropTest QName CTypeExpr Int
| IOTest QName Int
| EquivTest QName QName QName CTypeExpr Int
isIOTest :: Test -> Bool
isIOTest t = case t of IOTest _ _ -> True
_ -> False
isUnitTest :: Test -> Bool
isUnitTest t = case t of PropTest _ texp _ -> null (argTypes texp)
_ -> False
isPropTest :: Test -> Bool
isPropTest t = case t of PropTest _ texp _ -> not (null (argTypes texp))
_ -> False
isEquivTest :: Test -> Bool
isEquivTest t = case t of EquivTest _ _ _ _ _ -> True
_ -> False
getTestName :: Test -> QName
getTestName (PropTest n _ _) = n
getTestName (IOTest n _) = n
getTestName (EquivTest n _ _ _ _) = n
getTestLine :: Test -> Int
getTestLine (PropTest _ _ n) = n
getTestLine (IOTest _ n) = n
getTestLine (EquivTest _ _ _ _ n) = n
genTestMsg :: String -> Test -> String
genTestMsg file test =
snd (getTestName test) ++
" (module " ++ file ++ ", line " ++ show (getTestLine test) ++ ")"
data TestModule = TestModule
{ orgModuleName :: String
, testModuleName :: String
, staticErrors :: [String]
, propTests :: [Test]
, generators :: [QName]
}
staticErrorTestMod :: String -> [String] -> TestModule
staticErrorTestMod modname staterrs =
TestModule modname modname staterrs [] []
testThisModule :: TestModule -> Bool
testThisModule tm = null (staticErrors tm) && not (null (propTests tm))
userTestDataOfModule :: TestModule -> [(QName,Bool)]
userTestDataOfModule testmod = concatMap testDataOf (propTests testmod)
where
testDataOf (IOTest _ _) = []
testDataOf (PropTest _ texp _) =
map (\t -> (t,False)) (filter (\ (mn,_) -> mn /= preludeName)
(unionOn tconsOf (argTypes texp)))
testDataOf (EquivTest _ _ _ texp _) =
map (\t -> (t,True)) (unionOn tconsOf (argTypes texp))
equivPropTypes :: TestModule -> [QName]
equivPropTypes testmod = concatMap equivTypesOf (propTests testmod)
where
equivTypesOf (IOTest _ _) = []
equivTypesOf (PropTest _ _ _) = []
equivTypesOf (EquivTest _ _ _ texp _) = tconsOf (resultType texp)
createTests :: Options -> String -> TestModule -> [CFuncDecl]
createTests opts mainmod tm = map createTest (propTests tm)
where
createTest test =
cfunc (mainmod, (genTestName $ getTestName test)) 0 Public
(ioType (maybeType stringType))
(case test of
PropTest name t _ -> propBody name t test
IOTest name _ -> ioTestBody name test
EquivTest name f1 f2 t _ ->
if "'TERMINATE" `isSuffixOf` map toUpper (snd name)
then equivBodyTerm f1 f2 t test
else equivBodyAny f1 f2 t test
)
msgOf test = string2ac $ genTestMsg (orgModuleName tm) test
testmname = testModuleName tm
genTestName (modName, fName) = fName ++ "_" ++ modNameToId modName
easyCheckFuncName arity =
if arity>maxArity
then error $ "Properties with more than " ++ show maxArity ++
" parameters are currently not supported!"
else (easyCheckExecModule,"checkWithValues" ++ show arity)
equivBodyTerm f1 f2 texp test =
let xvar = (1,"x")
pvalOfFunc = ctype2pvalOf mainmod "pvalOf" (resultType texp)
in propOrEquivBody (map (\t -> (t,True)) (argTypes texp)) test
(CLambda [CPVar xvar]
(applyF (easyCheckModule,"<~>")
[applyE pvalOfFunc [applyF f1 [CVar xvar]],
applyE pvalOfFunc [applyF f2 [CVar xvar]]]))
equivBodyAny f1 f2 texp test =
let xvar = (1,"x")
pvar = (2,"p")
pvalOfFunc = ctype2pvalOf mainmod "peval" (resultType texp)
in propOrEquivBody
(map (\t -> (t,True)) (argTypes texp) ++
[(ctype2BotType mainmod (resultType texp), False)])
test
(CLambda [CPVar xvar, CPVar pvar]
(applyF (easyCheckModule,"<~>")
[applyE pvalOfFunc [applyF f1 [CVar xvar], CVar pvar],
applyE pvalOfFunc [applyF f2 [CVar xvar], CVar pvar]]))
propBody qname texp test =
propOrEquivBody (map (\t -> (t,False)) (argTypes texp))
test (CSymbol (testmname,snd qname))
propOrEquivBody argtypes test propexp =
[simpleRule [] $
CLetDecl [CLocalPat (CPVar msgvar) (CSimpleRhs (msgOf test) [])]
(applyF (easyCheckExecModule, "checkPropWithMsg")
[ CVar msgvar
, applyF (easyCheckFuncName (length argtypes)) $
[configOpWithMaxFail, CVar msgvar] ++
(map (\ (t,genpart) ->
applyF (easyCheckModule,"valuesOfSearchTree")
[if isPAKCS || useUserDefinedGen t || isFloatType t
then type2genop mainmod tm genpart t
else applyF (searchTreeModule,"someSearchTree")
[constF (pre "unknown")]])
argtypes) ++
[propexp]
])]
where
useUserDefinedGen te = case te of
CTVar _ -> error "No polymorphic generator!"
CFuncType _ _ -> error "No generator for functional types!"
CTCons (_,tc) _ -> isJust
(find (\qn -> "gen"++tc == snd qn) (generators tm))
configOpWithMaxTest =
let n = optMaxTest opts
in if n==0 then stdConfigOp
else applyF (easyCheckExecModule,"setMaxTest")
[cInt n, stdConfigOp]
configOpWithMaxFail =
let n = optMaxFail opts
in if n==0 then configOpWithMaxTest
else applyF (easyCheckExecModule,"setMaxFail")
[cInt n, configOpWithMaxTest]
msgvar = (0,"msg")
stdConfigOp = constF (easyCheckConfig opts)
ioTestBody (_, name) test =
[simpleRule [] $ applyF (easyCheckExecModule,"checkPropIOWithMsg")
[stdConfigOp, msgOf test, CSymbol (testmname,name)]]
easyCheckConfig :: Options -> QName
easyCheckConfig opts =
(easyCheckExecModule,
if isQuiet opts then "quietConfig" else
if optVerb opts > 2 then "verboseConfig"
else "easyConfig")
type2genop :: String -> TestModule -> Bool -> CTypeExpr -> CExpr
type2genop _ _ _ (CTVar _) = error "No polymorphic generator!"
type2genop _ _ _ (CFuncType _ _) = error "No generator for functional types!"
type2genop mainmod tm genpart (CTCons qt targs) =
applyF (typename2genopname mainmod (generators tm) genpart qt)
(map (type2genop mainmod tm genpart) targs)
isFloatType :: CTypeExpr -> Bool
isFloatType texp = case texp of CTCons tc [] -> tc == (preludeName,"Float")
_ -> False
typename2genopname :: String -> [QName] -> Bool -> QName -> QName
typename2genopname mainmod definedgenops genpart (mn,tc)
| genpart
= (mainmod, "gen_" ++ modNameToId mn ++ "_" ++ transQN tc ++ "_PARTIAL")
| isJust maybeuserdefined
= fromJust maybeuserdefined
| mn==preludeName
= (generatorModule, "gen" ++ transQN tc)
| otherwise
= (mainmod, "gen_" ++ modNameToId mn ++ "_" ++ transQN tc ++
if genpart then "_PARTIAL" else "")
where
maybeuserdefined = find (\qn -> "gen"++tc == snd qn) definedgenops
transQN :: String -> String
transQN tcons | tcons == "[]" = "List"
| tcons == ":" = "Cons"
| tcons == "()" = "Unit"
| tcons == "(,)" = "Pair"
| tcons == "(,,)" = "Triple"
| tcons == "(,,,)" = "Tuple4"
| tcons == "(,,,,)" = "Tuple5"
| otherwise = tcons
makeAllPublic :: CurryProg -> CurryProg
makeAllPublic (CurryProg modname imports typedecls functions opdecls) =
CurryProg modname stimports typedecls publicFunctions opdecls
where
stimports = if generatorModule `elem` imports &&
searchTreeModule `notElem` imports
then searchTreeModule : imports
else imports
publicFunctions = map makePublic $ map ignoreComment functions
ignoreComment :: CFuncDecl -> CFuncDecl
(CmtFunc _ name arity visibility typeExpr rules) =
CFunc name arity visibility typeExpr rules
ignoreComment x@(CFunc _ _ _ _ _) = x
makePublic :: CFuncDecl -> CFuncDecl
makePublic (CFunc name arity _ typeExpr rules) =
CFunc name arity Public typeExpr rules
makePublic (CmtFunc cmt name arity _ typeExpr rules) =
CmtFunc cmt name arity Public typeExpr rules
classifyTests :: Options -> CurryProg -> [CFuncDecl] -> [Test]
classifyTests opts prog = map makeProperty
where
makeProperty test =
if isPropIOType (funcType test)
then IOTest tname 0
else maybe (PropTest tname (funcType test) 0)
(\ (f1,f2) -> EquivTest tname f1 f2
(poly2defaultType (optDefType opts)
(funcTypeOf f1))
0)
(isEquivProperty test)
where tname = funcName test
funcTypeOf f = maybe (error $ "Cannot find type of " ++ show f ++ "!")
funcType
(find (\fd -> funcName fd == f) (functions prog))
transformTests :: Options -> String -> CurryProg
-> IO ([CFuncDecl],[CFuncDecl],CurryProg)
transformTests opts srcdir
prog@(CurryProg mname imps typeDecls functions opDecls) = do
theofuncs <- if optProof opts then getTheoremFunctions srcdir prog
else return []
simpfuncs <- simplifyPostConditionsWithTheorems (optVerb opts) theofuncs funcs
let preCondOps = preCondOperations simpfuncs
postCondOps = map ((\ (mn,fn) -> (mn, fromPostCondName fn)) . funcName)
(funDeclsWith isPostCondName simpfuncs)
specOps = map ((\ (mn,fn) -> (mn, fromSpecName fn)) . funcName)
(funDeclsWith isSpecName simpfuncs)
postCondTests = concatMap (genPostCondTest preCondOps postCondOps) funcs
specOpTests = concatMap (genSpecTest preCondOps specOps) funcs
(realtests,ignoredtests) = partition fst $
if not (optProp opts)
then []
else concatMap (poly2default (optDefType opts)) $
filter (\fd -> funcName fd `notElem` map funcName theofuncs)
usertests ++
(if optSpec opts then postCondTests ++ specOpTests else [])
return (map snd realtests,
map snd ignoredtests,
CurryProg mname
(nub (easyCheckModule:imps))
typeDecls
(simpfuncs ++ map snd (realtests ++ ignoredtests))
opDecls)
where
(usertests, funcs) = partition isProperty functions
transformDetTests :: Options -> [String] -> CurryProg
-> ([CFuncDecl],[CFuncDecl],CurryProg)
transformDetTests opts prooffiles
(CurryProg mname imports typeDecls functions opDecls) =
(map snd realtests, map snd ignoredtests,
CurryProg mname
(nub (easyCheckModule:imports))
typeDecls
(map (revertDetOpTrans detOpNames) functions ++
map snd (realtests ++ ignoredtests))
opDecls)
where
preCondOps = preCondOperations functions
detOpTests = genDetOpTests prooffiles preCondOps functions
detOpNames = map (stripIsDet . funcName) detOpTests
stripIsDet (mn,fn) = (mn, take (length fn -15) fn)
(realtests,ignoredtests) = partition fst $
if not (optProp opts)
then []
else concatMap (poly2default (optDefType opts))
(if optDet opts then detOpTests else [])
preCondOperations :: [CFuncDecl] -> [QName]
preCondOperations fdecls =
map ((\ (mn,fn) -> (mn,fromPreCondName fn)) . funcName)
(funDeclsWith isPreCondName fdecls)
funDeclsWith :: (String -> Bool) -> [CFuncDecl] -> [CFuncDecl]
funDeclsWith pred = filter (pred . snd . funcName)
propResultType :: CTypeExpr -> CTypeExpr
propResultType te = case te of
CFuncType from to -> CFuncType from (propResultType to)
_ -> baseType (easyCheckModule,"Prop")
genPostCondTest :: [QName] -> [QName] -> CFuncDecl -> [CFuncDecl]
genPostCondTest prefuns postops (CmtFunc _ qf ar vis texp rules) =
genSpecTest prefuns postops (CFunc qf ar vis texp rules)
genPostCondTest prefuns postops (CFunc qf@(mn,fn) _ _ texp _) =
if qf `notElem` postops then [] else
[CFunc (mn, fn ++ postCondSuffix) ar Public
(propResultType texp)
[simpleRule (map CPVar cvars) $
if qf `elem` prefuns
then applyF (easyCheckModule,"==>")
[applyF (mn,toPreCondName fn) (map CVar cvars), postprop]
else postprop
]]
where
ar = arityOfType texp
cvars = map (\i -> (i,"x"++show i)) [1 .. ar]
rcall = applyF qf (map CVar cvars)
postprop = applyF (easyCheckModule,"always")
[applyF (mn,toPostCondName fn)
(map CVar cvars ++ [rcall])]
genSpecTest :: [QName] -> [QName] -> CFuncDecl -> [CFuncDecl]
genSpecTest prefuns specops (CmtFunc _ qf ar vis texp rules) =
genSpecTest prefuns specops (CFunc qf ar vis texp rules)
genSpecTest prefuns specops (CFunc qf@(mn,fn) _ _ texp _) =
if qf `notElem` specops then [] else
[CFunc (mn, fn ++ satSpecSuffix) ar Public
(propResultType texp)
[simpleRule (map CPVar cvars) $
addPreCond (applyF (easyCheckModule,"<~>")
[applyF qf (map CVar cvars),
applyF (mn,toSpecName fn) (map CVar cvars)])]]
where
cvars = map (\i -> (i,"x"++show i)) [1 .. ar]
ar = arityOfType texp
addPreCond exp = if qf `elem` prefuns
then applyF (easyCheckModule,"==>")
[applyF (mn,toPreCondName fn) (map CVar cvars), exp]
else exp
revertDetOpTrans :: [QName] -> CFuncDecl -> CFuncDecl
revertDetOpTrans detops (CmtFunc _ qf ar vis texp rules) =
revertDetOpTrans detops (CFunc qf ar vis texp rules)
revertDetOpTrans detops fdecl@(CFunc qf@(mn,fn) ar vis texp _) =
if qf `elem` detops
then CFunc qf ar vis texp [simpleRule [] (constF (mn,fn++"_ORGNDFUN"))]
else fdecl
genDetOpTests :: [String] -> [QName] -> [CFuncDecl] -> [CFuncDecl]
genDetOpTests prooffiles prefuns fdecls =
map (genDetProp prefuns) (filter isDetOrgOp fdecls)
where
isDetOrgOp fdecl =
let fn = snd (funcName fdecl)
in "_ORGNDFUN" `isSuffixOf` fn &&
not (existsProofFor (determinismTheoremFor (take (length fn - 9) fn))
prooffiles)
genDetProp :: [QName] -> CFuncDecl -> CFuncDecl
genDetProp prefuns (CmtFunc _ qf ar vis texp rules) =
genDetProp prefuns (CFunc qf ar vis texp rules)
genDetProp prefuns (CFunc (mn,fn) ar _ texp _) =
CFunc (mn, forg ++ isDetSuffix) ar Public
(propResultType texp)
[simpleRule (map CPVar cvars) $
if (mn,forg) `elem` prefuns
then applyF (easyCheckModule,"==>")
[applyF (mn,toPreCondName forg) (map CVar cvars), rnumcall]
else rnumcall ]
where
forg = take (length fn - 9) fn
cvars = map (\i -> (i,"x"++show i)) [1 .. ar]
forgcall = applyF (mn,forg) (map CVar cvars)
rnumcall = applyF (easyCheckModule,"#<") [forgcall, cInt 2]
poly2default :: String -> CFuncDecl -> [(Bool,CFuncDecl)]
poly2default dt (CmtFunc _ name arity vis ftype rules) =
poly2default dt (CFunc name arity vis ftype rules)
poly2default dt fdecl@(CFunc (mn,fname) arity vis ftype _)
| isPolyType ftype
= [(False,fdecl)
,(True, CFunc (mn,fname++defTypeSuffix) arity vis
(poly2defaultType dt ftype)
[simpleRule [] (applyF (mn,fname) [])])
]
| otherwise
= [(True,fdecl)]
poly2defaultType :: String -> CTypeExpr -> CTypeExpr
poly2defaultType dt texp = p2dt texp
where
p2dt (CTVar _) = baseType (pre dt)
p2dt (CFuncType t1 t2) = CFuncType (p2dt t1) (p2dt t2)
p2dt (CTCons ct ts) = CTCons ct (map p2dt ts)
orgTestName :: QName -> QName
orgTestName (mn,tname)
| defTypeSuffix `isSuffixOf` tname
= orgTestName (mn, stripSuffix tname defTypeSuffix)
| isDetSuffix `isSuffixOf` tname
= orgTestName (mn, take (length tname - 15) tname)
| postCondSuffix `isSuffixOf` tname
= orgTestName (mn, stripSuffix tname postCondSuffix)
| satSpecSuffix `isSuffixOf` tname
= orgTestName (mn, stripSuffix tname satSpecSuffix)
| otherwise = (mn,tname)
analyseModule :: Options -> String -> IO [TestModule]
analyseModule opts modname = do
putStrIfNormal opts $ withColor opts blue $
"Analyzing module '" ++ modname ++ "'...\n"
catch (readCurryWithParseOptions modname (setQuiet True defaultParams) >>=
analyseCurryProg opts modname)
(\_ -> return [staticErrorTestMod modname
["Module '"++modname++"': incorrect source program"]])
staticProgAnalysis :: Options -> String -> String -> CurryProg
-> IO ([String],[(QName,String)])
staticProgAnalysis opts modname progtxt prog = do
putStrIfVerbose opts "Checking source code for static errors...\n"
useerrs <- if optSource opts then checkBlacklistUse prog else return []
seterrs <- if optSource opts then readFlatCurry modname >>= checkSetUse
else return []
let defruleerrs = if optSource opts then checkDefaultRules prog else []
untypedprog <- readUntypedCurry modname
let detuseerrs = if optSource opts then checkDetUse untypedprog else []
contracterrs = checkContractUse prog
staticerrs = concat [seterrs,useerrs,defruleerrs,detuseerrs,contracterrs]
missingCPP =
if (containsDefaultRules prog || containsDetOperations untypedprog)
&& not (containsPPOptionLine progtxt)
then ["'" ++ modname ++
"' uses default rules or det. operations but not the preprocessor!",
"Hint: insert line: {-# OPTIONS_CYMAKE -F --pgmF=currypp #-}"]
else []
return (missingCPP,staticerrs)
analyseCurryProg :: Options -> String -> CurryProg -> IO [TestModule]
analyseCurryProg opts modname orgprog = do
let prog = renameProp2EasyCheck orgprog
(topdir,srcfilename) <- lookupModuleSourceInLoadPath modname >>=
return .
maybe (error $ "Source file of module '"++modname++"' not found!") id
let srcdir = takeDirectory srcfilename
putStrLnIfDebug opts $ "Source file: " ++ srcfilename
prooffiles <- if optProof opts then getProofFiles srcdir else return []
unless (null prooffiles) $ putStrIfVerbose opts $
unlines ("Proof files found:" : map ("- " ++) prooffiles)
progtxt <- readFile srcfilename
(missingCPP,staticoperrs) <- staticProgAnalysis opts modname progtxt prog
let words = map firstWord (lines progtxt)
staticerrs = missingCPP ++ map (showOpError words) staticoperrs
putStrIfVerbose opts "Generating property tests...\n"
(rawTests,ignoredTests,pubmod) <-
transformTests opts srcdir . renameCurryModule (modname++"_PUBLIC")
. makeAllPublic $ prog
let (rawDetTests,ignoredDetTests,pubdetmod) =
transformDetTests opts prooffiles
. renameCurryModule (modname++"_PUBLICDET")
. makeAllPublic $ prog
unless (not (null staticerrs) || null rawTests && null rawDetTests) $
putStrIfNormal opts $
"Properties to be tested:\n" ++
unwords (map (snd . funcName) (rawTests++rawDetTests)) ++ "\n"
unless (not (null staticerrs) || null ignoredTests && null ignoredDetTests) $
putStrIfNormal opts $
"Properties ignored for testing:\n" ++
unwords (map (snd . funcName) (ignoredTests++ignoredDetTests)) ++ "\n"
let tm = TestModule modname
(progName pubmod)
staticerrs
(addLinesNumbers words
(classifyTests opts pubmod rawTests))
(generatorsOfProg pubmod)
dettm = TestModule modname
(progName pubdetmod)
[]
(addLinesNumbers words
(classifyTests opts pubdetmod rawDetTests))
(generatorsOfProg pubmod)
when (testThisModule tm) $ writeCurryProgram opts topdir pubmod ""
when (testThisModule dettm) $ writeCurryProgram opts topdir pubdetmod ""
return (if testThisModule dettm then [tm,dettm] else [tm])
where
showOpError words (qf,err) =
snd qf ++ " (module " ++ modname ++ ", line " ++
show (getLineNumber words qf) ++"): " ++ err
addLinesNumbers words = map (addLineNumber words)
addLineNumber :: [String] -> Test -> Test
addLineNumber words (PropTest name texp _) =
PropTest name texp $ getLineNumber words (orgTestName name)
addLineNumber words (IOTest name _) =
IOTest name $ getLineNumber words (orgTestName name)
addLineNumber words (EquivTest name f1 f2 texp _) =
EquivTest name f1 f2 texp $ getLineNumber words (orgTestName name)
getLineNumber :: [String] -> QName -> Int
getLineNumber words (_, name) = maybe 0 (+1) (elemIndex name words)
generatorsOfProg :: CurryProg -> [QName]
generatorsOfProg = map funcName . filter isGen . functions
where
isGen fdecl = "gen" `isPrefixOf` snd (funcName fdecl) &&
isSearchTreeType (resultType (funcType fdecl))
isSearchTreeType (CTVar _) = False
isSearchTreeType (CFuncType _ _) = False
isSearchTreeType (CTCons tc _) = tc == searchTreeTC
genBottomType :: String -> FC.TypeDecl -> CTypeDecl
genBottomType _ (FC.TypeSyn _ _ _ _) =
error "genBottomType: cannot translate type synonyms"
genBottomType mainmod (FC.Type qtc@(_,tc) _ tvars consdecls) =
CType (mainmod,t2bt tc) Public (map transTVar tvars)
(CCons (mainmod,"Bot_"++transQN tc) Public [] :
if isBasicExtType qtc
then [CCons (mainmod,"Value_"++tc) Public [baseType qtc]]
else map transConsDecl consdecls)
where
transConsDecl (FC.Cons (_,cons) _ _ argtypes) =
CCons (mainmod,t2bt cons) Public (map transTypeExpr argtypes)
transTypeExpr (FC.TVar i) = CTVar (transTVar i)
transTypeExpr (FC.FuncType t1 t2) =
CFuncType (transTypeExpr t1) (transTypeExpr t2)
transTypeExpr (FC.TCons (_,tcons) tes) =
CTCons (mainmod,t2bt tcons) (map transTypeExpr tes)
transTVar i = (i,'a':show i)
isBasicExtType :: QName -> Bool
isBasicExtType (mn,tc) = mn == preludeName && tc `elem` ["Int","Float","Char"]
defaultValueOfBasicExtType :: String -> CLiteral
defaultValueOfBasicExtType qn
| qn == "Int" = CIntc 0
| qn == "Float" = CFloatc 0.0
| qn == "Char" = CCharc 'A'
| otherwise = error $ "defaultValueOfBasicExtType: unknown type: "++qn
ctype2BotType :: String -> CTypeExpr -> CTypeExpr
ctype2BotType _ (CTVar i) = CTVar i
ctype2BotType mainmod (CFuncType t1 t2) =
CFuncType (ctype2BotType mainmod t1) (ctype2BotType mainmod t2)
ctype2BotType mainmod (CTCons qtc tes) =
CTCons (mainmod, t2bt (snd qtc)) (map (ctype2BotType mainmod) tes)
t2bt :: String -> String
t2bt s = "P_" ++ transQN s
genPeval :: String -> FC.TypeDecl -> CFuncDecl
genPeval _ (FC.TypeSyn _ _ _ _) =
error "genPeval: cannot translate type synonyms"
genPeval mainmod (FC.Type qtc@(_,tc) _ tvars consdecls) =
cmtfunc ("Evaluate a `"++tc++"` value up to a partial approxmiation.")
(mainmod,"peval_"++transQN tc) 1 Public
(foldr1 (~>) (map (\ (a,b) -> CTVar a ~> CTVar b ~> CTVar b)
(zip polyavars polyrvars) ++
[CTCons qtc (map CTVar polyavars),
CTCons (mainmod,t2bt tc) (map CTVar polyrvars),
CTCons (mainmod,t2bt tc) (map CTVar polyrvars)]))
(simpleRule (map CPVar (polyavars ++ [(0,"_")]) ++ [CPComb botSym []])
(constF botSym) :
if isBasicExtType qtc
then [valueRule]
else map genConsRule consdecls)
where
botSym = (mainmod,"Bot_"++transQN tc)
polyavars = [ (i,"a"++show i) | i <- tvars]
polyrvars = [ (i,"b"++show i) | i <- tvars]
genConsRule (FC.Cons qc@(_,cons) _ _ argtypes) =
let args = [(i,"x"++show i) | i <- [0 .. length argtypes - 1]]
pargs = [(i,"y"++show i) | i <- [0 .. length argtypes - 1]]
pcons = (mainmod,t2bt cons)
in simpleRule (map CPVar polyavars ++
[CPComb qc (map CPVar args), CPComb pcons (map CPVar pargs)])
(applyF pcons
(map (\ (e1,e2,te) ->
applyE (ftype2pvalOf mainmod "peval" polyavars te)
[e1,e2])
(zip3 (map CVar args) (map CVar pargs) argtypes)))
valueRule =
let xvar = (0,"x")
yvar = (1,"y")
valcons = (mainmod,"Value_"++tc)
in guardedRule [CPVar xvar, CPComb valcons [CPVar yvar]]
[(constF (pre "True"),
applyF valcons [CVar xvar])]
[]
genPValOf :: String -> FC.TypeDecl -> CFuncDecl
genPValOf _ (FC.TypeSyn _ _ _ _) =
error "genPValOf: cannot translate type synonyms"
genPValOf mainmod (FC.Type qtc@(_,tc) _ tvars consdecls) =
cmtfunc ("Map a `"++tc++"` value into all its partial approxmiations.")
(mainmod,"pvalOf_"++transQN tc) 1 Public
(foldr1 (~>) (map (\ (a,b) -> CTVar a ~> CTVar b)
(zip polyavars polyrvars) ++
[CTCons qtc (map CTVar polyavars),
CTCons (mainmod,t2bt tc) (map CTVar polyrvars)]))
(simpleRule (map CPVar (polyavars ++ [(0,"_")]))
(constF (mainmod,"Bot_"++transQN tc)) :
if isBasicExtType qtc
then [valueRule]
else map genConsRule consdecls)
where
polyavars = [ (i,"a"++show i) | i <- tvars]
polyrvars = [ (i,"b"++show i) | i <- tvars]
genConsRule (FC.Cons qc@(_,cons) _ _ argtypes) =
let args = [(i,"x"++show i) | i <- [0 .. length argtypes - 1]]
in simpleRule (map CPVar polyavars ++ [CPComb qc (map CPVar args)])
(applyF (mainmod,t2bt cons)
(map (\ (e,te) ->
applyE (ftype2pvalOf mainmod "pvalOf" polyavars te) [e])
(zip (map CVar args) argtypes)))
valueRule =
let var = (0,"x")
in simpleRule [CPVar var] (applyF (mainmod,"Value_"++tc) [CVar var])
ftype2pvalOf :: String -> String -> [(Int,String)] -> FC.TypeExpr -> CExpr
ftype2pvalOf mainmod pvalname polyvars (FC.TCons (_,tc) texps) =
applyF (mainmod,pvalname++"_"++transQN tc)
(map (ftype2pvalOf mainmod pvalname polyvars) texps)
ftype2pvalOf _ _ _ (FC.FuncType _ _) =
error "genPValOf: cannot handle functional types in as constructor args"
ftype2pvalOf _ _ polyvars (FC.TVar i) =
maybe (error "genPValOf: unbound type variable")
CVar
(find ((==i) . fst) polyvars)
ctype2pvalOf :: String -> String -> CTypeExpr -> CExpr
ctype2pvalOf mainmod pvalname (CTCons (_,tc) texps) =
applyF (mainmod,pvalname++"_"++transQN tc)
(map (ctype2pvalOf mainmod pvalname) texps)
ctype2pvalOf _ _ (CFuncType _ _) =
error "genPValOf: cannot handle functional types in as constructor args"
ctype2pvalOf _ _ (CTVar _) = error "genPValOf: unbound type variable"
ctypedecl2ftypedecl :: CTypeDecl -> FC.TypeDecl
ctypedecl2ftypedecl (CTypeSyn _ _ _ _) =
error "ctypedecl2ftypedecl: cannot translate type synonyms"
ctypedecl2ftypedecl (CNewType _ _ _ _) =
error "ctypedecl2ftypedecl: cannot translate newtype"
ctypedecl2ftypedecl (CType qtc _ tvars consdecls) =
FC.Type qtc FC.Public (map fst tvars) (map transConsDecl consdecls)
where
transConsDecl (CCons qc _ argtypes) =
FC.Cons qc (length argtypes) FC.Public (map transTypeExpr argtypes)
transConsDecl (CRecord _ _ _) =
error "ctypedecl2ftypedecl: cannot translate records"
transTypeExpr (CTVar (i,_)) = FC.TVar i
transTypeExpr (CFuncType t1 t2) =
FC.FuncType (transTypeExpr t1) (transTypeExpr t2)
transTypeExpr (CTCons qtcons tes) = FC.TCons qtcons (map transTypeExpr tes)
genMainTestModule :: Options -> String -> [TestModule] -> IO ()
genMainTestModule opts mainmod modules = do
let testtypes = nub (concatMap userTestDataOfModule modules)
testtypedecls <- collectAllTestTypeDecls [] testtypes
equvtypedecls <- collectAllTestTypeDecls []
(map (\t->(t,True))
(nub (concatMap equivPropTypes modules)))
>>= return . map fst
let bottypes = map (genBottomType mainmod) equvtypedecls
pevalfuns = map (genPeval mainmod) equvtypedecls
pvalfuns = map (genPValOf mainmod) equvtypedecls
generators = map (createTestDataGenerator mainmod)
(testtypedecls ++
map (\td -> (ctypedecl2ftypedecl td,False)) bottypes)
funcs = concatMap (createTests opts mainmod) modules ++
generators
mainFunction = genMainFunction opts mainmod
(concatMap propTests modules)
imports = nub $ [ easyCheckModule, easyCheckExecModule
, searchTreeModule, generatorModule
, "AnsiCodes","Maybe","System"] ++
map (fst . fst) testtypes ++
map testModuleName modules
appendix <- readFile (packagePath </> "src" </> "TestAppendix.curry")
writeCurryProgram opts "."
(CurryProg mainmod imports bottypes
(mainFunction : funcs ++ pvalfuns ++ pevalfuns) [])
appendix
genMainFunction :: Options -> String -> [Test] -> CFuncDecl
genMainFunction opts testModule tests =
CFunc (testModule, "main") 0 Public (ioType unitType) [simpleRule [] body]
where
body = CDoExpr $
(if isQuiet opts
then []
else [CSExpr (applyF (pre "putStrLn")
[string2ac "Executing all tests..."])]) ++
[ CSPat (cpvar "x1") $
applyF (testModule, "runPropertyTests")
[constF (pre (if optColor opts then "True" else "False")),
easyCheckExprs]
, CSExpr $ applyF (pre "when")
[applyF (pre "/=") [cvar "x1", cInt 0],
applyF ("System", "exitWith") [cvar "x1"]]
]
easyCheckExprs = list2ac $ map makeExpr tests
makeExpr :: Test -> CExpr
makeExpr (PropTest (mn, name) _ _) =
constF (testModule, name ++ "_" ++ modNameToId mn)
makeExpr (IOTest (mn, name) _) =
constF (testModule, name ++ "_" ++ modNameToId mn)
makeExpr (EquivTest (mn, name) _ _ _ _) =
constF (testModule, name ++ "_" ++ modNameToId mn)
collectAllTestTypeDecls :: [(FC.TypeDecl,Bool)] -> [(QName,Bool)]
-> IO [(FC.TypeDecl,Bool)]
collectAllTestTypeDecls tdecls testtypenames = do
newtesttypedecls <- mapIO getTypeDecl testtypenames
let alltesttypedecls = tdecls ++ newtesttypedecls
newtcons = filter (\ ((mn,_),genpart) -> genpart || mn /= preludeName)
(nub (concatMap allTConsInDecl' newtesttypedecls)
\\ map (\(t,p) -> (FCG.typeName t,p)) alltesttypedecls)
if null newtcons then return alltesttypedecls
else collectAllTestTypeDecls alltesttypedecls newtcons
where
getTypeDecl :: (QName,Bool) -> IO (FC.TypeDecl,Bool)
getTypeDecl (qt@(mn,_),genpartial) = do
fprog <- readFlatCurry mn
maybe (error $ "Definition of type '" ++ FC.showQNameInModule "" qt ++
"' not found!")
(\td -> return (td,genpartial))
(find (\t -> FCG.typeName t == qt) (FCG.progTypes fprog))
allTConsInDecl' :: (FC.TypeDecl,Bool) -> [(QName,Bool)]
allTConsInDecl' (td,genpart) = map (\t->(t,genpart)) (allTConsInDecl td)
allTConsInDecl :: FC.TypeDecl -> [QName]
allTConsInDecl = FCG.trType (\_ _ _ -> concatMap allTConsInConsDecl)
(\_ _ _ -> allTConsInTypeExpr)
allTConsInConsDecl :: FC.ConsDecl -> [QName]
allTConsInConsDecl = FCG.trCons (\_ _ _ -> concatMap allTConsInTypeExpr)
allTConsInTypeExpr :: FC.TypeExpr -> [QName]
allTConsInTypeExpr =
FCG.trTypeExpr (\_ -> []) (\tc targs -> tc : concat targs) (++)
createTestDataGenerator :: String -> (FC.TypeDecl,Bool) -> CFuncDecl
createTestDataGenerator mainmod (tdecl,part) = type2genData tdecl
where
qt = FCG.typeName tdecl
qtString = FC.showQNameInModule "" qt
type2genData (FC.TypeSyn _ _ _ _) =
error $ "Cannot create generator for type synonym " ++ qtString
type2genData (FC.Type _ _ tvars cdecls)
| null cdecls && (fst qt /= preludeName || not part)
= error $ "Cannot create value generator for type '" ++ qtString ++
"' without constructors!"
| otherwise
= cmtfunc
("Generator for " ++ (if part then "partial " else "") ++
"`" ++ qtString ++ "` values.")
(typename2genopname mainmod [] part qt) (length tvars) Public
(foldr (~>) (CTCons searchTreeTC [CTCons qt ctvars])
(map (\v -> CTCons searchTreeTC [v]) ctvars))
[simpleRule (map CPVar cvars)
(let gencstrs = foldr1 (\e1 e2 -> applyF choiceGen [e1,e2])
(map cons2gen cdecls)
in if part
then applyF choiceGen
[ applyF (generatorModule, "genCons0")
[constF (pre "failed")]
, if null cdecls
then constF (generatorModule,
"gen" ++ transQN (snd qt))
else gencstrs ]
else gencstrs)]
where
cons2gen (FC.Cons qn@(mn,cn) ar _ ctypes)
| ar>maxArity
= error $ "Test data constructors with more than " ++ show maxArity ++
" arguments are currently not supported!"
| not part && mn == mainmod && "Value_" `isPrefixOf` cn
= applyF (generatorModule, "genCons1")
[CSymbol qn,
applyF (searchTreeModule,"Value")
[CLit (defaultValueOfBasicExtType (drop 6 cn))]]
| otherwise
= applyF (generatorModule, "genCons" ++ show ar)
([CSymbol qn] ++ map type2gen ctypes)
type2gen (FC.TVar i) = CVar (i,"a"++show i)
type2gen (FC.FuncType _ _) =
error $ "Type '" ++ qtString ++
"': cannot create value generators for functions!"
type2gen (FC.TCons qtc argtypes) =
applyF (typename2genopname mainmod [] part qtc)
(map type2gen argtypes)
ctvars = map (\i -> CTVar (i,"a"++show i)) tvars
cvars = map (\i -> (i,"a"++show i)) tvars
cleanup :: Options -> String -> [TestModule] -> IO ()
cleanup opts mainmod modules =
unless (optKeep opts) $ do
removeCurryModule mainmod
mapIO_ removeCurryModule (map testModuleName modules)
where
removeCurryModule modname =
lookupModuleSourceInLoadPath modname >>=
maybe done
(\ (_,srcfilename) -> do
system $ installDir </> "bin" </> "cleancurry" ++ " " ++ modname
system $ "/bin/rm -f " ++ srcfilename
done )
showTestStatistics :: [TestModule] -> String
showTestStatistics testmodules =
let numtests = sumOf (const True) testmodules
unittests = sumOf isUnitTest testmodules
proptests = sumOf isPropTest testmodules
equvtests = sumOf isEquivTest testmodules
iotests = sumOf isIOTest testmodules
in "TOTAL NUMBER OF TESTS: " ++ show numtests ++
" (UNIT: " ++ show unittests ++ ", PROPERTIES: " ++
show proptests ++ ", EQUIVALENCE: " ++ show equvtests ++
", IO: " ++ show iotests ++ ")"
where
sumOf p = foldr (+) 0 . map (length . filter p . propTests)
main :: IO ()
main = do
argv <- getArgs
pid <- getPID
let (funopts, args, opterrors) = getOpt Permute options argv
opts <- processOpts (foldl (flip id) defaultOptions funopts)
unless (null opterrors)
(putStr (unlines opterrors) >> putStrLn usageText >> exitWith 1)
putStrIfNormal opts ccBanner
when (null args || optHelp opts) (putStrLn usageText >> exitWith 1)
let mods = map stripCurrySuffix args
mapIO_ checkModuleName mods
testModules <- mapIO (analyseModule opts) mods
let staticerrs = concatMap staticErrors (concat testModules)
finaltestmodules = filter testThisModule (concat testModules)
testmodname = if null (optMainProg opts)
then "TEST" ++ show pid
else optMainProg opts
if not (null staticerrs)
then do showStaticErrors opts staticerrs
putStrLn $ withColor opts red "Testing aborted!"
cleanup opts testmodname finaltestmodules
exitWith 1
else if null finaltestmodules then exitWith 0 else do
putStrIfNormal opts $ withColor opts blue $
"Generating main test module '"++testmodname++"'..."
genMainTestModule opts testmodname finaltestmodules
putStrIfNormal opts $ withColor opts blue $ "and compiling it...\n"
ecurrypath <- getEnviron "CURRYPATH"
let currypath = case ecurrypath of ':':_ -> '.':ecurrypath
_ -> ecurrypath
let runcmd = unwords $
[ installDir </> "bin" </> "curry"
, "--noreadline"
, ":set -time"
, ":set " ++ if optVerb opts > 3 then "v1" else "v0"
, ":set parser -Wnone"
, if null currypath then "" else ":set path " ++ currypath
, ":l "++testmodname,":eval main :q" ]
putStrLnIfDebug opts $ "Executing command:\n" ++ runcmd
ret <- system runcmd
cleanup opts testmodname finaltestmodules
unless (isQuiet opts || ret /= 0) $
putStrLn $ withColor opts green $ showTestStatistics finaltestmodules
exitWith ret
where
showStaticErrors opts errs = putStrLn $ withColor opts red $
unlines (line : "STATIC ERRORS IN PROGRAMS:" : errs) ++ line
checkModuleName mn =
when (pathSeparator `elem` mn) $ do
putStrLn $ "Module names with path prefixes not allowed: " ++ mn
exitWith 1
line = take 78 (repeat '=')
renameProp2EasyCheck :: CurryProg -> CurryProg
renameProp2EasyCheck prog =
updCProg id (map rnmMod) id id id
(updQNamesInCProg (\ (mod,n) -> (rnmMod mod,n)) prog)
where
rnmMod mod | mod == propModule = easyCheckModule
| otherwise = mod
firstWord :: String -> String
firstWord = head . splitOn "\t" . head . splitOn " "
stripSuffix :: String -> String -> String
stripSuffix str suf = if suf `isSuffixOf` str
then take (length str - length suf) str
else str
modNameToId :: String -> String
modNameToId = intercalate "_" . split (=='.')
arityOfType :: CTypeExpr -> Int
arityOfType = length . argTypes
searchTreeModule :: String
searchTreeModule = "SearchTree"
searchTreeTC :: QName
searchTreeTC = (searchTreeModule,"SearchTree")
generatorModule :: String
generatorModule = "SearchTreeGenerators"
choiceGen :: QName
choiceGen = (generatorModule,"|||")
writeCurryProgram :: Options -> String -> CurryProg -> String -> IO ()
writeCurryProgram opts srcdir p appendix = do
let progfile = srcdir </> modNameToPath (progName p) ++ ".curry"
putStrLnIfDebug opts $ "Writing program: " ++ progfile
writeFile progfile
(showCProg p ++ "\n" ++ appendix ++ "\n")
isPAKCS :: Bool
isPAKCS = curryCompiler == "pakcs"
containsPPOptionLine :: String -> Bool
containsPPOptionLine = any isOptionLine . lines
where
isOptionLine s = "{-# OPTIONS_CYMAKE " `isPrefixOf` s
&& "currypp" `isInfixOf` s
tconsOf :: CTypeExpr -> [QName]
tconsOf (CTVar _) = []
tconsOf (CFuncType from to) = union (tconsOf from) (tconsOf to)
tconsOf (CTCons tc argtypes) = union [tc] (unionOn tconsOf argtypes)
unionOn :: (a -> [b]) -> [a] -> [b]
unionOn f = foldr union [] . map f
|