Lazy Test Generators

Posted on by Chris Warburton

I recently learned about the falsify package for property-based testing, which seems like an improvement over many previous libraries, in the following ways:

The only feature it seems to lack is allowing parts of counterexamples to remain undefined, as found in the LazySmallCheck2012 package. I’ve opened a feature request in falsify for this, and the author has replied with a rather simple approach that I’m looking forward to experimenting with. The rest of this post is mostly copy-pasta from that request, since it serves as a nice resource for describing the idea of lazy counterexamples.

As a bonus, in order to produce example output for that feature request, I ended up fixing my fork of LazySmallCheck2012 to work with GHC 9+ (and in particular the breaking changes made in Template Haskell 2.18). I’ve also given it a simple default.nix definition, and a development environment in shell.nix, so it should be easier to pick up (rather than trial-and-error with Cabal version constraints).

Note that I don’t recommend using LazySmallCheck2012 for your own projects, since it’s mostly abandonware. I’ve actually been migrating my own projects away from it to avoid having to maintain that fork: I was migrating them to QuickCheck (since I’ve been using that for over a decade anyway), but going forward I’ll certainly be using falsify. Nevertheless, I think LazySmallCheck2012 is great as a sort of tech-demo to play around with!

What is lazy generation

LazySmallcheck2012 behaves in a way where data is only generated when the test forces its evaluation. Note that the original lazysmallcheck package does not behave this way (at least, based on my experiments).

For example, consider this simple test in falsify:

prop_unneededElements :: Property ()
prop_unneededElements = do
  lst :: [Int] <- gen (Gen.list
                        (Range.between (0, 100))
                        (Gen.inRange (Range.between (0, 100))))
  if length lst > 3 && head lst < 10
     then testFailed "known failure, to check strictness"
     else return ()

This is asserting that every lst :: [Int] with more than three elements also has a first element that is at least 10. It fails (as expected):

Running 1 test suites...
Test suite falsify-test-test: RUNNING...
Playing
  Unneeded elements: FAIL (0.12s)
    failed after 28 successful tests and 5 shrinks
    known failure, to check strictness
    Logs for failed test run:
    generated [0,0,0,0] at CallStack (from HasCallStack):
      gen, called at test/Main.hs:18:19 in main:Main

    Use --falsify-replay=010985dabce2ff4eb5c78d1e70747b669b to replay.

1 out of 1 tests failed (0.13s)

Test suite falsify-test-test: FAIL

In this case falsify reports a minimal counterexample of [0, 0, 0, 0]. Whilst that’s the smallest fully-normalised value, it is actually over-specified: the test never forces the last three elements, so they are irrelevant to the outcome (only the spine and the first element are relevant). If we compare this to the same check in LazySmallcheck2012 (in GHCi):

*LSC2012> test (\(lst :: [Int]) -> not (length lst > 3 && head lst < 10))
LSC: Depth 0:
LSC: Property holds after 3 tests.
LSC: Depth 1:
LSC: Property holds after 5 tests.
LSC: Depth 2:
LSC: Property holds after 7 tests.
LSC: Depth 3:
LSC: Property holds after 9 tests.
LSC: Depth 4:
LSC: Counterexample found after 12 tests.
Var 0: -3:_:_:_:[]
*** Exception: ExitFailure 1

It gives -3:_:_:_:[], AKA [-3, _, _, _]. Here _ indicates a value which was never forced, so never ran its generator, and is hence irrelevant to the cause of the test failure. Unfortunately in this case the first value (-3) isn’t minimal, since (Lazy)Smallcheck doesn’t do any shrinking; the ideal counterexample would be [0, _, _, _].

Why lazy generation

There are a few reasons this behaviour is nicer, as a user, than seeing fully normalised counterexamples:

There may be performance benefits, by avoiding a bunch of generators running; but I haven’t found that particularly noticable.

How LazySmallcheck2012 does it

As far as I know, LazySmallcheck2012 works by starting with all inputs as exceptions, and retrying a test with more refined inputs if any of those exceptions are thrown (until some depth limit is reached). In the above example it might have run the property on an input like throw A, which causes the exception A to be thrown; so it ran again with [] (which passed) and throw A : throw B (which throws B). The latter is refined to throw A : [] (which passed) and throw A : throw B : throw C (which throws C) and so on until throw A : throw B : throw C : throw D : [] finally satisfies the length check, and causes the head check to throw A; causing it to be retried with an input like -3 : throw A : throw B : throw C : [] which finally causes the test to fail, and that is our counterexample (with throw X shown as _).

How to do this in falsify

falsify’s author commented on how this could be achieved (in a much simpler and more elegant way that my suggestion!), by essentially wrapping values of a into Either () a, turning a Left () into undefined :: a, shrinking towards the Left and Showing it as "_".

That seems like a good approach, although I’m going to try a couple of further improvements: