class EntityUpdateInitialTest
Same name and namespace in other branches
- 11.x core/modules/system/tests/src/Functional/UpdateSystem/EntityUpdateInitialTest.php \Drupal\Tests\system\Functional\UpdateSystem\EntityUpdateInitialTest
- 10 core/modules/system/tests/src/Functional/UpdateSystem/EntityUpdateInitialTest.php \Drupal\Tests\system\Functional\UpdateSystem\EntityUpdateInitialTest
- 8.9.x core/modules/system/tests/src/Functional/UpdateSystem/EntityUpdateInitialTest.php \Drupal\Tests\system\Functional\UpdateSystem\EntityUpdateInitialTest
Tests handling of existing initial keys during updates.
@group Update
Hierarchy
- class \Drupal\Tests\BrowserTestBase uses \Drupal\Core\Test\FunctionalTestSetupTrait, \Drupal\Tests\UiHelperTrait, \Drupal\Core\Test\TestSetupTrait, \Drupal\Tests\block\Traits\BlockCreationTrait, \Drupal\FunctionalTests\AssertLegacyTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\node\Traits\NodeCreationTrait, \Drupal\Tests\node\Traits\ContentTypeCreationTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\user\Traits\UserCreationTrait, \Drupal\Tests\XdebugRequestTrait, \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, \Drupal\Tests\ExtensionListTestTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\system\Functional\UpdateSystem\EntityUpdateInitialTest uses \Drupal\Tests\UpdatePathTestTrait extends \Drupal\Tests\BrowserTestBase
Expanded class hierarchy of EntityUpdateInitialTest
See also
https://www.drupal.org/project/drupal/issues/2925550
File
-
core/
modules/ system/ tests/ src/ Functional/ UpdateSystem/ EntityUpdateInitialTest.php, line 16
Namespace
Drupal\Tests\system\Functional\UpdateSystemView source
class EntityUpdateInitialTest extends BrowserTestBase {
use UpdatePathTestTrait;
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected static $modules = [
'entity_test_update',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
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();
}
/**
* Tests that a pre-existing initial key in the field schema is not a change.
*/
public function testInitialIsIgnored() {
$this->runUpdates();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.