endtoend-test-psl/tests/Psl/Env/RemoveVarTest.php

53 lines
1.3 KiB
PHP
Raw Normal View History

2020-08-18 05:51:44 +02:00
<?php
declare(strict_types=1);
namespace Psl\Tests\Env;
use PHPUnit\Framework\TestCase;
use Psl\Env;
use Psl\Exception\InvariantViolationException;
final class RemoveVarTest extends TestCase
2020-08-18 05:51:44 +02:00
{
/**
* @backupGlobals
*/
public function testRemoveVar(): void
{
static::assertNull(Env\get_var('FOO'));
2020-08-18 05:51:44 +02:00
Env\set_var('FOO', 'BAR');
static::assertSame('BAR', Env\get_var('FOO'));
2020-08-18 05:51:44 +02:00
Env\remove_var('FOO');
static::assertNull(Env\get_var('FOO'));
2020-08-18 05:51:44 +02:00
}
public function testRemoveVarThrowsIfTheKeyIsInvalid(): void
{
$this->expectException(InvariantViolationException::class);
$this->expectExceptionMessage('Invalid environment variable key provided.');
Env\remove_var('a=b');
}
public function testRemoveVarThrowsIfTheKeyIsEmpty(): void
{
$this->expectException(InvariantViolationException::class);
$this->expectExceptionMessage('Invalid environment variable key provided.');
Env\remove_var('');
}
public function testRemoveVarThrowsIfTheKeyContainsNUL(): void
{
$this->expectException(InvariantViolationException::class);
$this->expectExceptionMessage('Invalid environment variable key provided.');
Env\remove_var("\0");
}
}