2018-10-11 15:19:38 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-10-11 15:19:38 -04:00
|
|
|
|
|
|
|
namespace Friendica\Test\src\Network;
|
|
|
|
|
2019-07-26 09:54:14 -04:00
|
|
|
use Dice\Dice;
|
2019-12-15 17:28:01 -05:00
|
|
|
use Friendica\DI;
|
2018-10-11 15:19:38 -04:00
|
|
|
use Friendica\Network\CurlResult;
|
2019-07-26 09:54:14 -04:00
|
|
|
use Mockery\MockInterface;
|
2018-10-11 15:19:38 -04:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2019-07-26 09:54:14 -04:00
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
use Psr\Log\NullLogger;
|
2018-10-11 15:19:38 -04:00
|
|
|
|
|
|
|
class CurlResultTest extends TestCase
|
|
|
|
{
|
2019-03-03 09:20:26 -05:00
|
|
|
protected function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
2019-07-26 09:54:14 -04:00
|
|
|
/** @var Dice|MockInterface $dice */
|
|
|
|
$dice = \Mockery::mock(Dice::class)->makePartial();
|
|
|
|
$dice = $dice->addRules(include __DIR__ . '/../../../static/dependencies.config.php');
|
|
|
|
|
|
|
|
$logger = new NullLogger();
|
|
|
|
$dice->shouldReceive('create')
|
2020-01-18 07:48:29 -05:00
|
|
|
->with(LoggerInterface::class)
|
2019-07-26 09:54:14 -04:00
|
|
|
->andReturn($logger);
|
|
|
|
|
2019-12-15 17:28:01 -05:00
|
|
|
DI::init($dice);
|
2019-03-03 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2018-10-11 16:18:27 -04:00
|
|
|
/**
|
|
|
|
* @small
|
|
|
|
*/
|
2018-10-11 15:19:38 -04:00
|
|
|
public function testNormal()
|
|
|
|
{
|
|
|
|
$header = file_get_contents(__DIR__ . '/../../datasets/curl/about.head');
|
|
|
|
$body = file_get_contents(__DIR__ . '/../../datasets/curl/about.body');
|
|
|
|
|
|
|
|
|
2018-10-11 16:18:27 -04:00
|
|
|
$curlResult = new CurlResult('https://test.local', $header . $body, [
|
|
|
|
'http_code' => 200,
|
|
|
|
'content_type' => 'text/html; charset=utf-8',
|
|
|
|
'url' => 'https://test.local'
|
|
|
|
]);
|
2018-10-11 15:19:38 -04:00
|
|
|
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertTrue($curlResult->isSuccess());
|
|
|
|
self::assertFalse($curlResult->isTimeout());
|
|
|
|
self::assertFalse($curlResult->isRedirectUrl());
|
|
|
|
self::assertSame($header, $curlResult->getHeader());
|
|
|
|
self::assertSame($body, $curlResult->getBody());
|
|
|
|
self::assertSame('text/html; charset=utf-8', $curlResult->getContentType());
|
|
|
|
self::assertSame('https://test.local', $curlResult->getUrl());
|
|
|
|
self::assertSame('https://test.local', $curlResult->getRedirectUrl());
|
2018-10-11 15:19:38 -04:00
|
|
|
}
|
2018-10-11 16:18:27 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @small
|
2019-01-30 14:26:17 -05:00
|
|
|
* @runInSeparateProcess
|
|
|
|
* @preserveGlobalState disabled
|
2018-10-11 16:18:27 -04:00
|
|
|
*/
|
|
|
|
public function testRedirect()
|
|
|
|
{
|
|
|
|
$header = file_get_contents(__DIR__ . '/../../datasets/curl/about.head');
|
|
|
|
$body = file_get_contents(__DIR__ . '/../../datasets/curl/about.body');
|
|
|
|
|
|
|
|
|
|
|
|
$curlResult = new CurlResult('https://test.local/test/it', $header . $body, [
|
|
|
|
'http_code' => 301,
|
|
|
|
'content_type' => 'text/html; charset=utf-8',
|
|
|
|
'url' => 'https://test.local/test/it',
|
|
|
|
'redirect_url' => 'https://test.other'
|
|
|
|
]);
|
|
|
|
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertTrue($curlResult->isSuccess());
|
|
|
|
self::assertFalse($curlResult->isTimeout());
|
|
|
|
self::assertTrue($curlResult->isRedirectUrl());
|
|
|
|
self::assertSame($header, $curlResult->getHeader());
|
|
|
|
self::assertSame($body, $curlResult->getBody());
|
|
|
|
self::assertSame('text/html; charset=utf-8', $curlResult->getContentType());
|
|
|
|
self::assertSame('https://test.local/test/it', $curlResult->getUrl());
|
|
|
|
self::assertSame('https://test.other/test/it', $curlResult->getRedirectUrl());
|
2018-10-11 16:18:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @small
|
|
|
|
*/
|
|
|
|
public function testTimeout()
|
|
|
|
{
|
|
|
|
$header = file_get_contents(__DIR__ . '/../../datasets/curl/about.head');
|
|
|
|
$body = file_get_contents(__DIR__ . '/../../datasets/curl/about.body');
|
|
|
|
|
|
|
|
|
|
|
|
$curlResult = new CurlResult('https://test.local/test/it', $header . $body, [
|
|
|
|
'http_code' => 500,
|
|
|
|
'content_type' => 'text/html; charset=utf-8',
|
|
|
|
'url' => 'https://test.local/test/it',
|
|
|
|
'redirect_url' => 'https://test.other'
|
|
|
|
], CURLE_OPERATION_TIMEDOUT, 'Tested error');
|
|
|
|
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertFalse($curlResult->isSuccess());
|
|
|
|
self::assertTrue($curlResult->isTimeout());
|
|
|
|
self::assertFalse($curlResult->isRedirectUrl());
|
|
|
|
self::assertSame($header, $curlResult->getHeader());
|
|
|
|
self::assertSame($body, $curlResult->getBody());
|
|
|
|
self::assertSame('text/html; charset=utf-8', $curlResult->getContentType());
|
|
|
|
self::assertSame('https://test.local/test/it', $curlResult->getRedirectUrl());
|
|
|
|
self::assertSame('Tested error', $curlResult->getError());
|
2018-10-11 16:18:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @small
|
2019-01-30 14:26:17 -05:00
|
|
|
* @runInSeparateProcess
|
|
|
|
* @preserveGlobalState disabled
|
2018-10-11 16:18:27 -04:00
|
|
|
*/
|
|
|
|
public function testRedirectHeader()
|
|
|
|
{
|
|
|
|
$header = file_get_contents(__DIR__ . '/../../datasets/curl/about.redirect');
|
|
|
|
$body = file_get_contents(__DIR__ . '/../../datasets/curl/about.body');
|
|
|
|
|
|
|
|
|
|
|
|
$curlResult = new CurlResult('https://test.local/test/it?key=value', $header . $body, [
|
|
|
|
'http_code' => 301,
|
|
|
|
'content_type' => 'text/html; charset=utf-8',
|
|
|
|
'url' => 'https://test.local/test/it?key=value',
|
|
|
|
]);
|
|
|
|
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertTrue($curlResult->isSuccess());
|
|
|
|
self::assertFalse($curlResult->isTimeout());
|
|
|
|
self::assertTrue($curlResult->isRedirectUrl());
|
|
|
|
self::assertSame($header, $curlResult->getHeader());
|
|
|
|
self::assertSame($body, $curlResult->getBody());
|
|
|
|
self::assertSame('text/html; charset=utf-8', $curlResult->getContentType());
|
|
|
|
self::assertSame('https://test.local/test/it?key=value', $curlResult->getUrl());
|
|
|
|
self::assertSame('https://test.other/some/?key=value', $curlResult->getRedirectUrl());
|
2018-10-11 16:18:27 -04:00
|
|
|
}
|
2019-10-02 05:26:52 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @small
|
|
|
|
*/
|
|
|
|
public function testInHeader()
|
|
|
|
{
|
|
|
|
$header = file_get_contents(__DIR__ . '/../../datasets/curl/about.head');
|
|
|
|
$body = file_get_contents(__DIR__ . '/../../datasets/curl/about.body');
|
|
|
|
|
|
|
|
$curlResult = new CurlResult('https://test.local', $header . $body, [
|
|
|
|
'http_code' => 200,
|
|
|
|
'content_type' => 'text/html; charset=utf-8',
|
|
|
|
'url' => 'https://test.local'
|
|
|
|
]);
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertTrue($curlResult->inHeader('vary'));
|
|
|
|
self::assertFalse($curlResult->inHeader('wrongHeader'));
|
2019-10-02 05:26:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @small
|
|
|
|
*/
|
|
|
|
public function testGetHeaderArray()
|
|
|
|
{
|
|
|
|
$header = file_get_contents(__DIR__ . '/../../datasets/curl/about.head');
|
|
|
|
$body = file_get_contents(__DIR__ . '/../../datasets/curl/about.body');
|
|
|
|
|
|
|
|
$curlResult = new CurlResult('https://test.local', $header . $body, [
|
|
|
|
'http_code' => 200,
|
|
|
|
'content_type' => 'text/html; charset=utf-8',
|
|
|
|
'url' => 'https://test.local'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$headers = $curlResult->getHeaderArray();
|
|
|
|
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertNotEmpty($headers);
|
|
|
|
self::assertArrayHasKey('vary', $headers);
|
2019-10-02 05:26:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @small
|
|
|
|
*/
|
|
|
|
public function testGetHeaderWithParam()
|
|
|
|
{
|
|
|
|
$header = file_get_contents(__DIR__ . '/../../datasets/curl/about.head');
|
|
|
|
$body = file_get_contents(__DIR__ . '/../../datasets/curl/about.body');
|
|
|
|
|
|
|
|
$curlResult = new CurlResult('https://test.local', $header . $body, [
|
|
|
|
'http_code' => 200,
|
|
|
|
'content_type' => 'text/html; charset=utf-8',
|
|
|
|
'url' => 'https://test.local'
|
|
|
|
]);
|
|
|
|
|
2020-10-17 08:19:57 -04:00
|
|
|
self::assertNotEmpty($curlResult->getHeader());
|
|
|
|
self::assertEmpty($curlResult->getHeader('wrongHeader'));
|
2019-10-02 05:26:52 -04:00
|
|
|
}
|
2018-10-11 16:18:27 -04:00
|
|
|
}
|