2017-11-12 17:28:04 +03:00
|
|
|
<?php
|
|
|
|
|
2020-06-17 16:17:59 +03:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-11-12 17:28:04 +03:00
|
|
|
/**
|
|
|
|
* @copyright 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
*
|
|
|
|
* @author 2017 Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Test\Support\CrashReport;
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
use OC\Support\CrashReport\Registry;
|
2020-06-17 16:17:59 +03:00
|
|
|
use OCP\AppFramework\QueryException;
|
|
|
|
use OCP\IServerContainer;
|
2018-09-03 09:37:50 +03:00
|
|
|
use OCP\Support\CrashReport\ICollectBreadcrumbs;
|
2019-05-09 15:06:44 +03:00
|
|
|
use OCP\Support\CrashReport\IMessageReporter;
|
2017-11-12 17:28:04 +03:00
|
|
|
use OCP\Support\CrashReport\IReporter;
|
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
class RegistryTest extends TestCase {
|
|
|
|
|
2020-06-17 16:17:59 +03:00
|
|
|
/** @var IServerContainer|\PHPUnit\Framework\MockObject\MockObject */
|
|
|
|
private $serverContainer;
|
|
|
|
|
2017-11-12 17:28:04 +03:00
|
|
|
/** @var Registry */
|
|
|
|
private $registry;
|
|
|
|
|
2019-11-21 18:40:38 +03:00
|
|
|
protected function setUp(): void {
|
2017-11-12 17:28:04 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
2020-06-17 16:17:59 +03:00
|
|
|
$this->serverContainer = $this->createMock(IServerContainer::class);
|
|
|
|
|
|
|
|
$this->registry = new Registry(
|
|
|
|
$this->serverContainer
|
|
|
|
);
|
2017-11-12 17:28:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Doesn't assert anything, just checks whether anything "explodes"
|
|
|
|
*/
|
2020-06-17 16:17:59 +03:00
|
|
|
public function testDelegateToNone(): void {
|
2017-11-12 17:28:04 +03:00
|
|
|
$exception = new Exception('test');
|
|
|
|
|
|
|
|
$this->registry->delegateReport($exception);
|
2018-01-25 13:23:12 +03:00
|
|
|
$this->addToAssertionCount(1);
|
2017-11-12 17:28:04 +03:00
|
|
|
}
|
|
|
|
|
2020-06-17 16:17:59 +03:00
|
|
|
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 {
|
2018-09-03 09:37:50 +03:00
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2020-06-17 16:17:59 +03:00
|
|
|
public function testDelegateToAll(): void {
|
2017-11-12 17:28:04 +03:00
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2020-06-17 16:17:59 +03:00
|
|
|
public function testDelegateMessage(): void {
|
2019-05-09 15:06:44 +03:00
|
|
|
$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);
|
|
|
|
}
|
2017-11-12 17:28:04 +03:00
|
|
|
}
|