blob: b65c21b759e1275677510bcbed05c2798a332268 (
plain)
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
|
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Test\Support\CrashReport;
use Exception;
use OC\Support\CrashReport\Registry;
use OCP\AppFramework\QueryException;
use OCP\IServerContainer;
use OCP\Support\CrashReport\ICollectBreadcrumbs;
use OCP\Support\CrashReport\IMessageReporter;
use OCP\Support\CrashReport\IReporter;
use Test\TestCase;
class RegistryTest extends TestCase {
/** @var IServerContainer|\PHPUnit\Framework\MockObject\MockObject */
private $serverContainer;
/** @var Registry */
private $registry;
protected function setUp(): void {
parent::setUp();
$this->serverContainer = $this->createMock(IServerContainer::class);
$this->registry = new Registry(
$this->serverContainer
);
}
/**
* Doesn't assert anything, just checks whether anything "explodes"
*/
public function testDelegateToNone(): void {
$exception = new Exception('test');
$this->registry->delegateReport($exception);
$this->addToAssertionCount(1);
}
public function testRegisterLazyCantLoad(): void {
$reporterClass = '\OCA\MyApp\Reporter';
$reporter = $this->createMock(IReporter::class);
$this->serverContainer->expects($this->once())
->method('query')
->with($reporterClass)
->willReturn($reporter);
$reporter->expects($this->once())
->method('report');
$exception = new Exception('test');
$this->registry->registerLazy($reporterClass);
$this->registry->delegateReport($exception);
}
public function testRegisterLazy(): void {
$reporterClass = '\OCA\MyApp\Reporter';
$this->serverContainer->expects($this->once())
->method('query')
->with($reporterClass)
->willThrowException(new QueryException());
$exception = new Exception('test');
$this->registry->registerLazy($reporterClass);
$this->registry->delegateReport($exception);
}
public function testDelegateBreadcrumbCollection(): void {
$reporter1 = $this->createMock(IReporter::class);
$reporter2 = $this->createMock(ICollectBreadcrumbs::class);
$message = 'hello';
$category = 'log';
$reporter2->expects($this->once())
->method('collect')
->with($message, $category);
$this->registry->register($reporter1);
$this->registry->register($reporter2);
$this->registry->delegateBreadcrumb($message, $category);
}
public function testDelegateToAll(): void {
$reporter1 = $this->createMock(IReporter::class);
$reporter2 = $this->createMock(IReporter::class);
$exception = new Exception('test');
$reporter1->expects($this->once())
->method('report')
->with($exception);
$reporter2->expects($this->once())
->method('report')
->with($exception);
$this->registry->register($reporter1);
$this->registry->register($reporter2);
$this->registry->delegateReport($exception);
}
public function testDelegateMessage(): void {
$reporter1 = $this->createMock(IReporter::class);
$reporter2 = $this->createMock(IMessageReporter::class);
$message = 'hello';
$reporter2->expects($this->once())
->method('reportMessage')
->with($message, []);
$this->registry->register($reporter1);
$this->registry->register($reporter2);
$this->registry->delegateMessage($message);
}
}
|