-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathActionClassTest.php
executable file
·76 lines (57 loc) · 1.86 KB
/
ActionClassTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/*
* This file is part of https://github.com/josantonius/php-hook repository.
*
* (c) Josantonius <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @phpcs:disable PSR1.Methods.CamelCapsMethodName.NotCamelCaps
*/
namespace Josantonius\Hook\Tests\Hook;
use Josantonius\Hook\Action;
use Josantonius\Hook\Priority;
use PHPUnit\Framework\TestCase;
use Josantonius\Hook\Tests\Example\Foo;
class ActionClassTest extends TestCase
{
private Foo $foo;
private Action $action;
public function setUp(): void
{
parent::setUp();
$this->foo = new Foo();
$this->action = new Action($this->foo->bar(...), Priority::NORMAL, once: false);
}
public function test_should_get_callback(): void
{
$this->assertEquals($this->foo->bar(...), $this->action->getCallback());
}
public function test_should_get_priority(): void
{
$this->assertEquals(Priority::NORMAL, $this->action->getPriority());
}
public function test_should_get_result(): void
{
$this->assertNull($this->action->getResult());
}
public function test_should_check_if_it_runs_once(): void
{
$this->assertFalse($this->action->isOnce());
}
public function test_should_check_if_was_done(): void
{
$this->assertFalse($this->action->wasDone());
$this->action->runCallback();
$this->assertTrue($this->action->wasDone());
}
public function test_should_set_the_result_after_run_callback(): void
{
$this->action->runCallback('foo');
$result = $this->action->getResult();
$this->assertInstanceOf(Foo::class, $result);
$this->assertEquals('bar', $result->methodName);
$this->assertEquals('foo', $result->arguments[0]);
}
}