Actually set the status so we don't cause another exception
* And add tests so I don't mess up again Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
parent
a9eb0d4a40
commit
d24b6866b1
|
@ -198,6 +198,7 @@ class GetSharedSecret extends Job {
|
|||
$this->logger->info($target . ' responded with a ' . $status . ' containing: ' . $e->getMessage(), ['app' => 'federation']);
|
||||
}
|
||||
} catch (ConnectException $e) {
|
||||
$status = -1; // There is no status code if we could not connect
|
||||
$this->logger->info('Could not connect to ' . $target, ['app' => 'federation']);
|
||||
} catch (\Exception $e) {
|
||||
$status = Http::STATUS_INTERNAL_SERVER_ERROR;
|
||||
|
|
|
@ -198,6 +198,7 @@ class RequestSharedSecret extends Job {
|
|||
$this->logger->info($target . ' responded with a ' . $status . ' containing: ' . $e->getMessage(), ['app' => 'federation']);
|
||||
}
|
||||
} catch (ConnectException $e) {
|
||||
$status = -1; // There is no status code if we could not connect
|
||||
$this->logger->info('Could not connect to ' . $target, ['app' => 'federation']);
|
||||
} catch (\Exception $e) {
|
||||
$status = Http::STATUS_INTERNAL_SERVER_ERROR;
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
namespace OCA\Federation\Tests\BackgroundJob;
|
||||
|
||||
|
||||
use GuzzleHttp\Exception\ConnectException;
|
||||
use OCA\Federation\BackgroundJob\GetSharedSecret;
|
||||
use OCA\Files_Sharing\Tests\TestCase;
|
||||
use OCA\Federation\DbHandler;
|
||||
|
@ -277,4 +278,41 @@ class GetSharedSecretTest extends TestCase {
|
|||
|
||||
$this->invokePrivate($this->getSharedSecret, 'run', [$argument]);
|
||||
}
|
||||
|
||||
public function testRunConnectionError() {
|
||||
$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('get')
|
||||
->with(
|
||||
$target . '/ocs/v2.php/apps/federation/api/v1/shared-secret?format=json',
|
||||
[
|
||||
'query' =>
|
||||
[
|
||||
'url' => $source,
|
||||
'token' => $token
|
||||
],
|
||||
'timeout' => 3,
|
||||
'connect_timeout' => 3,
|
||||
]
|
||||
)->willThrowException($this->createMock(ConnectException::class));
|
||||
|
||||
$this->dbHandler->expects($this->never())->method('addToken');
|
||||
$this->trustedServers->expects($this->never())->method('addSharedSecret');
|
||||
|
||||
$this->invokePrivate($this->getSharedSecret, 'run', [$argument]);
|
||||
|
||||
$this->assertTrue($this->invokePrivate($this->getSharedSecret, 'retainJob'));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
namespace OCA\Federation\Tests\BackgroundJob;
|
||||
|
||||
|
||||
use GuzzleHttp\Exception\ConnectException;
|
||||
use OCA\Federation\BackgroundJob\RequestSharedSecret;
|
||||
use OCA\Federation\DbHandler;
|
||||
use OCA\Federation\TrustedServers;
|
||||
|
@ -262,4 +263,41 @@ class RequestSharedSecretTest extends TestCase {
|
|||
|
||||
$this->invokePrivate($this->requestSharedSecret, 'run', [$argument]);
|
||||
}
|
||||
|
||||
public function testRunConnectionError() {
|
||||
$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?format=json',
|
||||
[
|
||||
'body' =>
|
||||
[
|
||||
'url' => $source,
|
||||
'token' => $token
|
||||
],
|
||||
'timeout' => 3,
|
||||
'connect_timeout' => 3,
|
||||
]
|
||||
)->willThrowException($this->createMock(ConnectException::class));
|
||||
|
||||
$this->dbHandler->expects($this->never())->method('addToken');
|
||||
|
||||
$this->invokePrivate($this->requestSharedSecret, 'run', [$argument]);
|
||||
$this->assertTrue($this->invokePrivate($this->requestSharedSecret, 'retainJob'));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue