
| Current Path : /var/www/html1/bbp/web/core/modules/system/tests/src/Functional/Update/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html1/bbp/web/core/modules/system/tests/src/Functional/Update/SchemaVersionUpdateTest.php |
<?php
namespace Drupal\Tests\system\Functional\Update;
use Drupal\FunctionalTests\Update\UpdatePathTestBase;
/**
* Tests that updates clean-up non-integer schema version.
*
* @group Update
* @see system_post_update_schema_version_int()
*/
class SchemaVersionUpdateTest extends UpdatePathTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['update_test_schema'];
/**
* {@inheritdoc}
*/
protected function setDatabaseDumpFiles() {
$this->databaseDumpFiles = [
__DIR__ . '/../../../fixtures/update/drupal-8.8.0.bare.standard.php.gz',
__DIR__ . '/../../../fixtures/update/drupal-8.update-schema-version-int.php',
];
}
/**
* Tests that upgrade converted string value to integer.
*/
public function testSchemaVersionsIsInt() {
$this->assertSame('8901', \Drupal::keyValue('system.schema')->get('update_test_schema'));
$this->runUpdates();
$this->assertSame(8901, \Drupal::keyValue('system.schema')->get('update_test_schema'));
}
}