Skip to content

Commit

Permalink
[DI] Unknown env prefix not regornized as such
Browse files Browse the repository at this point in the history
  • Loading branch information
ro0NL authored and nicolas-grekas committed Feb 4, 2020
1 parent a59ce75 commit 550819a
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/Symfony/Component/DependencyInjection/EnvVarProcessor.php
Expand Up @@ -126,9 +126,7 @@ public function getEnv($prefix, $name, \Closure $getEnv)
}

if (false !== $i || 'string' !== $prefix) {
if (null === $env = $getEnv($name)) {
return null;
}
$env = $getEnv($name);
} elseif (isset($_ENV[$name])) {
$env = $_ENV[$name];
} elseif (isset($_SERVER[$name]) && 0 !== strpos($name, 'HTTP_')) {
Expand Down Expand Up @@ -173,10 +171,16 @@ public function getEnv($prefix, $name, \Closure $getEnv)
throw new EnvNotFoundException(sprintf('Environment variable not found: "%s".', $name));
}

if (null === $env = $this->container->getParameter("env($name)")) {
return null;
}
$env = $this->container->getParameter("env($name)");
}
}

if (null === $env) {
if (!isset($this->getProvidedTypes()[$prefix])) {
throw new RuntimeException(sprintf('Unsupported env var prefix "%s".', $prefix));
}

return null;
}

if (!is_scalar($env)) {
Expand Down
Expand Up @@ -9,6 +9,7 @@
use Symfony\Component\DependencyInjection\EnvVarLoaderInterface;
use Symfony\Component\DependencyInjection\EnvVarProcessor;
use Symfony\Component\DependencyInjection\Exception\ParameterCircularReferenceException;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;

class EnvVarProcessorTest extends TestCase
{
Expand Down Expand Up @@ -595,4 +596,17 @@ public function loadEnvVars(): array

$this->assertSame(2, $index);
}

public function testGetEnvInvalidPrefixWithDefault()
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Unsupported env var prefix');
$processor = new EnvVarProcessor(new Container());

$processor->getEnv('unknown', 'default::FAKE', function ($name) {
$this->assertSame('default::FAKE', $name);

return null;
});
}
}

0 comments on commit 550819a

Please sign in to comment.