1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
<?php
namespace Composer\CaBundle;
use Psr\Log\LoggerInterface;
use Symfony\Component\Process\PhpProcess;
use PHPUnit\Framework\TestCase;
class CaBundleTest extends TestCase
{
public function testCaPath(): void
{
$caBundle = new CaBundle();
$this->resetEnv();
$caPath = $caBundle::getSystemCaRootBundlePath(null);
$this->assertFileExists($caPath);
}
public function testCaPathNotNull(): void
{
$caBundle = new CaBundle();
$this->resetEnv();
$caPathNoNull = $caBundle::getSystemCaRootBundlePath(null);
$this->assertFileExists($caPathNoNull);
}
public function testCertDir(): void
{
$caBundle = new CaBundle();
$caBundle::reset();
$certDir = 'SSL_CERT_DIR=';
$certPath = __DIR__.'/../res';
$this->resetEnv();
$this->setEnv($certDir.$certPath);
$sslCertDir = $caBundle::getSystemCaRootBundlePath(null);
$this->assertFileExists($sslCertDir);
}
public function testCertFile(): void
{
$caBundle = new CaBundle();
$caBundle::reset();
$certFile = 'SSL_CERT_FILE=';
$certFilePath = __DIR__.'/../res/cacert.pem';
$this->resetEnv();
$this->setEnv($certFile.$certFilePath);
$sslCertFile = $caBundle::getSystemCaRootBundlePath(null);
$this->assertFileExists($sslCertFile);
}
public function testSslCaFile(): void
{
$sslCaFile = 'openssl.cafile';
$certFilePath = __DIR__.'/../res/cacert.pem';
ini_set($sslCaFile, $certFilePath);
$caBundle = new CaBundle();
$this->resetEnv();
$openCaFile = $caBundle::getSystemCaRootBundlePath(null);
$this->assertFileExists($openCaFile);
}
public function testSslCaPath(): void
{
$caBundle = new CaBundle();
$sslCaPath = 'openssl.capath';
$certPath = __DIR__.'/../res';
$this->resetEnv();
ini_set($sslCaPath, $certPath);
$openCaPath = $caBundle::getSystemCaRootBundlePath(null);
$this->assertFileExists($openCaPath);
}
public function testValidateCaFile(): void
{
$certFilePath = __DIR__.'/../res/cacert.pem';
$caBundle = new CaBundle();
$validResult = $caBundle::validateCaFile($certFilePath, null);
$this->assertTrue($validResult);
}
public function testValidateTrustedCaFile(): void
{
$certFilePath = __DIR__.'/Fixtures/ca-bundle.trust.crt';
$caBundle = new CaBundle();
$validResult = $caBundle::validateCaFile($certFilePath, null);
$this->assertTrue($validResult);
}
public function testOpenBaseDir(): void
{
$oldValue = ini_get('open_basedir') ?: '';
ini_set('open_basedir', dirname(__DIR__) . ':/usr/share');
$certFilePath = CaBundle::getSystemCaRootBundlePath();
$validResult = CaBundle::validateCaFile($certFilePath, null);
$this->assertTrue($validResult);
ini_set('open_basedir', $oldValue);
}
public function setEnv(string $envString): void
{
putenv($envString);
}
public function resetEnv(): void
{
$certDir = 'SSL_CERT_DIR=';
$certFile = 'SSL_CERT_FILE=';
$sslCaFile = 'openssl.cafile';
$sslCaPath = 'openssl.capath';
$this->setEnv($certDir);
$this->setEnv($certFile);
}
}
|