meraproject/vendor/yoomoney/yookassa-sdk-php/tests/Helpers/RawHeadersParserTest.php
keboss-m 5c21d25d45 Initial commit: Merakomis portal, Docker stack and user-reader API.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-24 11:04:05 +03:00

94 lines
3.2 KiB
PHP

<?php
namespace Tests\YooKassa\Helpers;
use PHPUnit\Framework\TestCase;
use YooKassa\Helpers\RawHeadersParser;
class RawHeadersParserTest extends TestCase
{
/**
* @dataProvider headersDataProvider
* @param $rawHeaders
* @param $expected
*/
public function testParse($rawHeaders, $expected)
{
$this->assertEquals($expected, RawHeadersParser::parse($rawHeaders));
}
public function headersDataProvider()
{
return array(
array(
'Server: nginx
Date: Thu, 03 Dec 2020 16:04:35 GMT
Content-Type: text/html
Content-Length: 178
Connection: keep-alive
Location: https://yoomoney.ru/',
array(
'Server' => 'nginx',
'Date' => 'Thu, 03 Dec 2020 16:04:35 GMT',
'Content-Type' => 'text/html',
'Content-Length' => '178',
'Connection' => 'keep-alive',
'Location' => 'https://yoomoney.ru/'
),
),
array(
"HTTP/1.1 200 Ok\r\n" .
"Server: nginx\r\n" .
"Date: Thu, 03 Dec 2020 16:04:35 GMT\r\n" .
"Content-Type: text/html\r\n" .
"Content-Length: 178\r\n" .
"Array-Header: value1\r\n" .
"Connection: keep-alive\r\n" .
"Array-Header: value2\r\n" .
"Location: https://yoomoney.ru/\r\n" .
"\r\n" .
"Content-Length: 132",
array(
0 => 'HTTP/1.1 200 Ok',
'Server' => 'nginx',
'Date' => 'Thu, 03 Dec 2020 16:04:35 GMT',
'Content-Type' => 'text/html',
'Content-Length' => '178',
'Array-Header' => array(
'value1', 'value2'
),
'Connection' => 'keep-alive',
'Location' => 'https://yoomoney.ru/'
),
),
array(
"HTTP/1.1 200 Ok\r\n" .
"Server: nginx\r\n" .
"\tversion 1.3.4\r\n" .
"Date: Thu, 03 Dec 2020 16:04:35 GMT\r\n" .
"Content-Type: text/html\r\n" .
"Content-Length: 178\r\n" .
"Array-Header: value1\r\n" .
"Connection: keep-alive\r\n" .
"Array-Header: value2\r\n" .
"Location: https://yoomoney.ru/\r\n" .
"Array-Header: value3\r\n" .
"\r\n" .
"Content-Length: 132",
array(
0 => 'HTTP/1.1 200 Ok',
'Server' => "nginx\r\n\tversion 1.3.4",
'Date' => 'Thu, 03 Dec 2020 16:04:35 GMT',
'Content-Type' => 'text/html',
'Content-Length' => '178',
'Array-Header' => array(
'value1', 'value2', 'value3',
),
'Connection' => 'keep-alive',
'Location' => 'https://yoomoney.ru/'
),
),
);
}
}