function EntityUpdateInitialTest::setUp

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/UpdateSystem/EntityUpdateInitialTest.php \Drupal\Tests\system\Functional\UpdateSystem\EntityUpdateInitialTest::setUp()
  2. 10 core/modules/system/tests/src/Functional/UpdateSystem/EntityUpdateInitialTest.php \Drupal\Tests\system\Functional\UpdateSystem\EntityUpdateInitialTest::setUp()
  3. 11.x core/modules/system/tests/src/Functional/UpdateSystem/EntityUpdateInitialTest.php \Drupal\Tests\system\Functional\UpdateSystem\EntityUpdateInitialTest::setUp()

Overrides BrowserTestBase::setUp

File

core/modules/system/tests/src/Functional/UpdateSystem/EntityUpdateInitialTest.php, line 32

Class

EntityUpdateInitialTest
Tests handling of existing initial keys during updates.

Namespace

Drupal\Tests\system\Functional\UpdateSystem

Code

protected function setUp() {
    parent::setUp();
    $this->ensureUpdatesToRun();
    $connection = Database::getConnection();
    // Simulate an entity type that had previously set an initial key schema for
    // a field.
    $schema = $connection->select('key_value')
        ->fields('key_value', [
        'value',
    ])
        ->condition('collection', 'entity.storage_schema.sql')
        ->condition('name', 'entity_test_update.field_schema_data.name')
        ->execute()
        ->fetchField();
    $schema = unserialize($schema);
    $schema['entity_test_update']['fields']['name']['initial'] = 'test';
    $connection->update('key_value')
        ->fields([
        'value' => serialize($schema),
    ])
        ->condition('collection', 'entity.storage_schema.sql')
        ->condition('name', 'entity_test_update.field_schema_data.name')
        ->execute();
}

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