mirror of
https://github.com/php/php-src.git
synced 2025-08-18 23:18:56 +02:00

Current run-tests.php script produces the `*.php` files from the *.phpt. So all *.php files in tests folders are ignored by Git. To avoid confusion and to for bettere consistency this patch renames two remaining tests/*/*.php files to *.inc and *.phar as current practice in *.phpt files. - The `ext/curl/tests/resonder/get.php` to .inc extension - The `ext/phar/tests/files/pear2coverage.phar.php` to .phar extension
32 lines
774 B
PHP
32 lines
774 B
PHP
--TEST--
|
|
Test curl_getinfo() function with CURLINFO_* from curl >= 7.52.0
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("curl")) print "skip";
|
|
$curl_version = curl_version();
|
|
if ($curl_version['version_number'] < 0x073400) {
|
|
exit("skip: test works only with curl >= 7.52.0");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
include 'server.inc';
|
|
|
|
$ch = curl_init();
|
|
$host = curl_cli_server_start();
|
|
|
|
$url = "{$host}/get.inc?test=";
|
|
curl_setopt($ch, CURLOPT_URL, $url);
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
|
curl_exec($ch);
|
|
var_dump(CURLPROTO_HTTP === curl_getinfo($ch, CURLINFO_PROTOCOL));
|
|
var_dump(0 === curl_getinfo($ch, CURLINFO_PROXY_SSL_VERIFYRESULT));
|
|
var_dump(curl_getinfo($ch, CURLINFO_SCHEME));
|
|
curl_close($ch);
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
bool(true)
|
|
bool(true)
|
|
string(4) "HTTP"
|
|
===DONE===
|