-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Doctrine DHMiddleware by default (#331)
- Loading branch information
Showing
4 changed files
with
161 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
framework: | ||
secret: '%env(APP_SECRET)%' | ||
test: true | ||
http_method_override: false | ||
router: | ||
utf8: true | ||
session: | ||
|
110 changes: 110 additions & 0 deletions
110
tests/DependencyInjection/Compiler/DoctrineMiddlewareCompilerPassTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace DH\AuditorBundle\Tests\DependencyInjection\Compiler; | ||
|
||
use DH\Auditor\Configuration; | ||
use DH\Auditor\Provider\Doctrine\Auditing\Logger\Middleware\DHMiddleware; | ||
use DH\Auditor\Tests\Provider\Doctrine\Fixtures\Entity\Standard\Blog\Author; | ||
use DH\Auditor\Tests\Provider\Doctrine\Fixtures\Entity\Standard\Blog\Comment; | ||
use DH\Auditor\Tests\Provider\Doctrine\Fixtures\Entity\Standard\Blog\Post; | ||
use DH\Auditor\Tests\Provider\Doctrine\Fixtures\Entity\Standard\Blog\Tag; | ||
use DH\AuditorBundle\DependencyInjection\Compiler\DoctrineProviderConfigurationCompilerPass; | ||
use DH\AuditorBundle\DependencyInjection\DHAuditorExtension; | ||
use Doctrine\Bundle\DoctrineBundle\DependencyInjection\DoctrineExtension; | ||
use Doctrine\DBAL\Driver\Middleware; | ||
use Matthias\SymfonyDependencyInjectionTest\PhpUnit\AbstractCompilerPassTestCase; | ||
use Symfony\Component\DependencyInjection\ChildDefinition; | ||
use Symfony\Component\DependencyInjection\ContainerBuilder; | ||
use Symfony\Component\DependencyInjection\Definition; | ||
|
||
/** | ||
* @internal | ||
* | ||
* @small | ||
*/ | ||
final class DoctrineMiddlewareCompilerPassTest extends AbstractCompilerPassTestCase | ||
{ | ||
public function testCompilerPass(): void | ||
{ | ||
if (!interface_exists(Middleware::class) || !class_exists(DHMiddleware::class)) { | ||
self::markTestSkipped('DHMiddleware isn\'t supported'); | ||
} | ||
$this->container->setParameter('kernel.cache_dir', sys_get_temp_dir()); | ||
$this->container->setParameter('kernel.debug', false); | ||
$this->container->setParameter('kernel.bundles', []); | ||
$doctrineConfig = [ | ||
'dbal' => [ | ||
'default_connection' => 'default', | ||
'connections' => [ | ||
'default' => [], | ||
], | ||
], | ||
'orm' => [ | ||
'auto_mapping' => true, | ||
], | ||
]; | ||
$this->setParameter('doctrine', $doctrineConfig); | ||
|
||
$DHConfig = [ | ||
'enabled' => true, | ||
'timezone' => 'UTC', | ||
'user_provider' => 'dh_auditor.user_provider', | ||
'security_provider' => 'dh_auditor.security_provider', | ||
'role_checker' => 'dh_auditor.role_checker', | ||
'providers' => [ | ||
'doctrine' => [ | ||
'table_prefix' => '', | ||
'table_suffix' => '_audit', | ||
'ignored_columns' => [ | ||
0 => 'createdAt', | ||
1 => 'updatedAt', | ||
], | ||
'entities' => [ | ||
Author::class => [ | ||
'enabled' => true, | ||
], | ||
Post::class => [ | ||
'enabled' => true, | ||
], | ||
Comment::class => [ | ||
'enabled' => true, | ||
], | ||
Tag::class => [ | ||
'enabled' => true, | ||
], | ||
], | ||
'storage_services' => [ | ||
0 => '@doctrine.orm.default_entity_manager', | ||
], | ||
'auditing_services' => [ | ||
0 => '@doctrine.orm.default_entity_manager', | ||
], | ||
'viewer' => true, | ||
'storage_mapper' => null, | ||
], | ||
], | ||
]; | ||
$this->setParameter('dh_auditor.configuration', $DHConfig); | ||
|
||
$auditorService = new Definition(); | ||
$this->setDefinition(Configuration::class, $auditorService); | ||
$this->container->loadFromExtension('doctrine', $doctrineConfig); | ||
$this->container->loadFromExtension('dh_auditor', $DHConfig); | ||
$this->compile(); | ||
|
||
$this->assertContainerBuilderHasServiceDefinitionWithMethodCall( | ||
'doctrine.dbal.default_connection.configuration', | ||
'setMiddlewares', | ||
[[new ChildDefinition('doctrine.dbal.dh_middleware')]] | ||
); | ||
} | ||
|
||
protected function registerCompilerPass(ContainerBuilder $container): void | ||
{ | ||
$this->container->registerExtension(new DoctrineExtension()); | ||
$this->container->registerExtension(new DHAuditorExtension()); | ||
$container->addCompilerPass(new DoctrineProviderConfigurationCompilerPass()); | ||
} | ||
} |