-
Notifications
You must be signed in to change notification settings - Fork 11.3k
/
Copy pathFoundationExceptionsHandlerTest.php
986 lines (782 loc) · 33.7 KB
/
FoundationExceptionsHandlerTest.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
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
<?php
namespace Illuminate\Tests\Foundation;
use Closure;
use Exception;
use Illuminate\Cache\ArrayStore;
use Illuminate\Cache\NullStore;
use Illuminate\Cache\RateLimiter;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Cache\Repository;
use Illuminate\Config\Repository as Config;
use Illuminate\Container\Container;
use Illuminate\Contracts\Routing\ResponseFactory as ResponseFactoryContract;
use Illuminate\Contracts\Support\Responsable;
use Illuminate\Contracts\View\Factory as ViewFactory;
use Illuminate\Database\RecordsNotFoundException;
use Illuminate\Foundation\Exceptions\Handler;
use Illuminate\Foundation\Testing\Concerns\InteractsWithExceptionHandling;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Routing\Redirector;
use Illuminate\Routing\ResponseFactory;
use Illuminate\Support\Carbon;
use Illuminate\Support\Lottery;
use Illuminate\Support\MessageBag;
use Illuminate\Testing\Assert;
use Illuminate\Validation\ValidationException;
use Illuminate\Validation\Validator;
use InvalidArgumentException;
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
use Mockery as m;
use OutOfRangeException;
use PHPUnit\Framework\AssertionFailedError;
use PHPUnit\Framework\TestCase;
use Psr\Log\LoggerInterface;
use Psr\Log\LogLevel;
use RuntimeException;
use stdClass;
use Symfony\Component\HttpFoundation\Exception\SuspiciousOperationException;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
use Symfony\Component\HttpKernel\Exception\HttpException;
class FoundationExceptionsHandlerTest extends TestCase
{
use MockeryPHPUnitIntegration;
use InteractsWithExceptionHandling;
protected $config;
protected $viewFactory;
protected $container;
protected $handler;
protected $request;
protected function setUp(): void
{
$this->config = m::mock(Config::class);
$this->viewFactory = m::mock(ViewFactory::class);
$this->request = m::mock(stdClass::class);
$this->container = Container::setInstance(new Container);
$this->container->instance('config', $this->config);
$this->container->instance(ViewFactory::class, $this->viewFactory);
$this->container->instance(ResponseFactoryContract::class, new ResponseFactory(
$this->viewFactory,
m::mock(Redirector::class)
));
$this->handler = new Handler($this->container);
}
protected function tearDown(): void
{
Container::setInstance(null);
}
public function testHandlerReportsExceptionAsContext()
{
$logger = m::mock(LoggerInterface::class);
$this->container->instance(LoggerInterface::class, $logger);
$logger->shouldReceive('error')->withArgs(['Exception message', m::hasKey('exception')])->once();
$this->handler->report(new RuntimeException('Exception message'));
}
public function testHandlerCallsContextMethodIfPresent()
{
$logger = m::mock(LoggerInterface::class);
$this->container->instance(LoggerInterface::class, $logger);
$logger->shouldReceive('error')->withArgs(['Exception message', m::subset(['foo' => 'bar'])])->once();
$this->handler->report(new ContextProvidingException('Exception message'));
}
public function testHandlerReportsExceptionWhenUnReportable()
{
$logger = m::mock(LoggerInterface::class);
$this->container->instance(LoggerInterface::class, $logger);
$logger->shouldReceive('error')->withArgs(['Exception message', m::hasKey('exception')])->once();
$this->handler->report(new UnReportableException('Exception message'));
}
public function testHandlerReportsExceptionWithCustomLogLevel()
{
$logger = m::mock(LoggerInterface::class);
$this->container->instance(LoggerInterface::class, $logger);
$logger->shouldReceive('critical')->withArgs(['Critical message', m::hasKey('exception')])->once();
$logger->shouldReceive('error')->withArgs(['Error message', m::hasKey('exception')])->once();
$logger->shouldReceive('log')->withArgs(['custom', 'Custom message', m::hasKey('exception')])->once();
$this->handler->level(InvalidArgumentException::class, LogLevel::CRITICAL);
$this->handler->level(OutOfRangeException::class, 'custom');
$this->handler->report(new InvalidArgumentException('Critical message'));
$this->handler->report(new RuntimeException('Error message'));
$this->handler->report(new OutOfRangeException('Custom message'));
}
public function testHandlerIgnoresNotReportableExceptions()
{
$logger = m::mock(LoggerInterface::class);
$this->container->instance(LoggerInterface::class, $logger);
$logger->shouldNotReceive('log');
$this->handler->ignore(RuntimeException::class);
$this->handler->report(new RuntimeException('Exception message'));
}
public function testHandlerCallsReportMethodWithDependencies()
{
$reporter = m::mock(ReportingService::class);
$this->container->instance(ReportingService::class, $reporter);
$reporter->shouldReceive('send')->withArgs(['Exception message'])->once();
$logger = m::mock(LoggerInterface::class);
$this->container->instance(LoggerInterface::class, $logger);
$logger->shouldNotReceive('log');
$this->handler->report(new ReportableException('Exception message'));
}
public function testHandlerReportsExceptionUsingCallableClass()
{
$reporter = m::mock(ReportingService::class);
$reporter->shouldReceive('send')->withArgs(['Exception message'])->once();
$logger = m::mock(LoggerInterface::class);
$this->container->instance(LoggerInterface::class, $logger);
$logger->shouldNotReceive('log');
$this->handler->reportable(new CustomReporter($reporter));
$this->handler->report(new CustomException('Exception message'));
}
public function testShouldReturnJson()
{
$this->request->shouldReceive('expectsJson')->once()->andReturn(true);
$e = new Exception('My custom error message');
$request = $this->request;
$shouldReturnJson = (fn () => $this->shouldReturnJson($request, $e))->call($this->handler);
$this->assertTrue($shouldReturnJson);
$this->request->shouldReceive('expectsJson')->once()->andReturn(false);
$shouldReturnJson = (fn () => $this->shouldReturnJson($request, $e))->call($this->handler);
$this->assertFalse($shouldReturnJson);
}
public function testShouldReturnJsonWhen()
{
$this->request->shouldReceive('expectsJson')->never();
$exception = new Exception('My custom error message');
$request = $this->request;
$this->handler->shouldRenderJsonWhen(function ($r, $e) use ($request, $exception) {
$this->assertSame($request, $r);
$this->assertSame($exception, $e);
return true;
});
$shouldReturnJson = (fn () => $this->shouldReturnJson($request, $exception))->call($this->handler);
$this->assertTrue($shouldReturnJson);
$this->handler->shouldRenderJsonWhen(function ($r, $e) use ($request, $exception) {
$this->assertSame($request, $r);
$this->assertSame($exception, $e);
return false;
});
$shouldReturnJson = (fn () => $this->shouldReturnJson($request, $exception))->call($this->handler);
$this->assertFalse($shouldReturnJson);
$this->assertSame(6, Assert::getCount());
}
public function testReturnsJsonWithStackTraceWhenAjaxRequestAndDebugTrue()
{
$this->config->shouldReceive('get')->with('app.debug', null)->once()->andReturn(true);
$this->request->shouldReceive('expectsJson')->once()->andReturn(true);
$response = $this->handler->render($this->request, new Exception('My custom error message'))->getContent();
$this->assertStringNotContainsString('<!DOCTYPE html>', $response);
$this->assertStringContainsString('"message": "My custom error message"', $response);
$this->assertStringContainsString('"file":', $response);
$this->assertStringContainsString('"line":', $response);
$this->assertStringContainsString('"trace":', $response);
}
public function testReturnsCustomResponseFromRenderableCallback()
{
$this->handler->renderable(function (CustomException $e, $request) {
$this->assertSame($this->request, $request);
return response()->json(['response' => 'My custom exception response']);
});
$response = $this->handler->render($this->request, new CustomException)->getContent();
$this->assertSame('{"response":"My custom exception response"}', $response);
}
public function testReturnsCustomResponseFromCallableClass()
{
$this->handler->renderable(new CustomRenderer);
$response = $this->handler->render($this->request, new CustomException)->getContent();
$this->assertSame('{"response":"The CustomRenderer response"}', $response);
}
public function testReturnsResponseFromRenderableException()
{
$response = $this->handler->render(Request::create('/'), new RenderableException)->getContent();
$this->assertSame('{"response":"My renderable exception response"}', $response);
}
public function testReturnsResponseFromMappedRenderableException()
{
$this->handler->map(RuntimeException::class, RenderableException::class);
$response = $this->handler->render(Request::create('/'), new RuntimeException)->getContent();
$this->assertSame('{"response":"My renderable exception response"}', $response);
}
public function testReturnsCustomResponseWhenExceptionImplementsResponsable()
{
$response = $this->handler->render($this->request, new ResponsableException)->getContent();
$this->assertSame('{"response":"My responsable exception response"}', $response);
}
public function testReturnsJsonWithoutStackTraceWhenAjaxRequestAndDebugFalseAndExceptionMessageIsMasked()
{
$this->config->shouldReceive('get')->with('app.debug', null)->once()->andReturn(false);
$this->request->shouldReceive('expectsJson')->once()->andReturn(true);
$response = $this->handler->render($this->request, new Exception('This error message should not be visible'))->getContent();
$this->assertStringContainsString('"message": "Server Error"', $response);
$this->assertStringNotContainsString('<!DOCTYPE html>', $response);
$this->assertStringNotContainsString('This error message should not be visible', $response);
$this->assertStringNotContainsString('"file":', $response);
$this->assertStringNotContainsString('"line":', $response);
$this->assertStringNotContainsString('"trace":', $response);
}
public function testReturnsJsonWithoutStackTraceWhenAjaxRequestAndDebugFalseAndHttpExceptionErrorIsShown()
{
$this->config->shouldReceive('get')->with('app.debug', null)->once()->andReturn(false);
$this->request->shouldReceive('expectsJson')->once()->andReturn(true);
$response = $this->handler->render($this->request, new HttpException(403, 'My custom error message'))->getContent();
$this->assertStringContainsString('"message": "My custom error message"', $response);
$this->assertStringNotContainsString('<!DOCTYPE html>', $response);
$this->assertStringNotContainsString('"message": "Server Error"', $response);
$this->assertStringNotContainsString('"file":', $response);
$this->assertStringNotContainsString('"line":', $response);
$this->assertStringNotContainsString('"trace":', $response);
}
public function testReturnsJsonWithoutStackTraceWhenAjaxRequestAndDebugFalseAndAccessDeniedHttpExceptionErrorIsShown()
{
$this->config->shouldReceive('get')->with('app.debug', null)->once()->andReturn(false);
$this->request->shouldReceive('expectsJson')->once()->andReturn(true);
$response = $this->handler->render($this->request, new AccessDeniedHttpException('My custom error message'))->getContent();
$this->assertStringContainsString('"message": "My custom error message"', $response);
$this->assertStringNotContainsString('<!DOCTYPE html>', $response);
$this->assertStringNotContainsString('"message": "Server Error"', $response);
$this->assertStringNotContainsString('"file":', $response);
$this->assertStringNotContainsString('"line":', $response);
$this->assertStringNotContainsString('"trace":', $response);
}
public function testValidateFileMethod()
{
$argumentExpected = ['input' => 'My input value'];
$argumentActual = null;
$this->container->singleton('redirect', function () use (&$argumentActual) {
$redirector = m::mock(Redirector::class);
$redirector->shouldReceive('to')->once()
->andReturn($responder = m::mock(RedirectResponse::class));
$responder->shouldReceive('withInput')->once()->with(m::on(
function ($argument) use (&$argumentActual) {
$argumentActual = $argument;
return true;
}))->andReturn($responder);
$responder->shouldReceive('withErrors')->once()
->andReturn($responder);
return $redirector;
});
$file = m::mock(UploadedFile::class);
$file->shouldReceive('getPathname')->andReturn('photo.jpg');
$file->shouldReceive('getClientOriginalName')->andReturn('photo.jpg');
$file->shouldReceive('getClientMimeType')->andReturn('application/octet-stream');
$file->shouldReceive('getError')->andReturn(\UPLOAD_ERR_NO_FILE);
$request = Request::create('/', 'POST', $argumentExpected, [], ['photo' => $file]);
$validator = m::mock(Validator::class);
$validator->shouldReceive('errors')->andReturn(new MessageBag(['error' => 'My custom validation exception']));
$validationException = new ValidationException($validator);
$validationException->redirectTo = '/';
$this->handler->render($request, $validationException);
$this->assertEquals($argumentExpected, $argumentActual);
}
public function testSuspiciousOperationReturns400WithoutReporting()
{
$this->config->shouldReceive('get')->with('app.debug', null)->once()->andReturn(true);
$this->request->shouldReceive('expectsJson')->once()->andReturn(true);
$response = $this->handler->render($this->request, new SuspiciousOperationException('Invalid method override "__CONSTRUCT"'));
$this->assertEquals(400, $response->getStatusCode());
$this->assertStringContainsString('"message": "Bad request."', $response->getContent());
$logger = m::mock(LoggerInterface::class);
$this->container->instance(LoggerInterface::class, $logger);
$logger->shouldNotReceive('log');
$this->handler->report(new SuspiciousOperationException('Invalid method override "__CONSTRUCT"'));
}
public function testRecordsNotFoundReturns404WithoutReporting()
{
$this->config->shouldReceive('get')->with('app.debug', null)->once()->andReturn(true);
$this->request->shouldReceive('expectsJson')->once()->andReturn(true);
$response = $this->handler->render($this->request, new RecordsNotFoundException);
$this->assertEquals(404, $response->getStatusCode());
$this->assertStringContainsString('"message": "Not found."', $response->getContent());
$logger = m::mock(LoggerInterface::class);
$this->container->instance(LoggerInterface::class, $logger);
$logger->shouldNotReceive('log');
$this->handler->report(new RecordsNotFoundException);
}
public function testItReturnsSpecificErrorViewIfExists()
{
$viewFactory = m::mock(stdClass::class);
$viewFactory->shouldReceive('exists')->with('errors::502')->andReturn(true);
$this->container->instance(ViewFactory::class, $viewFactory);
$handler = new class($this->container) extends Handler
{
public function getErrorView($e)
{
return $this->getHttpExceptionView($e);
}
};
$this->assertSame('errors::502', $handler->getErrorView(new HttpException(502)));
}
public function testItReturnsFallbackErrorViewIfExists()
{
$viewFactory = m::mock(stdClass::class);
$viewFactory->shouldReceive('exists')->once()->with('errors::502')->andReturn(false);
$viewFactory->shouldReceive('exists')->once()->with('errors::5xx')->andReturn(true);
$this->container->instance(ViewFactory::class, $viewFactory);
$handler = new class($this->container) extends Handler
{
public function getErrorView($e)
{
return $this->getHttpExceptionView($e);
}
};
$this->assertSame('errors::5xx', $handler->getErrorView(new HttpException(502)));
}
public function testItReturnsNullIfNoErrorViewExists()
{
$viewFactory = m::mock(stdClass::class);
$viewFactory->shouldReceive('exists')->once()->with('errors::404')->andReturn(false);
$viewFactory->shouldReceive('exists')->once()->with('errors::4xx')->andReturn(false);
$this->container->instance(ViewFactory::class, $viewFactory);
$handler = new class($this->container) extends Handler
{
public function getErrorView($e)
{
return $this->getHttpExceptionView($e);
}
};
$this->assertNull($handler->getErrorView(new HttpException(404)));
}
private function executeScenarioWhereErrorViewThrowsWhileRenderingAndDebugIs($debug)
{
$this->viewFactory->shouldReceive('exists')->once()->with('errors::404')->andReturn(true);
$this->viewFactory->shouldReceive('make')->once()->withAnyArgs()->andThrow(new Exception('Rendering this view throws an exception'));
$this->config->shouldReceive('get')->with('app.debug', null)->andReturn($debug);
$handler = new class($this->container) extends Handler
{
protected function registerErrorViewPaths()
{
}
public function getErrorView($e)
{
return $this->renderHttpException($e);
}
};
$this->assertInstanceOf(SymfonyResponse::class, $handler->getErrorView(new HttpException(404)));
}
public function testItDoesNotCrashIfErrorViewThrowsWhileRenderingAndDebugFalse()
{
// When debug is false, the exception thrown while rendering the error view
// should not bubble as this may trigger an infinite loop.
}
public function testItDoesNotCrashIfErrorViewThrowsWhileRenderingAndDebugTrue()
{
// When debug is true, it is OK to bubble the exception thrown while rendering
// the error view as the debug handler should handle this gracefully.
$this->expectException(\Exception::class);
$this->expectExceptionMessage('Rendering this view throws an exception');
$this->executeScenarioWhereErrorViewThrowsWhileRenderingAndDebugIs(true);
}
public function testAssertExceptionIsThrown()
{
$this->assertThrows(function () {
throw new Exception;
});
$this->assertThrows(function () {
throw new CustomException;
});
$this->assertThrows(function () {
throw new CustomException;
}, CustomException::class);
$this->assertThrows(function () {
throw new Exception('Some message.');
}, expectedMessage: 'Some message.');
$this->assertThrows(function () {
throw new CustomException('Some message.');
}, expectedMessage: 'Some message.');
$this->assertThrows(function () {
throw new CustomException('Some message.');
}, expectedClass: CustomException::class, expectedMessage: 'Some message.');
try {
$this->assertThrows(function () {
throw new Exception;
}, CustomException::class);
$testFailed = true;
} catch (AssertionFailedError) {
$testFailed = false;
}
if ($testFailed) {
Assert::fail('assertThrows failed: non matching exceptions are thrown.');
}
try {
$this->assertThrows(function () {
throw new Exception('Some message.');
}, expectedClass: Exception::class, expectedMessage: 'Other message.');
$testFailed = true;
} catch (AssertionFailedError) {
$testFailed = false;
}
if ($testFailed) {
Assert::fail('assertThrows failed: non matching message are thrown.');
}
$this->assertThrows(function () {
throw new CustomException('Some message.');
}, function (CustomException $exception) {
return $exception->getMessage() === 'Some message.';
});
try {
$this->assertThrows(function () {
throw new CustomException('Some message.');
}, function (CustomException $exception) {
return false;
});
$testFailed = true;
} catch (AssertionFailedError) {
$testFailed = false;
}
if ($testFailed) {
Assert::fail('assertThrows failed: exception callback succeeded.');
}
try {
$this->assertThrows(function () {
throw new Exception('Some message.');
}, function (CustomException $exception) {
return true;
});
$testFailed = true;
} catch (AssertionFailedError) {
$testFailed = false;
}
if ($testFailed) {
Assert::fail('assertThrows failed: non matching exceptions are thrown.');
}
}
public function testAssertNoExceptionIsThrown()
{
try {
$this->assertDoesntThrow(function () {
throw new Exception;
});
$testFailed = true;
} catch (AssertionFailedError) {
$testFailed = false;
}
if ($testFailed) {
Assert::fail('assertDoesntThrow failed: thrown exception was not detected.');
}
try {
$this->assertDoesntThrow(function () {
});
$testFailed = false;
} catch (AssertionFailedError) {
$testFailed = true;
}
if ($testFailed) {
Assert::fail('assertDoesntThrow failed: exception was detected while no exception was thrown.');
}
}
public function testItReportsDuplicateExceptions()
{
$reported = [];
$this->handler->reportable(function (\Throwable $e) use (&$reported) {
$reported[] = $e;
return false;
});
$this->handler->report($one = new RuntimeException('foo'));
$this->handler->report($one);
$this->handler->report($two = new RuntimeException('foo'));
$this->assertSame($reported, [$one, $one, $two]);
}
public function testItCanDedupeExceptions()
{
$reported = [];
$e = new RuntimeException('foo');
$this->handler->reportable(function (\Throwable $e) use (&$reported) {
$reported[] = $e;
return false;
});
$this->handler->dontReportDuplicates();
$this->handler->report($one = new RuntimeException('foo'));
$this->handler->report($one);
$this->handler->report($two = new RuntimeException('foo'));
$this->assertSame($reported, [$one, $two]);
}
public function testItDoesNotThrottleExceptionsByDefault()
{
$reported = [];
$this->handler->reportable(function (\Throwable $e) use (&$reported) {
$reported[] = $e;
return false;
});
for ($i = 0; $i < 100; $i++) {
$this->handler->report(new RuntimeException("Exception {$i}"));
}
$this->assertCount(100, $reported);
}
public function testItDoesNotThrottleExceptionsWhenNullReturned()
{
$handler = new class($this->container) extends Handler
{
protected function throttle($e)
{
//
}
};
$reported = [];
$handler->reportable(function (\Throwable $e) use (&$reported) {
$reported[] = $e;
return false;
});
for ($i = 0; $i < 100; $i++) {
$handler->report(new RuntimeException("Exception {$i}"));
}
$this->assertCount(100, $reported);
}
public function testItDoesNotThrottleExceptionsWhenUnlimitedLimit()
{
$handler = new class($this->container) extends Handler
{
protected function throttle($e)
{
return Limit::none();
}
};
$reported = [];
$handler->reportable(function (\Throwable $e) use (&$reported) {
$reported[] = $e;
return false;
});
for ($i = 0; $i < 100; $i++) {
$handler->report(new RuntimeException("Exception {$i}"));
}
$this->assertCount(100, $reported);
}
public function testItCanSampleExceptionsByClass()
{
$handler = new class($this->container) extends Handler
{
protected function throttle($e)
{
return match (true) {
$e instanceof RuntimeException => Lottery::odds(2, 10),
default => parent::throttle($e),
};
}
};
Lottery::forceResultWithSequence([
true, false, false, false, false,
true, false, false, false, false,
]);
$reported = [];
$handler->reportable(function (\Throwable $e) use (&$reported) {
$reported[] = $e;
return false;
});
for ($i = 0; $i < 10; $i++) {
$handler->report(new Exception("Exception {$i}"));
$handler->report(new RuntimeException("RuntimeException {$i}"));
}
[$runtimeExceptions, $baseExceptions] = collect($reported)->partition(fn ($e) => $e instanceof RuntimeException);
$this->assertCount(10, $baseExceptions);
$this->assertCount(2, $runtimeExceptions);
}
public function testItRescuesExceptionsWhileThrottlingAndReports()
{
$handler = new class($this->container) extends Handler
{
protected function throttle($e)
{
throw new RuntimeException('Something went wrong in the throttle method.');
}
};
$reported = [];
$handler->reportable(function (\Throwable $e) use (&$reported) {
$reported[] = $e;
return false;
});
$handler->report(new Exception('Something in the app went wrong.'));
$this->assertCount(1, $reported);
$this->assertSame('Something in the app went wrong.', $reported[0]->getMessage());
}
public function testItRescuesExceptionsIfThereIsAnIssueResolvingTheRateLimiter()
{
$handler = new class($this->container) extends Handler
{
protected function throttle($e)
{
return Limit::perDay(1);
}
};
$reported = [];
$handler->reportable(function (\Throwable $e) use (&$reported) {
$reported[] = $e;
return false;
});
$resolved = false;
$this->container->bind(RateLimiter::class, function () use (&$resolved) {
$resolved = true;
throw new Exception('Error resolving rate limiter.');
});
$handler->report(new Exception('Something in the app went wrong.'));
$this->assertTrue($resolved);
$this->assertCount(1, $reported);
$this->assertSame('Something in the app went wrong.', $reported[0]->getMessage());
}
public function testItRescuesExceptionsIfThereIsAnIssueWithTheRateLimiter()
{
$handler = new class($this->container) extends Handler
{
protected function throttle($e)
{
return Limit::perDay(1);
}
};
$reported = [];
$handler->reportable(function (\Throwable $e) use (&$reported) {
$reported[] = $e;
return false;
});
$this->container->instance(RateLimiter::class, $limiter = new class(new Repository(new NullStore)) extends RateLimiter
{
public $attempted = false;
public function attempt($key, $maxAttempts, Closure $callback, $decaySeconds = 60)
{
$this->attempted = true;
throw new Exception('Unable to connect to Redis.');
}
});
$handler->report(new Exception('Something in the app went wrong.'));
$this->assertTrue($limiter->attempted);
$this->assertCount(1, $reported);
$this->assertSame('Something in the app went wrong.', $reported[0]->getMessage());
}
public function testItCanRateLimitExceptions()
{
$handler = new class($this->container) extends Handler
{
protected function throttle($e)
{
return Limit::perMinute(7);
}
};
$reported = [];
$handler->reportable(function (\Throwable $e) use (&$reported) {
$reported[] = $e;
return false;
});
$this->container->instance(RateLimiter::class, $limiter = new class(new Repository(new ArrayStore)) extends RateLimiter
{
public $attempted = 0;
public function attempt($key, $maxAttempts, Closure $callback, $decaySeconds = 60)
{
$this->attempted++;
return parent::attempt(...func_get_args());
}
});
Carbon::setTestNow(Carbon::now()->startOfDay());
for ($i = 0; $i < 100; $i++) {
$handler->report(new Exception('Something in the app went wrong.'));
}
$this->assertSame(100, $limiter->attempted);
$this->assertCount(7, $reported);
$this->assertSame('Something in the app went wrong.', $reported[0]->getMessage());
Carbon::setTestNow(Carbon::now()->addMinute());
for ($i = 0; $i < 100; $i++) {
$handler->report(new Exception('Something in the app went wrong.'));
}
$this->assertSame(200, $limiter->attempted);
$this->assertCount(14, $reported);
$this->assertSame('Something in the app went wrong.', $reported[0]->getMessage());
}
public function testRateLimitExpiresOnBoundary()
{
$handler = new class($this->container) extends Handler
{
protected function throttle($e)
{
return Limit::perMinute(1);
}
};
$reported = [];
$handler->reportable(function (\Throwable $e) use (&$reported) {
$reported[] = $e;
return false;
});
$this->container->instance(RateLimiter::class, $limiter = new class(new Repository(new ArrayStore)) extends RateLimiter
{
public $attempted = 0;
public function attempt($key, $maxAttempts, Closure $callback, $decaySeconds = 60)
{
$this->attempted++;
return parent::attempt(...func_get_args());
}
});
Carbon::setTestNow('2000-01-01 00:00:00.000');
$handler->report(new Exception('Something in the app went wrong 1.'));
Carbon::setTestNow('2000-01-01 00:00:59.999');
$handler->report(new Exception('Something in the app went wrong 1.'));
$this->assertSame(2, $limiter->attempted);
$this->assertCount(1, $reported);
$this->assertSame('Something in the app went wrong 1.', $reported[0]->getMessage());
Carbon::setTestNow('2000-01-01 00:01:00.000');
$handler->report(new Exception('Something in the app went wrong 2.'));
Carbon::setTestNow('2000-01-01 00:01:59.999');
$handler->report(new Exception('Something in the app went wrong 2.'));
$this->assertSame(4, $limiter->attempted);
$this->assertCount(2, $reported);
$this->assertSame('Something in the app went wrong 2.', $reported[1]->getMessage());
}
}
class CustomException extends Exception
{
}
class ResponsableException extends Exception implements Responsable
{
public function toResponse($request)
{
return response()->json(['response' => 'My responsable exception response']);
}
}
class ReportableException extends Exception
{
public function report(ReportingService $reportingService)
{
$reportingService->send($this->getMessage());
}
}
class UnReportableException extends Exception
{
public function report()
{
return false;
}
}
class RenderableException extends Exception
{
public function render($request)
{
return response()->json(['response' => 'My renderable exception response']);
}
}
class ContextProvidingException extends Exception
{
public function context()
{
return [
'foo' => 'bar',
];
}
}
class CustomReporter
{
private $service;
public function __construct(ReportingService $service)
{
$this->service = $service;
}
public function __invoke(CustomException $e)
{
$this->service->send($e->getMessage());
return false;
}
}
class CustomRenderer
{
public function __invoke(CustomException $e, $request)
{
return response()->json(['response' => 'The CustomRenderer response']);
}
}
interface ReportingService
{
public function send($message);
}