httpClientService = $this->createMock(IClientService::class); $this->httpClient = $this->getMockBuilder(IClient::class)->getMock(); $this->jobList = $this->getMockBuilder(IJobList::class)->getMock(); $this->urlGenerator = $this->getMockBuilder(IURLGenerator::class)->getMock(); $this->trustedServers = $this->getMockBuilder(TrustedServers::class) ->disableOriginalConstructor()->getMock(); $this->response = $this->getMockBuilder(IResponse::class)->getMock(); $this->discoveryService = $this->getMockBuilder(IDiscoveryService::class)->getMock(); $this->logger = $this->createMock(LoggerInterface::class); $this->timeFactory = $this->createMock(ITimeFactory::class); $this->discoveryService->expects($this->any())->method('discover')->willReturn([]); $this->httpClientService->expects($this->any())->method('newClient')->willReturn($this->httpClient); $this->requestSharedSecret = new RequestSharedSecret( $this->httpClientService, $this->urlGenerator, $this->jobList, $this->trustedServers, $this->discoveryService, $this->logger, $this->timeFactory ); } /** * @dataProvider dataTestStart * * @param bool $isTrustedServer * @param bool $retainBackgroundJob */ public function testStart($isTrustedServer, $retainBackgroundJob): void { /** @var RequestSharedSecret |MockObject $requestSharedSecret */ $requestSharedSecret = $this->getMockBuilder('OCA\Federation\BackgroundJob\RequestSharedSecret') ->setConstructorArgs( [ $this->httpClientService, $this->urlGenerator, $this->jobList, $this->trustedServers, $this->discoveryService, $this->logger, $this->timeFactory ] )->setMethods(['parentStart'])->getMock(); $this->invokePrivate($requestSharedSecret, 'argument', [['url' => 'url', 'token' => 'token']]); $this->trustedServers->expects($this->once())->method('isTrustedServer') ->with('url')->willReturn($isTrustedServer); if ($isTrustedServer) { $requestSharedSecret->expects($this->once())->method('parentStart'); } else { $requestSharedSecret->expects($this->never())->method('parentStart'); } $this->invokePrivate($requestSharedSecret, 'retainJob', [$retainBackgroundJob]); $this->jobList->expects($this->once())->method('remove'); $this->timeFactory->method('getTime')->willReturn(42); if ($retainBackgroundJob) { $this->jobList->expects($this->once()) ->method('add') ->with( RequestSharedSecret::class, [ 'url' => 'url', 'token' => 'token', 'created' => 42, 'attempt' => 1, ] ); } else { $this->jobList->expects($this->never())->method('add'); } $requestSharedSecret->start($this->jobList); } public function dataTestStart() { return [ [true, true], [true, false], [false, false], ]; } /** * @dataProvider dataTestRun * * @param int $statusCode */ public function testRun(int $statusCode, int $attempt = 0): void { $target = 'targetURL'; $source = 'sourceURL'; $token = 'token'; $argument = ['url' => $target, 'token' => $token, 'attempt' => $attempt]; $this->timeFactory->method('getTime')->willReturn(42); $this->urlGenerator->expects($this->once())->method('getAbsoluteURL')->with('/') ->willReturn($source); $this->httpClient->expects($this->once())->method('post') ->with( $target . '/ocs/v2.php/apps/federation/api/v1/request-shared-secret', [ 'body' => [ 'url' => $source, 'token' => $token, 'format' => 'json', ], 'timeout' => 3, 'connect_timeout' => 3, ] )->willReturn($this->response); $this->response->expects($this->once())->method('getStatusCode') ->willReturn($statusCode); $this->invokePrivate($this->requestSharedSecret, 'run', [$argument]); if ( $statusCode !== Http::STATUS_OK && ($statusCode !== Http::STATUS_FORBIDDEN || $attempt < 5) ) { $this->assertTrue($this->invokePrivate($this->requestSharedSecret, 'retainJob')); } else { $this->assertFalse($this->invokePrivate($this->requestSharedSecret, 'retainJob')); } } public function dataTestRun() { return [ [Http::STATUS_OK], [Http::STATUS_FORBIDDEN, 5], [Http::STATUS_FORBIDDEN], [Http::STATUS_CONFLICT], ]; } public function testRunExpired(): void { $target = 'targetURL'; $source = 'sourceURL'; $token = 'token'; $created = 42; $argument = [ 'url' => $target, 'token' => $token, 'created' => $created, ]; $this->urlGenerator->expects($this->once()) ->method('getAbsoluteURL') ->with('/') ->willReturn($source); $this->timeFactory->method('getTime') ->willReturn($created + 2592000 + 1); $this->trustedServers->expects($this->once()) ->method('setServerStatus') ->with( $target, TrustedServers::STATUS_FAILURE ); $this->invokePrivate($this->requestSharedSecret, 'run', [$argument]); } public function testRunConnectionError(): void { $target = 'targetURL'; $source = 'sourceURL'; $token = 'token'; $argument = ['url' => $target, 'token' => $token]; $this->timeFactory->method('getTime')->willReturn(42); $this->urlGenerator ->expects($this->once()) ->method('getAbsoluteURL') ->with('/') ->willReturn($source); $this->httpClient ->expects($this->once()) ->method('post') ->with( $target . '/ocs/v2.php/apps/federation/api/v1/request-shared-secret', [ 'body' => [ 'url' => $source, 'token' => $token, 'format' => 'json', ], 'timeout' => 3, 'connect_timeout' => 3, ] )->willThrowException($this->createMock(ConnectException::class)); $this->invokePrivate($this->requestSharedSecret, 'run', [$argument]); $this->assertTrue($this->invokePrivate($this->requestSharedSecret, 'retainJob')); } }