This repository was archived by the owner on Dec 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPolicyClosureTest.php
More file actions
134 lines (107 loc) · 3.63 KB
/
Copy pathPolicyClosureTest.php
File metadata and controls
134 lines (107 loc) · 3.63 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
use arabcoders\errors\Policy;
class PolicyClosureTest extends \PHPUnit\Framework\TestCase
{
/**
* @var PolicyTest
*/
private static $hasClosure;
/**
* @var PolicyTest
*/
private static $noClosure;
public function setUp()
{
self::$hasClosure = new Policy( 0, 'test', false, false, false, function () : int
{
return 1;
} );
self::$noClosure = new Policy( 0, 'test', false, false, false );
}
public function testClosureReturn()
{
$closure = self::$hasClosure->getClosure();
$this->assertEquals( 1, $closure() );
}
public function testFailOnEmptyClosure()
{
$this->expectException( \RuntimeException::class );
self::$noClosure->getClosure();
}
public function testReturnTypeOfHasClosure()
{
$this->assertTrue( self::$hasClosure->hasClosure() );
$this->assertFalse( self::$noClosure->hasClosure() );
}
/**
* int $type, $parameter, bool $logging, bool $displaying, bool $exiting, \Closure $closure = null
*/
public function testTypeType()
{
$this->expectException( \TypeError::class );
new Policy( 'foo', 'test', false, false, false, null );
}
public function testParameterType()
{
$this->expectException( \InvalidArgumentException::class );
new Policy( 0, [], false, false, false, null );
}
public function testLoggingParameter()
{
$this->expectException( \TypeError::class );
new Policy( 0, 'test', [], false, false, null );
}
public function testDisplayParameter()
{
$this->expectException( \TypeError::class );
new Policy( 0, E_ERROR, false, [], false, null );
}
public function testExitingParameter()
{
$this->expectException( \TypeError::class );
new Policy( 0, 'test', false, false, false, [] );
}
public function testClosureParameter()
{
$this->expectException( \TypeError::class );
new Policy( 0, 'test', false, false, false, [] );
}
public function testReturnTypeTrue()
{
$this->assertTrue( ( new Policy( 0, 'test', false, true, false ) )->allowDisplaying() );
}
public function testReturnTypeFalse()
{
$this->assertFalse( ( new Policy( 0, 'test', false, false, false ) )->allowDisplaying() );
}
public function testAllowExitingTypeTrue()
{
$this->assertTrue( ( new Policy( 0, 'test', false, false, true ) )->allowExiting() );
}
public function testAllowExitingTypeFalse()
{
$this->assertFalse( ( new Policy( 0, 'test', false, false, false ) )->allowExiting() );
}
public function testReturnTypeOfisOfTypeTrue()
{
$this->assertTrue( ( new Policy( 0, 'test', false, false, false ) )->isOfType( 0 ) );
$this->assertTrue( ( new Policy( 1, 'test', false, false, false ) )->isOfType( 1 ) );
}
public function testReturnTypeOfisOfTypeFalse()
{
$this->assertFalse( ( new Policy( 1, 'test', false, false, false ) )->isOfType( 0 ) );
$this->assertFalse( ( new Policy( 0, 'test', false, false, false ) )->isOfType( 1 ) );
}
public function testAllowLoggingTypeTrue()
{
$this->assertTrue( ( new Policy( 0, 'test', true, false, false ) )->allowLogging() );
}
public function testAllowLoggingTypeFalse()
{
$this->assertFalse( ( new Policy( 0, 'test', false, false, false ) )->allowLogging() );
}
public function testGetParameterReturn()
{
$this->assertEquals( 'test', ( new Policy( 0, 'test', false, false, false ) )->getParameter() );
}
}