quick check
play

Quick Check A Lightweight Tool for Random Testing of Haskell - PowerPoint PPT Presentation

Quick Check A Lightweight Tool for Random Testing of Haskell Programs Koen Claessen, John Hughes Verification versus Validation # We want a program to be correct. # Problem: To verify it, we need specifications. # We can validate it by


  1. Quick Check A Lightweight Tool for Random Testing of Haskell Programs Koen Claessen, John Hughes

  2. Verification versus Validation # We want a program to be correct. # Problem: To verify it, we need specifications. # We can validate it by testing it. # � In Haskell, testing is quite efficient, because of purity. (When every function is correct and has no side-effects, the whole program will be correct)

  3. Example fac_naive n � | n<2 � = 1 � |otherwise = n * fac_naive (n-1) fac n = foldr (*) 1 [0..n] fac n = foldr (*) 1 [0..n] prop_fac :: Int -> Bool prop_fac x = fac x == fac_naive x Main> quickCheck prop_fac Falsifiable, after 1 tests: 1 Main> fac 1 0

  4. Example fac_naive n � | n<2 � = 1 � |otherwise = n * fac_naive (n-1) fac n = foldr (*) 1 [1..n] prop_fac :: Int -> Bool prop_fac x = fac x == fac_naive x Main> quickCheck prop_fac OK, passed 100 tests.

  5. How to generate test data? ( α → Main> quickCheck property Bool) class Arbitrary where arbitrary � :: Gen a # Bool: instance Arbitrary Bool where arbitrary = elements [True, False] # � Int: instance Arbitrary Int where arbitrary = choose (–1000, 1000) # � Int → (Int → Bool) → [Char] → Int

  6. Generating more complex data Gen α Gen ( α , β ) Gen β Gen α Gen [ α ] Gen PosInt choose (0, 100)

  7. � � � � � Combinators :: α → Gen α return � :: [ α ] → Gen α elements � :: (Int, Int) → Gen Int choose � :: [Gen α ] → Gen α oneof � :: [(Int, Gen α )] → Gen α frequency � � :: (Int → Gen α ) → Gen α sized � �

  8. Generating user defined data data Colour = Red | Blue | Green instance Arbitrary Colour where arbitrary = oneof [return Red,return Blue, return Green] data Tree a = L a | T (Tree a) (Tree a) instance Arbitrary a => instance Arbitrary Tree a where arbitrary = oneof [liftM L arbitrary, liftM2 T arbitrary arbitrary] return :: a -> Gen a oneof :: [Gen a] -> Gen a liftM :: (a -> t) -> Gen a -> Gen t liftM2 :: (a -> b -> t) -> Gen a -> Gen b -> Gen t

  9. Generating user defined data return :: a -> Gen a oneof :: [Gen a] -> Gen a frequency :: [(Int, Gen a)] -> Gen a data Tree a = L a | T (Tree a) (Tree a) instance Arbitrary a => instance Arbitrary Tree a where arbitrary = oneof [liftM L arbitrary, liftM2 T arbitrary arbitrary]

  10. Generating user defined data return :: a -> Gen a oneof :: [Gen a] -> Gen a frequency :: [(Int, Gen a)] -> Gen a sized :: (Int -> Gen a) -> Gen a data Tree a = L a | T (Tree a) (Tree a) instance Arbitrary a => instance Arbitrary Tree a where arbitrary = frequency [(1, liftM L arbitrary), (2, liftM2 T arbitrary arbitrary)]

  11. � � Generating user defined data return :: a -> Gen a oneof :: [Gen a] -> Gen a frequency :: [(Int, Gen a)] -> Gen a sized :: (Int -> Gen a) -> Gen a data Tree a = L a | T (Tree a) (Tree a) instance Arbitrary a => instance Arbitrary Tree a where arbitrary = sized arbTree arbTree :: Int -> Gen a arbTree 0 = liftM L arbitrary arbTree n = frequency [(1, liftM L arbitrary), (2, liftM2 T (arbTree (n `div` 2)) (arbTree (n `div` 2)) ) ] What about functions?

  12. Generating functions newtype Gen = Int → Rand → α Gen ( α → β ) = Int → Rand → α → β α → Gen β = α → Int → Rand → β promote :: ( α → Gen β ) → Gen ( α → β )

  13. Modifying the Random Number Seed We need a function: α → Gen β We have: variant :: Int → Gen α → Gen α 65, -1, -19, 2, 11, … variant a original seed 1, 38, -12, 6, -472, … -52, 0, 41, -20, 1, … variant b How does variant solve our problem?

  14. Coarbitrary We still need a function: α → Gen β variant :: Int → Gen α → Gen α coarbitrary :: α → Gen β → Gen β Bool: instance Coarbitrary Bool where coarbitrary b g = � if b then variant 0 g else variant 1 g

  15. Putting the stuff together coarbitrar y Coarbitrary α : α → Gen γ → Gen γ α → Gen β Arbitrary β : Gen β arbitrary promote :: ( α → Gen β ) → Gen ( α → β ) instance (Coarbitrary a, Arbitrary b) => Arbitrary (a -> b) where arbitrary = promote (\x -> coarbitrary x arbitrary) Gen ( α → ( α ) (Gen β )

  16. 3 kinds of errors: # Errors in the test data generator # Diverging Generators # Generators that produce nonsense # Errors in the program # fac n = foldr (*) 1 [0..n] # Errors in the specification # Ill-defined properties # Missunderstanding of the code

  17. Monitoring Test Data prop_fac :: Int -> Property prop_fac x � = classify (x `mod` 2 == 0) „even“ (fac x == fac_naive x) Main> quickCheck prop_fac OK, passed 100 tests (52% even). prop_fac :: Int -> Property prop_fac x = collect (x `mod` 3) (fac x == fac_naive x) Main> quickCheck prop_fac OK, passed 100 tests. 38% 2. 27% 0. 25% 1.

  18. Advanced Properties prop_fac :: Int -> Property prop_fac x = x < 1 ==> fac x == 1 prop_fac :: Property prop_fac = forAll niceInt (\x -> fac x == fac_naive x)

  19. The trivial data Problem Prop_Insert :: Int -> [Int] -> Property Prop_Insert x xs = ordered xs ==> ordered (insert x xs) Main> quickCheck prop_Insert OK, passed 100 tests.

  20. The trivial data Problem Prop_Insert :: Int -> [Int] -> Property Prop_Insert x xs = ordered xs ==> classify (length xs < 3) „trivial“ (ordered (insert x xs)) Main> quickCheck prop_Insert OK, passed 100 tests (95% trivial).

Recommend


More recommend