2015-03-16 13:28:23 +03:00
|
|
|
<?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.
|
|
|
|
*/
|
|
|
|
|
2016-05-19 09:46:58 +03:00
|
|
|
namespace Test\Http\Client;
|
2015-03-16 13:28:23 +03:00
|
|
|
|
2018-02-08 15:39:27 +03:00
|
|
|
use GuzzleHttp\Psr7\Response;
|
2016-05-19 09:46:58 +03:00
|
|
|
use OC\Http\Client\Client;
|
2017-01-02 16:51:16 +03:00
|
|
|
use OC\Security\CertificateManager;
|
2016-09-07 21:05:51 +03:00
|
|
|
use OCP\ICertificateManager;
|
2015-03-16 13:28:23 +03:00
|
|
|
use OCP\IConfig;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ClientTest
|
|
|
|
*/
|
|
|
|
class ClientTest extends \Test\TestCase {
|
2017-01-02 16:51:16 +03:00
|
|
|
/** @var \GuzzleHttp\Client|\PHPUnit_Framework_MockObject_MockObject */
|
2015-03-16 13:28:23 +03:00
|
|
|
private $guzzleClient;
|
2017-01-02 16:51:16 +03:00
|
|
|
/** @var CertificateManager|\PHPUnit_Framework_MockObject_MockObject */
|
|
|
|
private $certificateManager;
|
2015-03-16 13:28:23 +03:00
|
|
|
/** @var Client */
|
|
|
|
private $client;
|
2017-01-02 16:51:16 +03:00
|
|
|
/** @var IConfig|\PHPUnit_Framework_MockObject_MockObject */
|
2015-03-16 13:28:23 +03:00
|
|
|
private $config;
|
2018-06-14 22:12:29 +03:00
|
|
|
/** @var array */
|
|
|
|
private $defaultRequestOptions;
|
2015-03-16 13:28:23 +03:00
|
|
|
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2015-03-16 13:28:23 +03:00
|
|
|
parent::setUp();
|
2016-09-07 21:05:51 +03:00
|
|
|
$this->config = $this->createMock(IConfig::class);
|
2019-02-24 16:48:05 +03:00
|
|
|
$this->guzzleClient = $this->getMockBuilder(\GuzzleHttp\Client::class)
|
2015-03-16 13:28:23 +03:00
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
2017-01-02 16:51:16 +03:00
|
|
|
$this->certificateManager = $this->createMock(ICertificateManager::class);
|
2015-03-16 13:28:23 +03:00
|
|
|
$this->client = new Client(
|
|
|
|
$this->config,
|
2017-01-02 16:51:16 +03:00
|
|
|
$this->certificateManager,
|
2019-02-24 16:48:05 +03:00
|
|
|
$this->guzzleClient
|
2015-03-16 13:28:23 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testGetProxyUri(): void {
|
2015-03-16 13:28:23 +03:00
|
|
|
$this->config
|
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('proxy', null)
|
|
|
|
->willReturn(null);
|
2019-02-24 16:48:05 +03:00
|
|
|
$this->assertNull(self::invokePrivate($this->client, 'getProxyUri'));
|
2015-03-16 13:28:23 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testGetProxyUriProxyHostEmptyPassword(): void {
|
2015-03-16 13:28:23 +03:00
|
|
|
$this->config
|
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('proxy', null)
|
|
|
|
->willReturn('foo');
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(1))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('proxyuserpwd', null)
|
|
|
|
->willReturn(null);
|
2015-06-03 13:03:02 +03:00
|
|
|
$this->assertSame('foo', self::invokePrivate($this->client, 'getProxyUri'));
|
2015-03-16 13:28:23 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testGetProxyUriProxyHostWithPassword(): void {
|
2015-03-16 13:28:23 +03:00
|
|
|
$this->config
|
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getSystemValue')
|
2019-08-03 01:18:01 +03:00
|
|
|
->with(
|
|
|
|
$this->equalTo('proxy'),
|
|
|
|
$this->callback(function ($input) {
|
|
|
|
return $input === '';
|
|
|
|
})
|
|
|
|
)
|
2015-03-16 13:28:23 +03:00
|
|
|
->willReturn('foo');
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(1))
|
|
|
|
->method('getSystemValue')
|
2019-08-03 01:18:01 +03:00
|
|
|
->with(
|
|
|
|
$this->equalTo('proxyuserpwd'),
|
|
|
|
$this->callback(function ($input) {
|
|
|
|
return $input === '';
|
|
|
|
})
|
|
|
|
)
|
2015-03-16 13:28:23 +03:00
|
|
|
->willReturn('username:password');
|
2015-06-03 13:03:02 +03:00
|
|
|
$this->assertSame('username:password@foo', self::invokePrivate($this->client, 'getProxyUri'));
|
2015-03-16 13:28:23 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
private function setUpDefaultRequestOptions(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->config
|
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('proxy', null)
|
|
|
|
->willReturn('foo');
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(1))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('proxyuserpwd', null)
|
|
|
|
->willReturn(null);
|
|
|
|
$this->certificateManager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getAbsoluteBundlePath')
|
|
|
|
->with(null)
|
|
|
|
->willReturn('/my/path.crt');
|
|
|
|
|
|
|
|
$this->defaultRequestOptions = [
|
|
|
|
'verify' => '/my/path.crt',
|
2019-02-24 16:48:05 +03:00
|
|
|
'proxy' => 'foo',
|
|
|
|
'headers' => [
|
2019-09-03 10:14:08 +03:00
|
|
|
'User-Agent' => 'Nextcloud Server Crawler',
|
|
|
|
],
|
|
|
|
'timeout' => 30,
|
2018-06-14 22:12:29 +03:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testGet(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2018-02-08 15:39:27 +03:00
|
|
|
$this->guzzleClient->method('request')
|
2018-06-14 22:12:29 +03:00
|
|
|
->with('get', 'http://localhost/', $this->defaultRequestOptions)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->get('http://localhost/', [])->getStatusCode());
|
2015-03-16 13:28:23 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testGetWithOptions(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2019-09-03 10:14:08 +03:00
|
|
|
$options = array_merge($this->defaultRequestOptions, [
|
2018-06-14 22:12:29 +03:00
|
|
|
'verify' => false,
|
2019-02-24 16:48:05 +03:00
|
|
|
'proxy' => 'bar',
|
2019-09-03 10:14:08 +03:00
|
|
|
]);
|
2018-06-14 22:12:29 +03:00
|
|
|
|
|
|
|
$this->guzzleClient->method('request')
|
|
|
|
->with('get', 'http://localhost/', $options)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->get('http://localhost/', $options)->getStatusCode());
|
2018-06-14 22:12:29 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testPost(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2018-02-08 15:39:27 +03:00
|
|
|
$this->guzzleClient->method('request')
|
2018-06-14 22:12:29 +03:00
|
|
|
->with('post', 'http://localhost/', $this->defaultRequestOptions)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->post('http://localhost/', [])->getStatusCode());
|
2015-03-16 13:28:23 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testPostWithOptions(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2019-09-03 10:14:08 +03:00
|
|
|
$options = array_merge($this->defaultRequestOptions, [
|
2018-06-14 22:12:29 +03:00
|
|
|
'verify' => false,
|
2019-02-24 16:48:05 +03:00
|
|
|
'proxy' => 'bar',
|
2019-09-03 10:14:08 +03:00
|
|
|
]);
|
2018-06-14 22:12:29 +03:00
|
|
|
|
|
|
|
$this->guzzleClient->method('request')
|
|
|
|
->with('post', 'http://localhost/', $options)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->post('http://localhost/', $options)->getStatusCode());
|
2018-06-14 22:12:29 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testPut(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2018-02-08 15:39:27 +03:00
|
|
|
$this->guzzleClient->method('request')
|
2018-06-14 22:12:29 +03:00
|
|
|
->with('put', 'http://localhost/', $this->defaultRequestOptions)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->put('http://localhost/', [])->getStatusCode());
|
2015-03-16 13:28:23 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testPutWithOptions(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2019-09-03 10:14:08 +03:00
|
|
|
$options = array_merge($this->defaultRequestOptions, [
|
2018-06-14 22:12:29 +03:00
|
|
|
'verify' => false,
|
2019-02-24 16:48:05 +03:00
|
|
|
'proxy' => 'bar',
|
2019-09-03 10:14:08 +03:00
|
|
|
]);
|
2018-06-14 22:12:29 +03:00
|
|
|
|
|
|
|
$this->guzzleClient->method('request')
|
|
|
|
->with('put', 'http://localhost/', $options)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->put('http://localhost/', $options)->getStatusCode());
|
2018-06-14 22:12:29 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testDelete(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2018-02-08 15:39:27 +03:00
|
|
|
$this->guzzleClient->method('request')
|
2018-06-14 22:12:29 +03:00
|
|
|
->with('delete', 'http://localhost/', $this->defaultRequestOptions)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->delete('http://localhost/', [])->getStatusCode());
|
2015-03-16 13:28:23 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testDeleteWithOptions(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2019-09-03 10:14:08 +03:00
|
|
|
$options = array_merge($this->defaultRequestOptions, [
|
2018-06-14 22:12:29 +03:00
|
|
|
'verify' => false,
|
2019-02-24 16:48:05 +03:00
|
|
|
'proxy' => 'bar',
|
2019-09-03 10:14:08 +03:00
|
|
|
]);
|
2018-06-14 22:12:29 +03:00
|
|
|
|
|
|
|
$this->guzzleClient->method('request')
|
|
|
|
->with('delete', 'http://localhost/', $options)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->delete('http://localhost/', $options)->getStatusCode());
|
2018-06-14 22:12:29 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testOptions(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2018-02-08 15:39:27 +03:00
|
|
|
$this->guzzleClient->method('request')
|
2018-06-14 22:12:29 +03:00
|
|
|
->with('options', 'http://localhost/', $this->defaultRequestOptions)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->options('http://localhost/', [])->getStatusCode());
|
2015-03-16 13:28:23 +03:00
|
|
|
}
|
2017-01-02 16:51:16 +03:00
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testOptionsWithOptions(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2019-09-03 10:14:08 +03:00
|
|
|
$options = array_merge($this->defaultRequestOptions, [
|
2018-06-14 22:12:29 +03:00
|
|
|
'verify' => false,
|
2019-02-24 16:48:05 +03:00
|
|
|
'proxy' => 'bar',
|
2019-09-03 10:14:08 +03:00
|
|
|
]);
|
2018-06-14 22:12:29 +03:00
|
|
|
|
|
|
|
$this->guzzleClient->method('request')
|
|
|
|
->with('options', 'http://localhost/', $options)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->options('http://localhost/', $options)->getStatusCode());
|
2018-06-14 22:12:29 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testHead(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2018-02-08 15:39:27 +03:00
|
|
|
$this->guzzleClient->method('request')
|
2018-06-14 22:12:29 +03:00
|
|
|
->with('head', 'http://localhost/', $this->defaultRequestOptions)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->head('http://localhost/', [])->getStatusCode());
|
2017-01-02 16:51:16 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testHeadWithOptions(): void {
|
2018-06-14 22:12:29 +03:00
|
|
|
$this->setUpDefaultRequestOptions();
|
|
|
|
|
2019-09-03 10:14:08 +03:00
|
|
|
$options = array_merge($this->defaultRequestOptions, [
|
2018-06-14 22:12:29 +03:00
|
|
|
'verify' => false,
|
2019-02-24 16:48:05 +03:00
|
|
|
'proxy' => 'bar',
|
2019-09-03 10:14:08 +03:00
|
|
|
]);
|
2018-06-14 22:12:29 +03:00
|
|
|
|
|
|
|
$this->guzzleClient->method('request')
|
|
|
|
->with('head', 'http://localhost/', $options)
|
2020-02-06 20:13:04 +03:00
|
|
|
->willReturn(new Response(418));
|
|
|
|
$this->assertEquals(418, $this->client->head('http://localhost/', $options)->getStatusCode());
|
2018-06-14 22:12:29 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testSetDefaultOptionsWithNotInstalled(): void {
|
2017-01-02 16:51:16 +03:00
|
|
|
$this->config
|
2019-04-16 22:27:03 +03:00
|
|
|
->expects($this->at(1))
|
2017-01-02 16:51:16 +03:00
|
|
|
->method('getSystemValue')
|
|
|
|
->with('installed', false)
|
|
|
|
->willReturn(false);
|
|
|
|
$this->certificateManager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('listCertificates')
|
|
|
|
->willReturn([]);
|
|
|
|
|
2018-02-08 15:39:27 +03:00
|
|
|
$this->assertEquals([
|
2019-02-24 16:48:05 +03:00
|
|
|
'verify' => \OC::$SERVERROOT . '/resources/config/ca-bundle.crt',
|
|
|
|
'proxy' => null,
|
|
|
|
'headers' => [
|
|
|
|
'User-Agent' => 'Nextcloud Server Crawler'
|
2019-09-03 10:14:08 +03:00
|
|
|
],
|
|
|
|
'timeout' => 30,
|
2019-02-24 16:48:05 +03:00
|
|
|
], self::invokePrivate($this->client, 'buildRequestOptions', [[]]));
|
2017-01-02 16:51:16 +03:00
|
|
|
}
|
|
|
|
|
2019-02-24 16:48:05 +03:00
|
|
|
public function testSetDefaultOptionsWithProxy(): void {
|
2017-01-02 16:51:16 +03:00
|
|
|
$this->config
|
|
|
|
->expects($this->at(0))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('proxy', null)
|
|
|
|
->willReturn('foo');
|
|
|
|
$this->config
|
|
|
|
->expects($this->at(1))
|
|
|
|
->method('getSystemValue')
|
|
|
|
->with('proxyuserpwd', null)
|
|
|
|
->willReturn(null);
|
|
|
|
$this->certificateManager
|
|
|
|
->expects($this->once())
|
|
|
|
->method('getAbsoluteBundlePath')
|
|
|
|
->with(null)
|
|
|
|
->willReturn('/my/path.crt');
|
2018-02-08 15:39:27 +03:00
|
|
|
|
|
|
|
$this->assertEquals([
|
|
|
|
'verify' => '/my/path.crt',
|
2019-02-24 16:48:05 +03:00
|
|
|
'proxy' => 'foo',
|
|
|
|
'headers' => [
|
|
|
|
'User-Agent' => 'Nextcloud Server Crawler'
|
2019-09-03 10:14:08 +03:00
|
|
|
],
|
|
|
|
'timeout' => 30,
|
2019-02-24 16:48:05 +03:00
|
|
|
], self::invokePrivate($this->client, 'buildRequestOptions', [[]]));
|
2017-01-02 16:51:16 +03:00
|
|
|
}
|
2015-03-16 13:28:23 +03:00
|
|
|
}
|