-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathRegisterExceptionHandlerTest.php
More file actions
184 lines (144 loc) · 6.29 KB
/
RegisterExceptionHandlerTest.php
File metadata and controls
184 lines (144 loc) · 6.29 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<?php
namespace Rareloop\Lumberjack\Test\Bootstrappers;
use Brain\Monkey\Functions;
use Mockery;
use PHPUnit\Framework\TestCase;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
use Rareloop\Lumberjack\Application;
use Rareloop\Lumberjack\Bootstrappers\RegisterExceptionHandler;
use Rareloop\Lumberjack\Config;
use Rareloop\Lumberjack\Exceptions\Handler;
use Rareloop\Lumberjack\Exceptions\HandlerInterface;
use Rareloop\Lumberjack\Test\Unit\BrainMonkeyPHPUnitIntegration;
use Rareloop\Router\Responsable;
use Symfony\Component\Debug\Exception\FatalErrorException;
use Laminas\Diactoros\Response;
use Laminas\Diactoros\Response\TextResponse;
use Laminas\Diactoros\ServerRequest;
/**
* @runTestsInSeparateProcesses
* @preserveGlobalState disabled
*/
class RegisterExceptionHandlerTest extends TestCase
{
use BrainMonkeyPHPUnitIntegration;
/**
* @test
* @expectedException ErrorException
*/
public function errors_are_converted_to_exceptions()
{
Functions\expect('is_admin')->once()->andReturn(false);
$app = new Application;
$bootstrapper = new RegisterExceptionHandler();
$bootstrapper->bootstrap($app);
$bootstrapper->handleError(E_USER_ERROR, 'Test Error');
}
/**
* @test
*/
public function E_USER_NOTICE_errors_are_not_converted_to_exceptions()
{
Functions\expect('is_admin')->once()->andReturn(false);
$app = new Application;
$handler = Mockery::mock(HandlerInterface::class);
$app->bind(HandlerInterface::class, $handler);
$handler->shouldReceive('report')->once()->with(Mockery::on(function ($e) {
return $e->getSeverity() === E_USER_NOTICE && $e->getMessage() === 'Test Error';
}));
$bootstrapper = new RegisterExceptionHandler();
$bootstrapper->bootstrap($app);
$bootstrapper->handleError(E_USER_NOTICE, 'Test Error');
}
/**
* @test
*/
public function E_USER_DEPRECATED_errors_are_not_converted_to_exceptions()
{
Functions\expect('is_admin')->once()->andReturn(false);
$app = new Application;
$handler = Mockery::mock(HandlerInterface::class);
$app->bind(HandlerInterface::class, $handler);
$handler->shouldReceive('report')->once()->with(Mockery::on(function ($e) {
return $e->getSeverity() === E_USER_DEPRECATED && $e->getMessage() === 'Test Error';
}));
$bootstrapper = new RegisterExceptionHandler();
$bootstrapper->bootstrap($app);
$bootstrapper->handleError(E_USER_DEPRECATED, 'Test Error');
}
/** @test */
public function handle_exception_should_call_handlers_report_and_render_methods()
{
Functions\expect('is_admin')->once()->andReturn(false);
$app = new Application;
$exception = new \Exception('Test Exception');
$request = new ServerRequest([], [], '/test/123', 'GET');
$app->bind('request', $request);
$handler = Mockery::mock(Handler::class);
$handler->shouldReceive('report')->with($exception)->once();
$handler->shouldReceive('render')->with($request, $exception)->once()->andReturn(new Response());
$app->bind(HandlerInterface::class, $handler);
$bootstrapper = Mockery::mock(RegisterExceptionHandler::class.'[send]');
$bootstrapper->shouldReceive('send')->once();
$bootstrapper->bootstrap($app);
$bootstrapper->handleException($exception);
}
/** @test */
public function handle_exception_should_call_handlers_report_and_render_methods_using_an_error()
{
Functions\expect('is_admin')->once()->andReturn(false);
$app = new Application;
$error = new \Error('Test Exception');
$request = new ServerRequest([], [], '/test/123', 'GET');
$app->bind('request', $request);
$handler = Mockery::mock(Handler::class);
$handler->shouldReceive('report')->with(Mockery::type(\ErrorException::class))->once();
$handler->shouldReceive('render')->with($request, Mockery::type(\ErrorException::class))->once()->andReturn(new Response());
$app->bind(HandlerInterface::class, $handler);
$bootstrapper = Mockery::mock(RegisterExceptionHandler::class.'[send]');
$bootstrapper->shouldReceive('send')->once();
$bootstrapper->bootstrap($app);
$bootstrapper->handleException($error);
}
/** @test */
public function handle_exception_should_call_handlers_report_and_render_methods_even_if_request_is_not_set_in_the_container()
{
Functions\expect('is_admin')->once()->andReturn(false);
$app = new Application;
$exception = new \Exception('Test Exception');
$handler = Mockery::mock(Handler::class);
$handler->shouldReceive('report')->with($exception)->once();
$handler->shouldReceive('render')->with(Mockery::type(ServerRequest::class), $exception)->once()->andReturn(new Response());
$app->bind(HandlerInterface::class, $handler);
$bootstrapper = Mockery::mock(RegisterExceptionHandler::class.'[send]');
$bootstrapper->shouldReceive('send')->once();
$bootstrapper->bootstrap($app);
$bootstrapper->handleException($exception);
}
/** @test */
public function handle_exception_should_not_call_render_methods_when_exception_is_responsable()
{
Functions\expect('is_admin')->once()->andReturn(false);
$app = new Application;
$request = new ServerRequest([], [], '/test/123', 'GET');
$app->bind('request', $request);
$exception = Mockery::mock(ResponsableException::class);
$exception->shouldReceive('toResponse')->with($request)->once();
$handler = Mockery::mock(Handler::class);
$handler->shouldReceive('report');
$handler->shouldNotReceive('render');
$app->bind(HandlerInterface::class, $handler);
$bootstrapper = Mockery::mock(RegisterExceptionHandler::class.'[send]');
$bootstrapper->shouldReceive('send')->once();
$bootstrapper->bootstrap($app);
$bootstrapper->handleException($exception);
}
}
class ResponsableException extends \Exception implements Responsable
{
public function toResponse(RequestInterface $request) : ResponseInterface
{
return new TextResponse('testing123');
}
}