123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OCA\Settings\Tests;
- use OCA\Settings\SetupChecks\WellKnownUrls;
- use OCP\Http\Client\IClientService;
- use OCP\Http\Client\IResponse;
- use OCP\IConfig;
- use OCP\IL10N;
- use OCP\IURLGenerator;
- use OCP\SetupCheck\SetupResult;
- use PHPUnit\Framework\MockObject\MockObject;
- use Psr\Log\LoggerInterface;
- use Test\TestCase;
- class WellKnownUrlsTest extends TestCase {
- private IL10N|MockObject $l10n;
- private IConfig|MockObject $config;
- private IURLGenerator|MockObject $urlGenerator;
- private IClientService|MockObject $clientService;
- private LoggerInterface|MockObject $logger;
- private WellKnownUrls|MockObject $setupcheck;
- protected function setUp(): void {
- parent::setUp();
- /** @var IL10N|MockObject */
- $this->l10n = $this->getMockBuilder(IL10N::class)
- ->disableOriginalConstructor()->getMock();
- $this->l10n->expects($this->any())
- ->method('t')
- ->willReturnCallback(function ($message, array $replace) {
- return vsprintf($message, $replace);
- });
- $this->config = $this->createMock(IConfig::class);
- $this->urlGenerator = $this->createMock(IURLGenerator::class);
- $this->clientService = $this->createMock(IClientService::class);
- $this->logger = $this->createMock(LoggerInterface::class);
- $this->setupcheck = $this->getMockBuilder(WellKnownUrls::class)
- ->onlyMethods(['runRequest'])
- ->setConstructorArgs([
- $this->l10n,
- $this->config,
- $this->urlGenerator,
- $this->clientService,
- $this->logger,
- ])
- ->getMock();
- }
- /**
- * Test that the SetupCheck is skipped if the system config is set
- */
- public function testDisabled(): void {
- $this->config
- ->expects($this->once())
- ->method('getSystemValueBool')
- ->with('check_for_working_wellknown_setup')
- ->willReturn(false);
- $this->setupcheck
- ->expects($this->never())
- ->method('runRequest');
- $result = $this->setupcheck->run();
- $this->assertEquals(SetupResult::INFO, $result->getSeverity());
- $this->assertMatchesRegularExpression('/check was skipped/', $result->getDescription());
- }
- /**
- * Test what happens if the local server could not be reached (no response from the requests)
- */
- public function testNoResponse(): void {
- $this->config
- ->expects($this->once())
- ->method('getSystemValueBool')
- ->with('check_for_working_wellknown_setup')
- ->willReturn(true);
- $this->setupcheck
- ->expects($this->once())
- ->method('runRequest')
- ->will($this->generate([]));
- $result = $this->setupcheck->run();
- $this->assertEquals(SetupResult::INFO, $result->getSeverity());
- $this->assertMatchesRegularExpression('/^Could not check/', $result->getDescription());
- }
- /**
- * Test responses
- * @dataProvider dataTestResponses
- */
- public function testResponses($responses, string $expectedSeverity): void {
- $this->config
- ->expects($this->once())
- ->method('getSystemValueBool')
- ->with('check_for_working_wellknown_setup')
- ->willReturn(true);
- $this->setupcheck
- ->expects($this->atLeastOnce())
- ->method('runRequest')
- ->willReturnOnConsecutiveCalls(...$responses);
- $result = $this->setupcheck->run();
- $this->assertEquals($expectedSeverity, $result->getSeverity());
- }
- public function dataTestResponses(): array {
- $createResponse = function (int $statuscode, array $header = []): IResponse|MockObject {
- $response = $this->createMock(IResponse::class);
- $response->expects($this->any())
- ->method('getStatusCode')
- ->willReturn($statuscode);
- $response->expects($this->any())
- ->method('getHeader')
- ->willReturnCallback(fn ($name) => $header[$name] ?? '');
- return $response;
- };
- $wellKnownHeader = ['X-NEXTCLOUD-WELL-KNOWN' => 'yes'];
- return [
- 'expected codes' => [
- [
- $this->generate([$createResponse(200, $wellKnownHeader)]),
- $this->generate([$createResponse(200, $wellKnownHeader)]),
- $this->generate([$createResponse(207)]),
- $this->generate([$createResponse(207)]),
- ],
- SetupResult::SUCCESS,
- ],
- 'late response with expected codes' => [
- [
- $this->generate([$createResponse(404), $createResponse(200, $wellKnownHeader)]),
- $this->generate([$createResponse(404), $createResponse(200, $wellKnownHeader)]),
- $this->generate([$createResponse(404), $createResponse(207)]),
- $this->generate([$createResponse(404), $createResponse(207)]),
- ],
- SetupResult::SUCCESS,
- ],
- 'working but disabled webfinger' => [
- [
- $this->generate([$createResponse(404, $wellKnownHeader)]),
- $this->generate([$createResponse(404, $wellKnownHeader)]),
- $this->generate([$createResponse(207)]),
- $this->generate([$createResponse(207)]),
- ],
- SetupResult::SUCCESS,
- ],
- 'unauthorized webdav but with correct configured redirect' => [
- [
- $this->generate([$createResponse(404, $wellKnownHeader)]),
- $this->generate([$createResponse(404, $wellKnownHeader)]),
- $this->generate([$createResponse(401, ['X-Guzzle-Redirect-History' => 'https://example.com,https://example.com/remote.php/dav/'])]),
- $this->generate([$createResponse(401, ['X-Guzzle-Redirect-History' => 'https://example.com/remote.php/dav/'])]),
- ],
- SetupResult::SUCCESS,
- ],
- 'not configured path' => [
- [
- $this->generate([$createResponse(404)]),
- $this->generate([$createResponse(404)]),
- $this->generate([$createResponse(404)]),
- $this->generate([$createResponse(404)]),
- ],
- SetupResult::WARNING,
- ],
- 'Invalid webfinger' => [
- [
- $this->generate([$createResponse(404)]),
- $this->generate([$createResponse(404, $wellKnownHeader)]),
- $this->generate([$createResponse(207)]),
- $this->generate([$createResponse(207)]),
- ],
- SetupResult::WARNING,
- ],
- 'Invalid nodeinfo' => [
- [
- $this->generate([$createResponse(404, $wellKnownHeader)]),
- $this->generate([$createResponse(404)]),
- $this->generate([$createResponse(207)]),
- $this->generate([$createResponse(207)]),
- ],
- SetupResult::WARNING,
- ],
- 'Invalid caldav' => [
- [
- $this->generate([$createResponse(404, $wellKnownHeader)]),
- $this->generate([$createResponse(404, $wellKnownHeader)]),
- $this->generate([$createResponse(404)]),
- $this->generate([$createResponse(207)]),
- ],
- SetupResult::WARNING,
- ],
- ];
- }
- /**
- * Helper function creates a nicer interface for mocking Generator behavior
- */
- protected function generate(array $yield_values) {
- return $this->returnCallback(function () use ($yield_values) {
- yield from $yield_values;
- });
- }
- }
|