1
0
Fork 0
mirror of synced 2024-09-29 08:51:28 +13:00
appwrite/tests/unit/Functions/Validator/HeadersBench.php

71 lines
1.8 KiB
PHP
Raw Normal View History

2024-08-20 20:47:50 +12:00
<?php
namespace Tests\Unit\Functions\Validator;
use Appwrite\Functions\Validator\Headers;
use PhpBench\Attributes\AfterMethods;
use PhpBench\Attributes\Assert;
use PhpBench\Attributes\BeforeMethods;
use PhpBench\Attributes\Iterations;
use PhpBench\Attributes\ParamProviders;
final class HeadersBench
{
private Headers $validator;
public function tearDown(): void {}
public function prepare(): void
{
$this->validator = new Headers();
}
public function providers(): iterable
{
yield 'empty' => [ 'value' => [] ];
$value = [];
for($i = 0; $i < 10; $i++) {
$value[bin2hex(random_bytes(8))] = bin2hex(random_bytes(8));
}
yield 'xxs' => [ 'value' => $value ];
$value = [];
for($i = 0; $i < 100; $i++) {
$value[bin2hex(random_bytes(8))] = bin2hex(random_bytes(8));
}
yield 'xs' => [ 'value' => $value ];
$value = [];
for($i = 0; $i < 1000; $i++) {
$value[bin2hex(random_bytes(8))] = bin2hex(random_bytes(8));
}
yield 'sm' => [ 'value' => $value ];
$value = [];
for($i = 0; $i < 10000; $i++) {
$value[bin2hex(random_bytes(16))] = bin2hex(random_bytes(16));
}
yield 'md' => [ 'value' => $value ];
$value = [];
for($i = 0; $i < 100000; $i++) {
$value[bin2hex(random_bytes(16))] = bin2hex(random_bytes(16));
}
yield 'lg' => [ 'value' => $value ];
}
#[BeforeMethods('prepare')]
#[AfterMethods('tearDown')]
#[ParamProviders('providers')]
#[Iterations(50)]
#[Assert('mode(variant.time.avg) < 500 ms')]
public function benchHeadersValidator(array $data): void
{
$assertion = $this->validator->isValid($data['value']);
if(!$assertion) {
exit(1);
}
}
}