summaryrefslogtreecommitdiffstats
path: root/tests/lib/Http/Client/ClientServiceTest.php
blob: 48330dc33c0b1b2543d157e43481b5a17360f730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/**
 * Copyright (c) 2015 Lukas Reschke <lukas@owncloud.com>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace Test\Http\Client;

use GuzzleHttp\Client as GuzzleClient;
use OC\Http\Client\Client;
use OC\Http\Client\ClientService;
use OCP\ICertificateManager;
use OCP\IConfig;

/**
 * Class ClientServiceTest
 */
class ClientServiceTest extends \Test\TestCase {
	public function testNewClient() {
		$config = $this->createMock(IConfig::class);
		$certificateManager = $this->createMock(ICertificateManager::class);

		$expected = new Client($config, $certificateManager, new GuzzleClient());
		$clientService = new ClientService($config, $certificateManager);
		$this->assertEquals($expected, $clientService->newClient());
	}
}