-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ fix ] Support dependent types in
withCoverage
macro
- Loading branch information
Showing
5 changed files
with
108 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
module PrintCoverage | ||
|
||
import Test.DepTyCheck.Gen | ||
import Test.DepTyCheck.Gen.Coverage | ||
|
||
import Deriving.DepTyCheck.Gen | ||
|
||
import System.Random.Pure.StdGen | ||
|
||
%default total | ||
|
||
%language ElabReflection | ||
|
||
export | ||
smallStrs : Fuel -> Gen NonEmpty String | ||
smallStrs _ = elements ["", "a", "bc"] | ||
|
||
data X = X1 | X2 Nat | X3 String | ||
|
||
genX : Fuel -> Gen NonEmpty X | ||
genX fl = withCoverage $ oneOf | ||
[ pure X1 | ||
, X3 <$> smallStrs fl | ||
] | ||
|
||
data Y : Nat -> Type where | ||
Y1 : Y 0 | ||
Y2 : X -> Y 1 | ||
Y3 : X -> X -> Y n | ||
|
||
genY : Fuel -> (n : _) -> Gen NonEmpty $ Y n | ||
genY fl Z = withCoverage $ oneOf | ||
[ [| Y1 |] | ||
, [| Y3 (genX fl) (genX fl) |] | ||
] | ||
genY fl 1 = withCoverage [| Y2 (genX fl) |] | ||
genY fl n = withCoverage [| Y3 (genX fl) (genX fl) |] | ||
|
||
main : IO () | ||
main = do | ||
let ci = initCoverageInfo genY | ||
do let vs = unGenTryND 100 someStdGen $ genY (limit 10) 0 | ||
let mc = concatMap fst vs | ||
let ci = registerCoverage mc ci | ||
putStrLn $ show ci | ||
putStrLn "\n--------\n" | ||
do let vs = unGenTryND 100 someStdGen $ genY (limit 10) 3 | ||
let mc = concatMap fst vs | ||
let ci = registerCoverage mc ci | ||
putStrLn $ show ci |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
1/1: Building PrintCoverage (PrintCoverage.idr) | ||
|
||
Prelude.Types.Nat not covered | ||
- S: not covered | ||
- Z: not covered | ||
|
||
PrintCoverage.X covered partially | ||
- X1: covered | ||
- X2: not covered | ||
- X3: covered | ||
|
||
PrintCoverage.Y covered partially | ||
- Y1: covered | ||
- Y2: not covered | ||
- Y3: covered | ||
|
||
-------- | ||
|
||
Prelude.Types.Nat not covered | ||
- S: not covered | ||
- Z: not covered | ||
|
||
PrintCoverage.X covered partially | ||
- X1: covered | ||
- X2: not covered | ||
- X3: covered | ||
|
||
PrintCoverage.Y covered partially | ||
- Y1: not covered | ||
- Y2: not covered | ||
- Y3: covered |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
rm -rf build | ||
|
||
flock "$1" pack -q install-deps test.ipkg && \ | ||
idris2 --no-color --console-width 0 --no-banner --find-ipkg --check PrintCoverage.idr && \ | ||
echo && \ | ||
pack exec PrintCoverage.idr | ||
|
||
rm -rf build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package a-test | ||
executable = a-test | ||
|
||
depends = deptycheck | ||
|
||
main = PrintCoverage |