Размер файла: 2.46Kb
<?php
namespace Utopia;
use PHPUnit\Framework\TestCase;
use Utopia\Validator\Numeric;
use Utopia\Validator\Text;
class HookTest extends TestCase
{
/**
* @var Hook
*/
protected ?Hook $hook;
public function setUp(): void
{
$this->hook = new Hook();
}
public function testDescriptionCanBeSet()
{
$this->assertEquals('', $this->hook->getDesc());
$this->hook->desc('new hook');
$this->assertEquals('new hook', $this->hook->getDesc());
}
public function testGroupsCanBeSet()
{
$this->assertEquals([], $this->hook->getGroups());
$this->hook->groups(['api', 'homepage']);
$this->assertEquals(['api', 'homepage'], $this->hook->getGroups());
}
public function testActionCanBeSet()
{
$this->assertEquals(function () {
}, $this->hook->getAction());
$this->hook->action(fn () => 'hello world');
$this->assertEquals('hello world', $this->hook->getAction()());
}
public function testParamCanBeSet()
{
$this->assertEquals([], $this->hook->getParams());
$this->hook
->param('x', '', new Text(10))
->param('y', '', new Text(10));
$this->assertCount(2, $this->hook->getParams());
}
public function testResourcesCanBeInjected()
{
$this->assertEquals([], $this->hook->getInjections());
$this->hook
->inject('user')
->inject('time')
->action(function () {
});
$this->assertCount(2, $this->hook->getInjections());
$this->assertEquals('user', $this->hook->getInjections()['user']['name']);
$this->assertEquals('time', $this->hook->getInjections()['time']['name']);
}
public function testParamValuesCanBeSet()
{
$this->assertEquals([], $this->hook->getParams());
$values = [
'x' => 'hello',
'y' => 'world',
];
$this->hook
->param('x', '', new Numeric())
->param('y', '', new Numeric());
foreach ($this->hook->getParams() as $key => $param) {
$this->hook->setParamValue($key, $values[$key]);
}
$this->assertCount(2, $this->hook->getParams());
$this->assertEquals('hello', $this->hook->getParams()['x']['value']);
$this->assertEquals('world', $this->hook->getParams()['y']['value']);
}
public function tearDown(): void
{
$this->hook = null;
}
}