2021-08-23 09:47:41 -04:00
|
|
|
<?php
|
2022-01-06 18:30:59 -05:00
|
|
|
/**
|
2023-01-01 09:36:24 -05:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2022-01-06 18:30:59 -05:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
2021-08-23 09:47:41 -04:00
|
|
|
|
|
|
|
namespace Friendica\Test\src\Util;
|
|
|
|
|
2021-12-10 15:40:07 -05:00
|
|
|
use DMS\PHPUnitExtensions\ArraySubset\ArraySubsetAsserts;
|
2021-08-24 18:13:50 -04:00
|
|
|
use Friendica\Test\DiceHttpMockHandlerTrait;
|
2021-08-23 09:47:41 -04:00
|
|
|
use Friendica\Test\MockedTest;
|
2021-08-24 07:19:17 -04:00
|
|
|
use Friendica\Util\Images;
|
|
|
|
use GuzzleHttp\Handler\MockHandler;
|
|
|
|
use GuzzleHttp\Psr7\Response;
|
2021-08-23 09:47:41 -04:00
|
|
|
|
|
|
|
class ImagesTest extends MockedTest
|
|
|
|
{
|
2021-08-24 18:13:50 -04:00
|
|
|
use DiceHttpMockHandlerTrait;
|
2021-12-10 15:40:07 -05:00
|
|
|
use ArraySubsetAsserts;
|
2021-08-24 07:19:17 -04:00
|
|
|
|
2021-08-24 18:13:50 -04:00
|
|
|
protected function setUp(): void
|
2021-08-24 07:19:17 -04:00
|
|
|
{
|
2021-08-24 18:13:50 -04:00
|
|
|
parent::setUp();
|
2021-08-24 07:19:17 -04:00
|
|
|
|
2021-08-24 18:13:50 -04:00
|
|
|
$this->setupHttpMockHandler();
|
2021-08-24 07:19:17 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function dataImages()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'image' => [
|
|
|
|
'url' => 'https://pbs.twimg.com/profile_images/2365515285/9re7kx4xmc0eu9ppmado.png',
|
|
|
|
'headers' => [
|
|
|
|
'Server' => 'tsa_b',
|
|
|
|
'Content-Type' => 'image/png',
|
|
|
|
'Cache-Control' => 'max-age=604800,must-revalidate',
|
|
|
|
'Last-Modified' => 'Thu,04Nov201001:42:54GMT',
|
|
|
|
'Content-Length' => '24875',
|
|
|
|
'Access-Control-Allow-Origin' => '*',
|
|
|
|
'Access-Control-Expose-Headers' => 'Content-Length',
|
|
|
|
'Date' => 'Mon,23Aug202112:39:00GMT',
|
|
|
|
'Connection' => 'keep-alive',
|
|
|
|
],
|
|
|
|
'data' => file_get_contents(__DIR__ . '/../../datasets/curl/image.content'),
|
|
|
|
'assertion' => [
|
|
|
|
'0' => '400',
|
|
|
|
'1' => '400',
|
|
|
|
'2' => '3',
|
|
|
|
'3' => 'width="400" height="400"',
|
|
|
|
'bits' => '8',
|
|
|
|
'mime' => 'image/png',
|
|
|
|
'size' => '24875',
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'emptyUrl' => [
|
|
|
|
'url' => '',
|
|
|
|
'headers' => [],
|
|
|
|
'data' => '',
|
|
|
|
'assertion' => [],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-08-24 18:13:50 -04:00
|
|
|
* Test the Images::getInfoFromURL() method (only remote images, not local/relative!)
|
2021-08-24 07:19:17 -04:00
|
|
|
*
|
|
|
|
* @dataProvider dataImages
|
|
|
|
*/
|
2021-08-24 18:13:50 -04:00
|
|
|
public function testGetInfoFromRemotURL(string $url, array $headers, string $data, array $assertion)
|
2021-08-23 09:47:41 -04:00
|
|
|
{
|
2021-08-24 18:13:50 -04:00
|
|
|
$this->httpRequestHandler->setHandler(new MockHandler([
|
2021-08-24 07:19:17 -04:00
|
|
|
new Response(200, $headers, $data),
|
|
|
|
]));
|
2021-08-23 09:47:41 -04:00
|
|
|
|
2021-08-24 07:19:17 -04:00
|
|
|
self::assertArraySubset($assertion, Images::getInfoFromURL($url));
|
2021-08-23 09:47:41 -04:00
|
|
|
}
|
|
|
|
}
|