Inject IHTTPClientService

Otherwise the unit test execution will do a ton of external HTTP requests which fail and then timeout…

See https://blackfire.io/profiles/compare/3c67acfa-a11e-4aec-bcd4-c945b006f01e/graph for reference

Pretty similar to https://github.com/nextcloud/server/pull/1565

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
Lukas Reschke 2016-09-29 00:22:32 +02:00
parent 2eab2ffa22
commit 498b7399c1
No known key found for this signature in database
GPG Key ID: B9F6980CF6E759B1
3 changed files with 24 additions and 3 deletions

View File

@ -56,6 +56,7 @@ class MountProvider implements IMountProvider {
$mountPoint = '/' . $user->getUID() . '/files/' . ltrim($data['mountpoint'], '/');
$data['mountpoint'] = $mountPoint;
$data['certificateManager'] = \OC::$server->getCertificateManager($user->getUID());
$data['HttpClientService'] = \OC::$server->getHTTPClientService();
return new Mount(self::STORAGE, $mountPoint, $data, $manager, $storageFactory);
}

View File

@ -64,10 +64,10 @@ class Storage extends DAV implements ISharedStorage {
public function __construct($options) {
$this->memcacheFactory = \OC::$server->getMemCacheFactory();
$this->httpClient = \OC::$server->getHTTPClientService();
$this->httpClient = $options['HttpClientService'];
$discoveryManager = new DiscoveryManager(
$this->memcacheFactory,
\OC::$server->getHTTPClientService()
$this->httpClient
);
$this->manager = $options['manager'];

View File

@ -25,6 +25,9 @@
*/
namespace OCA\Files_Sharing\Tests;
use OCP\Http\Client\IClient;
use OCP\Http\Client\IClientService;
use OCP\Http\Client\IResponse;
/**
* Tests for the external Storage class for remote shares.
@ -69,6 +72,22 @@ class ExternalStorageTest extends \Test\TestCase {
private function getTestStorage($uri) {
$certificateManager = \OC::$server->getCertificateManager();
$httpClientService = $this->createMock(IClientService::class);
$client = $this->createMock(IClient::class);
$response = $this->createMock(IResponse::class);
$client
->expects($this->any())
->method('get')
->willReturn($response);
$client
->expects($this->any())
->method('post')
->willReturn($response);
$httpClientService
->expects($this->any())
->method('newClient')
->willReturn($client);
return new TestSharingExternalStorage(
array(
'remote' => $uri,
@ -77,7 +96,8 @@ class ExternalStorageTest extends \Test\TestCase {
'token' => 'abcdef',
'password' => '',
'manager' => null,
'certificateManager' => $certificateManager
'certificateManager' => $certificateManager,
'HttpClientService' => $httpClientService,
)
);
}