0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-15 21:47:57 +00:00
nextcloud_server/tests/lib/Http/WellKnown/RequestManagerTest.php
Daniel Kesselberg af6de04e9e
style: update codestyle for coding-standard 1.2.3
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2024-08-25 19:34:58 +02:00

154 lines
4.5 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Test\Http\WellKnown;
use OC\AppFramework\Bootstrap\Coordinator;
use OC\AppFramework\Bootstrap\RegistrationContext;
use OC\AppFramework\Bootstrap\ServiceRegistration;
use OC\Http\WellKnown\RequestManager;
use OCP\AppFramework\QueryException;
use OCP\Http\WellKnown\IHandler;
use OCP\Http\WellKnown\IRequestContext;
use OCP\Http\WellKnown\IResponse;
use OCP\Http\WellKnown\JrdResponse;
use OCP\IRequest;
use OCP\IServerContainer;
use PHPUnit\Framework\MockObject\MockObject;
use Psr\Log\LoggerInterface;
use RuntimeException;
use Test\TestCase;
use function get_class;
class RequestManagerTest extends TestCase {
/** @var Coordinator|MockObject */
private $coordinator;
/** @var IServerContainer|MockObject */
private $container;
/** @var MockObject|LoggerInterface */
private $logger;
/** @var RequestManager */
private $manager;
protected function setUp(): void {
parent::setUp();
$this->coordinator = $this->createMock(Coordinator::class);
$this->container = $this->createMock(IServerContainer::class);
$this->logger = $this->createMock(LoggerInterface::class);
$this->manager = new RequestManager(
$this->coordinator,
$this->container,
$this->logger,
);
}
public function testProcessAppsNotRegistered(): void {
$request = $this->createMock(IRequest::class);
$this->expectException(RuntimeException::class);
$this->manager->process('webfinger', $request);
}
public function testProcessNoHandlersRegistered(): void {
$request = $this->createMock(IRequest::class);
$registrationContext = $this->createMock(RegistrationContext::class);
$this->coordinator->expects(self::once())
->method('getRegistrationContext')
->willReturn($registrationContext);
$registrationContext->expects(self::once())
->method('getWellKnownHandlers')
->willReturn([]);
$response = $this->manager->process('webfinger', $request);
self::assertNull($response);
}
public function testProcessHandlerNotLoadable(): void {
$request = $this->createMock(IRequest::class);
$registrationContext = $this->createMock(RegistrationContext::class);
$this->coordinator->expects(self::once())
->method('getRegistrationContext')
->willReturn($registrationContext);
$handler = new class {
};
$registrationContext->expects(self::once())
->method('getWellKnownHandlers')
->willReturn([
new ServiceRegistration('test', get_class($handler)),
]);
$this->container->expects(self::once())
->method('get')
->with(get_class($handler))
->willThrowException(new QueryException(''));
$this->logger->expects(self::once())
->method('error');
$response = $this->manager->process('webfinger', $request);
self::assertNull($response);
}
public function testProcessHandlerOfWrongType(): void {
$request = $this->createMock(IRequest::class);
$registrationContext = $this->createMock(RegistrationContext::class);
$this->coordinator->expects(self::once())
->method('getRegistrationContext')
->willReturn($registrationContext);
$handler = new class {
};
$registrationContext->expects(self::once())
->method('getWellKnownHandlers')
->willReturn([
new ServiceRegistration('test', get_class($handler)),
]);
$this->container->expects(self::once())
->method('get')
->with(get_class($handler))
->willReturn($handler);
$this->logger->expects(self::once())
->method('error');
$response = $this->manager->process('webfinger', $request);
self::assertNull($response);
}
public function testProcess(): void {
$request = $this->createMock(IRequest::class);
$registrationContext = $this->createMock(RegistrationContext::class);
$this->coordinator->expects(self::once())
->method('getRegistrationContext')
->willReturn($registrationContext);
$handler = new class implements IHandler {
public function handle(string $service, IRequestContext $context, ?IResponse $previousResponse): ?IResponse {
return (new JrdResponse($service))->addAlias('alias');
}
};
$registrationContext->expects(self::once())
->method('getWellKnownHandlers')
->willReturn([
new ServiceRegistration('test', get_class($handler)),
]);
$this->container->expects(self::once())
->method('get')
->with(get_class($handler))
->willReturn($handler);
$response = $this->manager->process('webfinger', $request);
self::assertNotNull($response);
self::assertInstanceOf(JrdResponse::class, $response);
}
}