fixturesFolder = dirname(__DIR__).'/fixtures/env'; } /** * @expectedException \Dotenv\Exception\InvalidPathException * @expectedExceptionMessage Unable to read any of the environment file(s) at */ public function testDotenvThrowsExceptionIfUnableToLoadFile() { $dotenv = Dotenv::create(__DIR__); $dotenv->load(); } /** * @expectedException \Dotenv\Exception\InvalidPathException * @expectedExceptionMessage Unable to read any of the environment file(s) at */ public function testDotenvThrowsExceptionIfUnableToLoadFiles() { $dotenv = Dotenv::create([__DIR__, __DIR__.'/foo/bar']); $dotenv->load(); } public function testDotenvTriesPathsToLoad() { $dotenv = Dotenv::create([__DIR__, $this->fixturesFolder]); $this->assertCount(4, $dotenv->load()); } public function testDotenvSkipsLoadingIfFileIsMissing() { $dotenv = Dotenv::create(__DIR__); $this->assertSame([], $dotenv->safeLoad()); } public function testDotenvLoadsEnvironmentVars() { $dotenv = Dotenv::create($this->fixturesFolder); $this->assertSame( ['FOO' => 'bar', 'BAR' => 'baz', 'SPACED' => 'with spaces', 'NULL' => ''], $dotenv->load() ); $this->assertSame('bar', getenv('FOO')); $this->assertSame('baz', getenv('BAR')); $this->assertSame('with spaces', getenv('SPACED')); $this->assertEmpty(getenv('NULL')); } public function testCommentedDotenvLoadsEnvironmentVars() { $dotenv = Dotenv::create($this->fixturesFolder, 'commented.env'); $dotenv->load(); $this->assertSame('bar', getenv('CFOO')); $this->assertFalse(getenv('CBAR')); $this->assertFalse(getenv('CZOO')); $this->assertSame('with spaces', getenv('CSPACED')); $this->assertSame('a value with a # character', getenv('CQUOTES')); $this->assertSame('a value with a # character & a quote " character inside quotes', getenv('CQUOTESWITHQUOTE')); $this->assertEmpty(getenv('CNULL')); $this->assertEmpty(getenv('EMPTY')); $this->assertEmpty(getenv('EMPTY2')); $this->assertSame('foo', getenv('FOOO')); } public function testQuotedDotenvLoadsEnvironmentVars() { $dotenv = Dotenv::create($this->fixturesFolder, 'quoted.env'); $dotenv->load(); $this->assertSame('bar', getenv('QFOO')); $this->assertSame('baz', getenv('QBAR')); $this->assertSame('with spaces', getenv('QSPACED')); $this->assertEmpty(getenv('QNULL')); $this->assertSame('pgsql:host=localhost;dbname=test', getenv('QEQUALS')); $this->assertSame('test some escaped characters like a quote (") or maybe a backslash (\\)', getenv('QESCAPED')); $this->assertSame('iiiiviiiixiiiiviiii\\n', getenv('QSLASH')); $this->assertSame('test some escaped characters like a quote (\') or maybe a backslash (\\)', getenv('SQESCAPED')); $this->assertSame('iiiiviiiixiiiiviiii\\n', getenv('SQSLASH')); } public function testLargeDotenvLoadsEnvironmentVars() { $dotenv = Dotenv::create($this->fixturesFolder, 'large.env'); $dotenv->load(); $this->assertNotEmpty(getenv('LARGE')); } public function testMultipleDotenvLoadsEnvironmentVars() { $dotenv = Dotenv::create($this->fixturesFolder, 'multiple.env'); $dotenv->load(); $this->assertSame('bar', getenv('MULTI1')); $this->assertSame('foo', getenv('MULTI2')); } public function testExportedDotenvLoadsEnvironmentVars() { $dotenv = Dotenv::create($this->fixturesFolder, 'exported.env'); $dotenv->load(); $this->assertSame('bar', getenv('EFOO')); $this->assertSame('baz', getenv('EBAR')); $this->assertSame('with spaces', getenv('ESPACED')); $this->assertEmpty(getenv('ENULL')); } public function testDotenvLoadsEnvGlobals() { $dotenv = Dotenv::create($this->fixturesFolder); $dotenv->load(); $this->assertSame('bar', $_SERVER['FOO']); $this->assertSame('baz', $_SERVER['BAR']); $this->assertSame('with spaces', $_SERVER['SPACED']); $this->assertEmpty($_SERVER['NULL']); } public function testDotenvLoadsServerGlobals() { $dotenv = Dotenv::create($this->fixturesFolder); $dotenv->load(); $this->assertSame('bar', $_ENV['FOO']); $this->assertSame('baz', $_ENV['BAR']); $this->assertSame('with spaces', $_ENV['SPACED']); $this->assertEmpty($_ENV['NULL']); } public function testDotenvNestedEnvironmentVars() { $dotenv = Dotenv::create($this->fixturesFolder, 'nested.env'); $dotenv->load(); $this->assertSame('{$NVAR1} {$NVAR2}', $_ENV['NVAR3']); // not resolved $this->assertSame('Hello World!', $_ENV['NVAR4']); $this->assertSame('$NVAR1 {NVAR2}', $_ENV['NVAR5']); // not resolved $this->assertSame('Special Value', $_ENV['N.VAR6']); // new '.' (dot) in var name $this->assertSame('Special Value', $_ENV['NVAR7']); // nested '.' (dot) variable $this->assertSame('', $_ENV['NVAR8']); $this->assertSame('', $_ENV['NVAR9']); // nested variable is empty string $this->assertSame('${NVAR888}', $_ENV['NVAR10']); // nested variable is not set } public function testDotenvNullFileArgumentUsesDefault() { $dotenv = Dotenv::create($this->fixturesFolder, null); $dotenv->load(); $this->assertSame('bar', getenv('FOO')); } /** * The fixture data has whitespace between the key and in the value string. * * Test that these keys are trimmed down. */ public function testDotenvTrimmedKeys() { $dotenv = Dotenv::create($this->fixturesFolder, 'quoted.env'); $dotenv->load(); $this->assertSame('no space', getenv('QWHITESPACE')); } public function testDotenvLoadDoesNotOverwriteEnv() { putenv('IMMUTABLE=true'); $dotenv = Dotenv::create($this->fixturesFolder, 'immutable.env'); $dotenv->load(); $this->assertSame('true', getenv('IMMUTABLE')); } public function testDotenvLoadAfterOverload() { putenv('IMMUTABLE=true'); $dotenv = Dotenv::create($this->fixturesFolder, 'immutable.env'); $dotenv->overload(); $this->assertSame('false', getenv('IMMUTABLE')); putenv('IMMUTABLE=true'); $dotenv->load(); $this->assertSame('true', getenv('IMMUTABLE')); } public function testDotenvOverloadAfterLoad() { putenv('IMMUTABLE=true'); $dotenv = Dotenv::create($this->fixturesFolder, 'immutable.env'); $dotenv->load(); $this->assertSame('true', getenv('IMMUTABLE')); putenv('IMMUTABLE=true'); $dotenv->overload(); $this->assertSame('false', getenv('IMMUTABLE')); } public function testDotenvOverloadDoesOverwriteEnv() { $dotenv = Dotenv::create($this->fixturesFolder, 'mutable.env'); $dotenv->overload(); $this->assertSame('true', getenv('MUTABLE')); } public function testDotenvAllowsSpecialCharacters() { $dotenv = Dotenv::create($this->fixturesFolder, 'specialchars.env'); $dotenv->load(); $this->assertSame('$a6^C7k%zs+e^.jvjXk', getenv('SPVAR1')); $this->assertSame('?BUty3koaV3%GA*hMAwH}B', getenv('SPVAR2')); $this->assertSame('jdgEB4{QgEC]HL))&GcXxokB+wqoN+j>xkV7K?m$r', getenv('SPVAR3')); $this->assertSame('22222:22#2^{', getenv('SPVAR4')); $this->assertSame('test some escaped characters like a quote " or maybe a backslash \\', getenv('SPVAR5')); $this->assertSame('secret!@', getenv('SPVAR6')); $this->assertSame('secret!@#', getenv('SPVAR7')); $this->assertSame('secret!@#', getenv('SPVAR8')); } public function testMutlilineLoading() { $dotenv = Dotenv::create($this->fixturesFolder, 'multiline.env'); $dotenv->load(); $this->assertSame("test\n test\"test\"\n test", getenv('TEST')); $this->assertSame("test\ntest", getenv('TEST_ND')); $this->assertSame("test\ntest", getenv('TEST_NS')); $this->assertSame('https://vision.googleapis.com/v1/images:annotate?key=', getenv('TEST_EQD')); $this->assertSame('https://vision.googleapis.com/v1/images:annotate?key=', getenv('TEST_EQS')); } public function testGetEnvironmentVariablesList() { $dotenv = Dotenv::create($this->fixturesFolder); $dotenv->load(); $this->assertSame(['FOO', 'BAR', 'SPACED', 'NULL'], $dotenv->getEnvironmentVariableNames()); } }