You are here

public function EntityDefinitionUpdateTest::testBundleFieldUpdateWithExistingData in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Entity/EntityDefinitionUpdateTest.php \Drupal\system\Tests\Entity\EntityDefinitionUpdateTest::testBundleFieldUpdateWithExistingData()

Tests updating a bundle field when it has existing data.

File

core/modules/system/src/Tests/Entity/EntityDefinitionUpdateTest.php, line 459
Contains \Drupal\system\Tests\Entity\EntityDefinitionUpdateTest.

Class

EntityDefinitionUpdateTest
Tests EntityDefinitionUpdateManager functionality.

Namespace

Drupal\system\Tests\Entity

Code

public function testBundleFieldUpdateWithExistingData() {

  // Add the bundle field and run the update.
  $this
    ->addBundleField();
  $this->entityDefinitionUpdateManager
    ->applyUpdates();

  // Save an entity with the bundle field populated.
  entity_test_create_bundle('custom');
  $this->entityManager
    ->getStorage('entity_test_update')
    ->create(array(
    'type' => 'test_bundle',
    'new_bundle_field' => 'foo',
  ))
    ->save();

  // Change the field's field type and apply updates. It's expected to
  // throw an exception.
  $this
    ->modifyBundleField();
  try {
    $this->entityDefinitionUpdateManager
      ->applyUpdates();
    $this
      ->fail('FieldStorageDefinitionUpdateForbiddenException thrown when trying to update a field schema that has data.');
  } catch (FieldStorageDefinitionUpdateForbiddenException $e) {
    $this
      ->pass('FieldStorageDefinitionUpdateForbiddenException thrown when trying to update a field schema that has data.');
  }
}