Getting started
Requirements
- PHP 8.3+
ext-mbstringext-randomtesto/testo^0.10.25 || ^1.0
Installation
composer require --dev rasuvaeff/property-testingNo plugin registration is needed: the #[Property] attribute self-registers with Testo through the framework's interceptor discovery.
Usage
Mark a test method with #[Property] and point it at a generators method that maps each parameter name to a Gen factory. The runner generates random arguments, runs the property runs times, and on the first failure shrinks the counterexample to a minimal one.
use Rasuvaeff\PropertyTesting\Assume;
use Rasuvaeff\PropertyTesting\Gen;
use Rasuvaeff\PropertyTesting\Property;
use Testo\Assert;
use Testo\Test;
#[Test]
final class RetryPolicyPropertyTest
{
#[Property(runs: 500, generators: 'delayGenerators')]
public function delayNeverExceedsCap(int $maxAttempts, int $baseSeconds, int $cap, int $attempts): void
{
Assume::that($cap >= $baseSeconds);
$policy = WebhookRetryPolicy::exponential($maxAttempts, $baseSeconds, $cap);
Assert::true($policy->nextDelaySeconds($attempts) <= $cap);
}
/** @return array<string, \Rasuvaeff\PropertyTesting\ArbitraryInterface> */
public static function delayGenerators(): array
{
return [
'maxAttempts' => Gen::intBetween(1, 50),
'baseSeconds' => Gen::intBetween(1, 300),
'cap' => Gen::intBetween(1, 86400),
'attempts' => Gen::intBetween(1, 100),
];
}
}On failure, the counterexample is rendered into the test output:
Property falsified after 246 successful run(s); seed=7382910
Original: maxAttempts=17, baseSeconds=91, cap=847, attempts=23
Shrunk: maxAttempts=1, baseSeconds=848, cap=847, attempts=1 (12 shrink step(s), 41 trial(s))
Changed: maxAttempts=17 -> 1, baseSeconds=91 -> 848, attempts=23 -> 1The Changed: line diffs the original against the shrunk counterexample — arguments the shrinker left untouched (here cap) are omitted, so the inputs that actually drive the failure stand out. trial(s) counts every candidate the shrinker ran (accepted and rejected); shrink step(s) counts only the accepted ones.
Reproduce the exact run by passing the reported seed back to the attribute:
#[Property(runs: 500, seed: 7382910, generators: 'delayGenerators')]