You are here

public function EntityUnitTest::testPostDeleteBundle in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php \Drupal\Tests\Core\Entity\EntityUnitTest::testPostDeleteBundle()
  2. 9 core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php \Drupal\Tests\Core\Entity\EntityUnitTest::testPostDeleteBundle()

@covers ::postDelete

File

core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php, line 518

Class

EntityUnitTest
@coversDefaultClass \Drupal\Core\Entity\EntityBase @group Entity @group Access

Namespace

Drupal\Tests\Core\Entity

Code

public function testPostDeleteBundle() {
  $this->cacheTagsInvalidator
    ->expects($this
    ->once())
    ->method('invalidateTags')
    ->willReturnCallback(function (array $tags) {
    self::assertEqualsCanonicalizing([
      $this->entityTypeId . '_list',
      $this->entityTypeId . ':' . $this->values['id'],
      $this->entityTypeId . '_list:' . $this->entity
        ->bundle(),
    ], $tags);
    return NULL;
  });
  $this->entityType
    ->expects($this
    ->atLeastOnce())
    ->method('hasKey')
    ->with('bundle')
    ->willReturn(TRUE);
  $storage = $this
    ->createMock('\\Drupal\\Core\\Entity\\EntityStorageInterface');
  $storage
    ->expects($this
    ->once())
    ->method('getEntityType')
    ->willReturn($this->entityType);
  $entities = [
    $this->values['id'] => $this->entity,
  ];
  $this->entity
    ->postDelete($storage, $entities);
}