function EntityUnitTest::testPostDeleteBundle

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php \Drupal\Tests\Core\Entity\EntityUnitTest::testPostDeleteBundle()
  2. 8.9.x core/tests/Drupal/Tests/Core/Entity/EntityUnitTest.php \Drupal\Tests\Core\Entity\EntityUnitTest::testPostDeleteBundle()
  3. 11.x 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 505

Class

EntityUnitTest
@coversDefaultClass \Drupal\Core\Entity\EntityBase[[api-linebreak]] @group Entity @group Access

Namespace

Drupal\Tests\Core\Entity

Code

public function testPostDeleteBundle() : void {
  $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);
  // We avoid asserting on the order of array values, just that the values
  // all exist.
  $this->cacheTagsInvalidator
    ->invalidateTags(Argument::allOf(Argument::containing($this->entityTypeId . '_list'), Argument::containing($this->entityTypeId . ':' . $this->values['id']), Argument::containing($this->entityTypeId . '_list:' . $this->entity
    ->bundle())))
    ->shouldHaveBeenCalledOnce();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.