@@ -396,39 +396,6 @@ public function testNotSimulatedEntitiesAreNotExposed()
396
396
);
397
397
}
398
398
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
-
432
399
/**
433
400
* Ensures that entities with non-Doctrine annotations can be used.
434
401
*/
@@ -444,51 +411,6 @@ public function testInfrastructureCanUseEntitiesWithNonDoctrineAnnotations()
444
411
);
445
412
}
446
413
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
-
492
414
public function testGetEventManagerReturnsEventManager ()
493
415
{
494
416
$ this ->assertInstanceOf (EventManager::class, $ this ->infrastructure ->getEventManager ());
0 commit comments