mirror of
https://github.com/php/php-src.git
synced 2025-01-14 06:54:52 +08:00
1fab01be5b
The idea is to create an easy way to provide a certificate that never expires. In order to make it cross-platform, PHP is used rather than openssl CLI app. Using openssl to generate certificates for tests that test openssl might be not the best idea but pros seem to outweight cons that this "recursice dependency" adds
71 lines
2.1 KiB
PHP
71 lines
2.1 KiB
PHP
--TEST--
|
|
Bug #65538: SSL context "cafile" supports stream wrappers
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("openssl")) die("skip openssl not loaded");
|
|
if (!function_exists("proc_open")) die("skip no proc_open");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$certFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug65538_001.pem.tmp';
|
|
$cacertFile = __DIR__ . DIRECTORY_SEPARATOR . 'bug65538_001-ca.pem.tmp';
|
|
|
|
$serverCode = <<<'CODE'
|
|
$serverUri = "ssl://127.0.0.1:64321";
|
|
$serverFlags = STREAM_SERVER_BIND | STREAM_SERVER_LISTEN;
|
|
$serverCtx = stream_context_create(['ssl' => [
|
|
'local_cert' => '%s',
|
|
]]);
|
|
|
|
$server = stream_socket_server($serverUri, $errno, $errstr, $serverFlags, $serverCtx);
|
|
phpt_notify();
|
|
|
|
$client = @stream_socket_accept($server);
|
|
if ($client) {
|
|
$in = '';
|
|
while (!preg_match('/\r?\n\r?\n/', $in)) {
|
|
$in .= fread($client, 2048);
|
|
}
|
|
$response = "HTTP/1.0 200 OK\r\n"
|
|
. "Content-Type: text/plain\r\n"
|
|
. "Content-Length: 12\r\n"
|
|
. "Connection: close\r\n"
|
|
. "\r\n"
|
|
. "Hello World!";
|
|
fwrite($client, $response);
|
|
fclose($client);
|
|
}
|
|
CODE;
|
|
$serverCode = sprintf($serverCode, $certFile);
|
|
|
|
$peerName = 'bug65538_001';
|
|
$clientCode = <<<'CODE'
|
|
$serverUri = "https://127.0.0.1:64321/";
|
|
$clientCtx = stream_context_create(['ssl' => [
|
|
'cafile' => 'file://%s',
|
|
'peer_name' => '%s',
|
|
]]);
|
|
|
|
phpt_wait();
|
|
$html = file_get_contents($serverUri, false, $clientCtx);
|
|
|
|
var_dump($html);
|
|
CODE;
|
|
$clientCode = sprintf($clientCode, $cacertFile, $peerName);
|
|
|
|
include 'CertificateGenerator.inc';
|
|
$certificateGenerator = new CertificateGenerator();
|
|
$certificateGenerator->saveCaCert($cacertFile);
|
|
$certificateGenerator->saveNewCertAsFileWithKey($peerName, $certFile);
|
|
|
|
include 'ServerClientTestCase.inc';
|
|
ServerClientTestCase::getInstance()->run($clientCode, $serverCode);
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
@unlink(__DIR__ . DIRECTORY_SEPARATOR . 'bug65538_001.pem.tmp');
|
|
@unlink(__DIR__ . DIRECTORY_SEPARATOR . 'bug65538_001-ca.pem.tmp');
|
|
?>
|
|
--EXPECT--
|
|
string(12) "Hello World!"
|