This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'hotfix/364' into release-1.8
- Loading branch information
Showing
4 changed files
with
103 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
<?php | ||
/** | ||
* @see https://github.com/zendframework/zend-diactoros for the canonical source repository | ||
* @copyright Copyright (c) 2019 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license https://github.com/zendframework/zend-diactoros/blob/master/LICENSE.md New BSD License | ||
*/ | ||
|
||
namespace ZendTest\Diactoros\functions; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
use function Zend\Diactoros\marshalUriFromSapi; | ||
|
||
class MarshalUriFromSapiTest extends TestCase | ||
{ | ||
/** | ||
* @param string $httpsValue | ||
* @param string $expectedScheme | ||
* @dataProvider returnsUrlWithCorrectHttpSchemeFromArraysProvider | ||
*/ | ||
public function testReturnsUrlWithCorrectHttpSchemeFromArrays($httpsValue, $expectedScheme) | ||
{ | ||
$server = [ | ||
'HTTPS' => $httpsValue, | ||
'SERVER_NAME' => 'localhost', | ||
'SERVER_PORT' => '80', | ||
'SERVER_ADDR' => '172.22.0.4', | ||
'REMOTE_PORT' => '36852', | ||
'REMOTE_ADDR' => '172.22.0.1', | ||
'SERVER_SOFTWARE' => 'nginx/1.11.8', | ||
'GATEWAY_INTERFACE' => 'CGI/1.1', | ||
'SERVER_PROTOCOL' => 'HTTP/1.1', | ||
'DOCUMENT_ROOT' => '/var/www/public', | ||
'DOCUMENT_URI' => '/index.php', | ||
'REQUEST_URI' => '/api/messagebox-schema', | ||
'PATH_TRANSLATED' => '/var/www/public', | ||
'PATH_INFO' => '', | ||
'SCRIPT_NAME' => '/index.php', | ||
'CONTENT_LENGTH' => '', | ||
'CONTENT_TYPE' => '', | ||
'REQUEST_METHOD' => 'GET', | ||
'QUERY_STRING' => '', | ||
'SCRIPT_FILENAME' => '/var/www/public/index.php', | ||
'FCGI_ROLE' => 'RESPONDER', | ||
'PHP_SELF' => '/index.php', | ||
]; | ||
|
||
$headers = [ | ||
'HTTP_COOKIE' => '', | ||
'HTTP_ACCEPT_LANGUAGE' => 'de-DE,de;q=0.9,en-US;q=0.8,en;q=0.7', | ||
'HTTP_ACCEPT_ENCODING' => 'gzip, deflate, br', | ||
'HTTP_REFERER' => 'http://localhost:8080/index.html', | ||
'HTTP_USER_AGENT' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko)', | ||
'HTTP_ACCEPT' => 'application/json,*/*', | ||
'HTTP_CONNECTION' => 'keep-alive', | ||
'HTTP_HOST' => 'localhost:8080', | ||
]; | ||
|
||
$url = marshalUriFromSapi($server, $headers); | ||
|
||
self::assertSame($expectedScheme, $url->getScheme()); | ||
} | ||
|
||
/** | ||
* @return array | ||
*/ | ||
public function returnsUrlWithCorrectHttpSchemeFromArraysProvider() | ||
{ | ||
return [ | ||
'on-lowercase' => ['on', 'https'], | ||
'on-uppercase' => ['ON', 'https'], | ||
'off-lowercase' => ['off', 'http'], | ||
'off-mixed-case' => ['oFf', 'http'], | ||
'neither-on-nor-off' => ['foo', 'http'], | ||
'empty' => ['', 'http'], | ||
]; | ||
} | ||
} |