mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-26 19:03:10 +00:00
e9cf27354d
Successor to PR #3523. There are 494 single-line changes (`public function provider` to `public static function provider`) in this PR. None of these were made manually; they were all created with the following script (adapted from https://stackoverflow.com/questions/25909820/how-to-recursively-iterate-through-files-in-php): ```php $dir = 'C:/git/unit10prep2/tests/PhpSpreadsheetTests'; $it = new RecursiveDirectoryIterator($dir); // Loop through files foreach(new RecursiveIteratorIterator($it) as $file) { if ($file->getExtension() === 'php') { $contents = file_get_contents($file); $new = preg_replace('/public function (\\w*)([Pp])rovider/', 'public static function $1$2rovider', $contents); if ($new !== $contents) { echo "changing $file\n"; file_put_contents($file, $new); } } } ``` After this PR, there will be one more, with a small number of test changes, and enabling PhpUnit 10 for Php 8.1+.
97 lines
3.7 KiB
PHP
97 lines
3.7 KiB
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Web;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Settings;
|
|
use PhpOffice\PhpSpreadsheet\Spreadsheet;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psr\Http\Client\ClientInterface;
|
|
use Psr\Http\Message\RequestFactoryInterface;
|
|
use Psr\Http\Message\RequestInterface;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Psr\Http\Message\StreamInterface;
|
|
|
|
class WebServiceTest extends TestCase
|
|
{
|
|
/** @var ?Spreadsheet */
|
|
private $spreadsheet;
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
if ($this->spreadsheet !== null) {
|
|
$this->spreadsheet->disconnectWorksheets();
|
|
$this->spreadsheet = null;
|
|
}
|
|
Settings::unsetHttpClient();
|
|
}
|
|
|
|
/**
|
|
* @dataProvider providerWEBSERVICE
|
|
*/
|
|
public function testWEBSERVICE(string $expectedResult, string $url, ?array $responseData): void
|
|
{
|
|
if (!empty($responseData)) {
|
|
$body = $this->createMock(StreamInterface::class);
|
|
$body->expects(self::atMost(1))->method('getContents')->willReturn($responseData[1]);
|
|
|
|
$response = $this->createMock(ResponseInterface::class);
|
|
$response->expects(self::once())->method('getStatusCode')->willReturn($responseData[0]);
|
|
$response->expects(self::atMost(1))->method('getBody')->willReturn($body);
|
|
|
|
$client = $this->createMock(ClientInterface::class);
|
|
$client->expects(self::once())->method('sendRequest')->willReturn($response);
|
|
|
|
$request = $this->createMock(RequestInterface::class);
|
|
|
|
$requestFactory = $this->createMock(RequestFactoryInterface::class);
|
|
$requestFactory->expects(self::atMost(1))->method('createRequest')->willReturn($request);
|
|
|
|
Settings::setHttpClient($client, $requestFactory);
|
|
}
|
|
|
|
$this->spreadsheet = new Spreadsheet();
|
|
$sheet = $this->spreadsheet->getActiveSheet();
|
|
$sheet->getCell('A1')->setValue("=WEBSERVICE(\"$url\")");
|
|
$result = $sheet->getCell('A1')->getCalculatedValue();
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
|
|
public static function providerWEBSERVICE(): array
|
|
{
|
|
return require 'tests/data/Calculation/Web/WEBSERVICE.php';
|
|
}
|
|
|
|
public function testWEBSERVICEReturnErrorWhenClientThrows(): void
|
|
{
|
|
$exception = $this->createMock(\Psr\Http\Client\ClientExceptionInterface::class);
|
|
|
|
$client = $this->createMock(ClientInterface::class);
|
|
$client->expects(self::once())->method('sendRequest')->willThrowException($exception);
|
|
|
|
$request = $this->createMock(RequestInterface::class);
|
|
|
|
$requestFactory = $this->createMock(RequestFactoryInterface::class);
|
|
$requestFactory->expects(self::atMost(1))->method('createRequest')->willReturn($request);
|
|
|
|
Settings::setHttpClient($client, $requestFactory);
|
|
|
|
$url = 'https://example.com';
|
|
$this->spreadsheet = new Spreadsheet();
|
|
$sheet = $this->spreadsheet->getActiveSheet();
|
|
$sheet->getCell('A1')->setValue("=WEBSERVICE(\"$url\")");
|
|
$result = $sheet->getCell('A1')->getCalculatedValue();
|
|
self::assertEquals('#VALUE!', $result);
|
|
}
|
|
|
|
public function testWEBSERVICEThrowsIfNotClientConfigured(): void
|
|
{
|
|
$this->expectExceptionMessage('HTTP client must be configured via Settings::setHttpClient() to be able to use WEBSERVICE function.');
|
|
$url = 'https://example.com';
|
|
$this->spreadsheet = new Spreadsheet();
|
|
$sheet = $this->spreadsheet->getActiveSheet();
|
|
$sheet->getCell('A1')->setValue("=WEBSERVICE(\"$url\")");
|
|
$result = $sheet->getCell('A1')->getCalculatedValue();
|
|
self::assertEquals('#VALUE!', $result);
|
|
}
|
|
}
|