Skip to content

Commit 9bc4351

Browse files
authored
Allow usage with doctrine/annotations ^2.0 (#42)
1 parent b1cc700 commit 9bc4351

File tree

3 files changed

+8
-80
lines changed

3 files changed

+8
-80
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
],
1818
"require": {
1919
"php": "^7.2|^8.0",
20-
"doctrine/annotations": "^1.8",
20+
"doctrine/annotations": "^1.8|^2.0",
2121
"doctrine/cache": "^1.9.1",
2222
"doctrine/common": "^2.11|^3.0",
2323
"doctrine/dbal": "^2.12|^3.0",

src/Webfactory/Doctrine/ORMTestInfrastructure/ORMInfrastructure.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,9 @@ protected function createAnnotationLoader()
432432
*/
433433
protected function addAnnotationLoaderToRegistry(\Closure $loader)
434434
{
435-
AnnotationRegistry::registerLoader($loader);
435+
if (is_callable(['Doctrine\Common\Annotations\AnnotationRegistry', 'registerLoader'])) {
436+
AnnotationRegistry::registerLoader($loader);
437+
}
436438
}
437439

438440
/**
@@ -447,6 +449,10 @@ protected function addAnnotationLoaderToRegistry(\Closure $loader)
447449
*/
448450
protected function removeAnnotationLoaderFromRegistry(\Closure $loader)
449451
{
452+
if (!is_callable(['Doctrine\Common\Annotations\AnnotationRegistry', 'registerLoader'])) {
453+
return;
454+
}
455+
450456
$reflection = new \ReflectionClass(AnnotationRegistry::class);
451457
$annotationLoaderProperty = $reflection->getProperty('loaders');
452458
$annotationLoaderProperty->setAccessible(true);

tests/Webfactory/Doctrine/ORMTestInfrastructure/ORMInfrastructureTest.php

-78
Original file line numberDiff line numberDiff line change
@@ -396,39 +396,6 @@ public function testNotSimulatedEntitiesAreNotExposed()
396396
);
397397
}
398398

399-
/**
400-
* This test checks if a ORMInfrastructure object is immediately destructed when external references are removed.
401-
*
402-
* This ensures that the cleanup process runs early and the test environment is not polluted with infrastructure
403-
* objects hanging in memory until the tests end.
404-
* This is not a perfect test as it relies on internal knowledge about the magic of infrastructure. However,
405-
* at the moment it is at least a viable solution.
406-
*/
407-
public function testInfrastructureIsImmediatelyDestructed()
408-
{
409-
$beforeCreation = $this->getNumberOfAnnotationLoaders();
410-
$infrastructure = ORMInfrastructure::createOnlyFor(
411-
TestEntity::class
412-
);
413-
$afterCreation = $this->getNumberOfAnnotationLoaders();
414-
$this->assertEquals(
415-
$beforeCreation + 1,
416-
$afterCreation,
417-
'This test assumes that each infrastructure add an annotation loader. ' .
418-
'It will not work if this prerequisite is not met.'
419-
);
420-
421-
// Remove reference to the infrastructure object.
422-
unset($infrastructure);
423-
424-
$afterDestruction = $this->getNumberOfAnnotationLoaders();
425-
$this->assertEquals(
426-
$beforeCreation,
427-
$afterDestruction,
428-
'Expected annotation loader to be immediately removed, which should happen in __destruct().'
429-
);
430-
}
431-
432399
/**
433400
* Ensures that entities with non-Doctrine annotations can be used.
434401
*/
@@ -444,51 +411,6 @@ public function testInfrastructureCanUseEntitiesWithNonDoctrineAnnotations()
444411
);
445412
}
446413

447-
/**
448-
* This test covers a rare edge case.
449-
*
450-
* Prerequisites of the problem:
451-
*
452-
* - No custom annotation loader registered (e.g. if no infrastructure has been created yet)
453-
* - Infrastructure is created with dependency discovery
454-
* - Entity uses a custom annotation
455-
* - Annotation class has not been loaded yet
456-
*
457-
* Observation:
458-
*
459-
* - Exception stating that the annotation could not be loaded
460-
* - Creation of the infrastructure failed
461-
*
462-
* Reason:
463-
*
464-
* The dependency resolver scans the provided entities to find connected entities.
465-
* That happened early in the infrastructure constructor so that no annotation loader was registered yet.
466-
* Therefore, the annotation that is found cannot be loaded.
467-
*
468-
* @see \Webfactory\Doctrine\ORMTestInfrastructure\EntityDependencyResolver
469-
*/
470-
public function testEntityDependencyDiscoveryWithCustomAnnotationThatWasNotLoadedBefore()
471-
{
472-
// Destruct the default infrastructure to ensure that its annotation loader is removed.
473-
$this->infrastructure = null;
474-
$this->assertEquals(
475-
0,
476-
$this->getNumberOfAnnotationLoaders(),
477-
'This test assumes that no custom annotation loaders are registered.'
478-
);
479-
$this->assertFalse(
480-
class_exists(AnnotationForTestWithDependencyDiscovery::class, false),
481-
sprintf(
482-
'This test assumes that the annotation class "%s" was not loaded before.',
483-
AnnotationForTestWithDependencyDiscovery::class
484-
)
485-
);
486-
487-
ORMInfrastructure::createWithDependenciesFor(
488-
AnnotatedTestEntityForDependencyDiscovery::class
489-
);
490-
}
491-
492414
public function testGetEventManagerReturnsEventManager()
493415
{
494416
$this->assertInstanceOf(EventManager::class, $this->infrastructure->getEventManager());

0 commit comments

Comments
 (0)