|
5 | 5 | namespace Sentry\SentryBundle\Tests\DependencyInjection;
|
6 | 6 |
|
7 | 7 | use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
|
| 8 | +use Jean85\PrettyVersions; |
8 | 9 | use PHPUnit\Framework\TestCase;
|
9 | 10 | use Psr\Log\NullLogger;
|
10 | 11 | use Sentry\ClientInterface;
|
|
30 | 31 | use Symfony\Bundle\TwigBundle\TwigBundle;
|
31 | 32 | use Symfony\Component\Console\ConsoleEvents;
|
32 | 33 | use Symfony\Component\Debug\Exception\FatalErrorException;
|
| 34 | +use Symfony\Component\DependencyInjection\Compiler\ResolveParameterPlaceHoldersPass; |
| 35 | +use Symfony\Component\DependencyInjection\Compiler\ResolveTaggedIteratorArgumentPass; |
| 36 | +use Symfony\Component\DependencyInjection\Compiler\ValidateEnvPlaceholdersPass; |
33 | 37 | use Symfony\Component\DependencyInjection\ContainerBuilder;
|
34 | 38 | use Symfony\Component\DependencyInjection\Definition;
|
35 | 39 | use Symfony\Component\DependencyInjection\ParameterBag\EnvPlaceholderParameterBag;
|
@@ -448,20 +452,60 @@ public function testLoggerOptionFallbackToNullLoggerIfNotSet(): void
|
448 | 452 | $this->assertDefinitionMethodCallAt($methodCalls[5], 'setLogger', [new Reference(NullLogger::class, ContainerBuilder::IGNORE_ON_INVALID_REFERENCE)]);
|
449 | 453 | }
|
450 | 454 |
|
| 455 | + /** |
| 456 | + * @dataProvider releaseOptionDataProvider |
| 457 | + */ |
| 458 | + public function testReleaseOption(string $fixtureFile, string $expectedRelease): void |
| 459 | + { |
| 460 | + $container = $this->createContainerFromFixture($fixtureFile); |
| 461 | + $optionsDefinition = $container->getDefinition('sentry.client.options'); |
| 462 | + |
| 463 | + $this->assertSame(Options::class, $optionsDefinition->getClass()); |
| 464 | + $this->assertSame($expectedRelease, $container->resolveEnvPlaceholders($optionsDefinition->getArgument(0)['release'], true)); |
| 465 | + } |
| 466 | + |
| 467 | + public function releaseOptionDataProvider(): \Generator |
| 468 | + { |
| 469 | + yield 'If the release option is set to a concrete value, then no fallback occurs' => [ |
| 470 | + 'release_option_from_config', |
| 471 | + '1.0.x-dev', |
| 472 | + ]; |
| 473 | + |
| 474 | + yield 'If the release option is set and references an environment variable, then no fallback occurs' => [ |
| 475 | + 'release_option_from_env_var', |
| 476 | + '1.0.x-dev', |
| 477 | + ]; |
| 478 | + |
| 479 | + yield 'If the release option is unset and the SENTRY_RELEASE environment variable is set, then the latter is used as fallback' => [ |
| 480 | + 'release_option_fallback_to_env_var', |
| 481 | + '1.0.x-dev', |
| 482 | + ]; |
| 483 | + |
| 484 | + yield 'If both the release option and the SENTRY_RELEASE environment variable are unset, then the root package version is used as fallback' => [ |
| 485 | + 'release_option_fallback_to_composer_version', |
| 486 | + PrettyVersions::getRootPackageVersion()->getPrettyVersion(), |
| 487 | + ]; |
| 488 | + } |
| 489 | + |
451 | 490 | private function createContainerFromFixture(string $fixtureFile): ContainerBuilder
|
452 | 491 | {
|
453 | 492 | $container = new ContainerBuilder(new EnvPlaceholderParameterBag([
|
454 | 493 | 'kernel.cache_dir' => __DIR__,
|
455 | 494 | 'kernel.build_dir' => __DIR__,
|
456 | 495 | 'kernel.project_dir' => __DIR__,
|
| 496 | + 'kernel.environment' => 'dev', |
457 | 497 | 'doctrine.default_connection' => 'default',
|
458 | 498 | 'doctrine.connections' => ['default'],
|
459 | 499 | ]));
|
460 | 500 |
|
461 | 501 | $container->registerExtension(new SentryExtension());
|
462 |
| - $container->getCompilerPassConfig()->setOptimizationPasses([]); |
463 | 502 | $container->getCompilerPassConfig()->setRemovingPasses([]);
|
464 | 503 | $container->getCompilerPassConfig()->setAfterRemovingPasses([]);
|
| 504 | + $container->getCompilerPassConfig()->setOptimizationPasses([ |
| 505 | + new ValidateEnvPlaceholdersPass(), |
| 506 | + new ResolveParameterPlaceHoldersPass(), |
| 507 | + new ResolveTaggedIteratorArgumentPass(), |
| 508 | + ]); |
465 | 509 |
|
466 | 510 | $this->loadFixture($container, $fixtureFile);
|
467 | 511 |
|
|
0 commit comments