/ponycheck

Property Based Testing for Ponylang 🐴 ✔️

Primary LanguagePonyBSD 2-Clause "Simplified" LicenseBSD-2-Clause

Ponycheck

Property based testing for ponylang (>= 0.19.0).

Status

Ponycheck is an beta-level package.

Installation

  • Install corral
  • corral add github.com/ponylang/ponycheck.git --version 0.6.1
  • corral fetch to fetch your dependencies
  • use "ponycheck" to include this package
  • corral run -- ponyc to compile your application

API Documentation

API docs

Features

  • Integration with ponytest.
  • Extensive list of builtin Generators for your convencience.
  • Shrinking of failed samples for more useful test output.
  • Support for asynchronous properties.

Property Based Testing

In traditional unit testing, it is the duty and burden of the developer to provide and craft meaningful input examples for the unit under test (be it a class, a function or whatever) and check if some output conditions hold. This is a tedious and error-prone activity.

Property based testing leaves generation of test input samples to the testing engine which generates random examples taken from a description how to do so, so called Generators. The developer just needs to define a Generator and describe the condition that should hold for each and every input sample.

Property based Testing first came up as QuickCheck in Haskell. It has the nice property of automatically infering Generators from the type of the property parameter, the test input sample.

Ponycheck is heavily inspired by QuickCheck and other great Property Based testing libraries, namely:

Usage

Writing property based tests in ponycheck is done by implementing the trait Property1. A Property1 needs to define a type parameter for the type of the input sample, a Generator and a property function. Here is a stupid barebones example just to get a first feeling:

use "ponytest"

class _MyFirstProperty is Property1[String]
  fun name(): String => "my_first_property"

  fun gen(): Generator[String] => Generators.ascii()

  fun property(arg1: String, h: PropertyHelper) =>
    h.assert_eq[String](arg1, arg1)

A Property needs a name for identification in test output. We created a Generator by using one of the many convenience factory methods and combinators defined in the Generators primitive and we used PropertyHelper to assert on a (in this case trivial) condition that should hold for all samples

Here is the classical List reverse properties from the QuickCheck paper adapted to Pony Arrays:

use "ponycheck"
use "collections"

class _ListReverseProperty is Property1[Array[USize]]
    fun name(): String => "list/reverse"

    fun gen(): Generator[Array[USize]] =>
      Generators.seq_of[USize, Array[USize]](Generators.usize())

    fun property(arg1: Array[USize], ph: PropertyHelper) =>
      ph.assert_array_eq[USize](arg1, arg1.reverse().reverse())

class _ListReverseOneProperty is Property1[Array[USize]]
    fun name(): String => "list/reverse/one"

    fun gen(): Generator[Array[USize]] =>
      Generators.seq_of[USize, Array[USize]](Generators.usize() where min=1, max=1)

    fun property(arg1: Array[USize], ph: PropertyHelper) =>
      ph.assert_array_eq[USize](arg1, arg1.reverse())

Integration into Ponytest

A Property defined in Ponycheck needs to be executed to show its full potential and to actual detect bugs if they exist.

Ponycheck is intended to be run via ponytest. To integrate Property1 into ponytest, it needs to be wrapped inside a Property1UnitTest and passed to the PonyTest.apply method as all regular ponytest UnitTests (minus the cumbersome test sample creation):

use "ponytest"
use "ponycheck"

actor Main is TestList
  new create(env: Env) => PonyTest(env, this)

  fun tag tests(test: PonyTest) =>
    test(Property1UnitTest[String](_MyFirstProperty))

It is also possible to integrate any number of properties directly into one UnitTest using the Ponycheck.forAll convenience function:

class _ListReverseProperties is UnitTest
    fun name(): String => "list/properties"

    fun apply(h: TestHelper) ? =>
      let gen1 = Generators.seq_of[USize, Array[USize]](Generators.usize())
      Ponycheck.forAll[Array[USize]](gen1, h)({
        (arg1: Array[USize], ph: PropertyHelper) =>
          ph.assert_array_eq[USize](arg1, arg1.reverse().reverse())
      })
      let gen2 = Generators.seq_of[USize, Array[USize]](1, Generators.usize())
      Ponycheck.forAll[Array[USize]](gen2, h)({
        (arg1: Array[USize], ph: PropertyHelper) =>
          ph.assert_array_eq[USize](arg1, arg1.reverse())
      })

For more examples on how to use ponycheck take a look at the examples directory.

For all the details, take a look at the API docs.