class SqliteDriverLegacyTest in Drupal 10
Tests the deprecations of the SQLite database driver classes in Core.
@group legacy @group Database
Hierarchy
- class \Drupal\KernelTests\KernelTestBase extends \PHPUnit\Framework\TestCase implements ServiceProviderInterface uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, AssertContentTrait, ConfigTestTrait, ExtensionListTestTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings
- class \Drupal\KernelTests\Core\Database\DatabaseTestBase
- class \Drupal\KernelTests\Core\Database\SqliteDriverLegacyTest
- class \Drupal\KernelTests\Core\Database\DatabaseTestBase
Expanded class hierarchy of SqliteDriverLegacyTest
File
- core/
tests/ Drupal/ KernelTests/ Core/ Database/ SqliteDriverLegacyTest.php, line 21
Namespace
Drupal\KernelTests\Core\DatabaseView source
class SqliteDriverLegacyTest extends DatabaseTestBase {
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
if ($this->connection
->driver() !== 'sqlite') {
$this
->markTestSkipped('Only test the deprecation message for the SQLite database driver classes in Core.');
}
}
/**
* @covers Drupal\Core\Database\Driver\sqlite\Install\Tasks
*/
public function testDeprecationInstallTasks() {
$this
->expectDeprecation('\\Drupal\\Core\\Database\\Driver\\sqlite\\Install\\Tasks is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The SQLite database driver has been moved to the sqlite module. See https://www.drupal.org/node/3129492');
$tasks = new Tasks();
$this
->assertInstanceOf(Tasks::class, $tasks);
}
/**
* @covers Drupal\Core\Database\Driver\sqlite\Connection
*/
public function testDeprecationConnection() {
$this
->expectDeprecation('\\Drupal\\Core\\Database\\Driver\\sqlite\\Connection is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The SQLite database driver has been moved to the sqlite module. See https://www.drupal.org/node/3129492');
$connection = new Connection($this
->createMock(StubPDO::class), []);
$this
->assertInstanceOf(Connection::class, $connection);
}
/**
* @covers Drupal\Core\Database\Driver\sqlite\Insert
*/
public function testDeprecationInsert() {
$this
->expectDeprecation('\\Drupal\\Core\\Database\\Driver\\sqlite\\Insert is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The SQLite database driver has been moved to the sqlite module. See https://www.drupal.org/node/3129492');
$insert = new Insert($this->connection, 'test');
$this
->assertInstanceOf(Insert::class, $insert);
}
/**
* @covers Drupal\Core\Database\Driver\sqlite\Schema
*/
public function testDeprecationSchema() {
$this
->expectDeprecation('\\Drupal\\Core\\Database\\Driver\\sqlite\\Schema is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The SQLite database driver has been moved to the sqlite module. See https://www.drupal.org/node/3129492');
$schema = new Schema($this->connection);
$this
->assertInstanceOf(Schema::class, $schema);
}
/**
* @covers Drupal\Core\Database\Driver\sqlite\Select
*/
public function testDeprecationSelect() {
$this
->expectDeprecation('\\Drupal\\Core\\Database\\Driver\\sqlite\\Select is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The SQLite database driver has been moved to the sqlite module. See https://www.drupal.org/node/3129492');
$select = new Select($this->connection, 'test');
$this
->assertInstanceOf(Select::class, $select);
}
/**
* @covers Drupal\Core\Database\Driver\sqlite\Statement
*/
public function testDeprecationStatement() {
$this
->expectDeprecation('\\Drupal\\Core\\Database\\Driver\\sqlite\\Statement is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The SQLite database driver has been moved to the sqlite module. See https://www.drupal.org/node/3129492');
$statement = new Statement($this
->createMock(StubPDO::class), $this->connection, '', []);
$this
->assertInstanceOf(Statement::class, $statement);
}
/**
* @covers Drupal\Core\Database\Driver\sqlite\Truncate
*/
public function testDeprecationTruncate() {
$this
->expectDeprecation('\\Drupal\\Core\\Database\\Driver\\sqlite\\Truncate is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The SQLite database driver has been moved to the sqlite module. See https://www.drupal.org/node/3129492');
$truncate = new Truncate($this->connection, 'test');
$this
->assertInstanceOf(Truncate::class, $truncate);
}
/**
* @covers Drupal\Core\Database\Driver\sqlite\Upsert
*/
public function testDeprecationUpsert() {
$this
->expectDeprecation('\\Drupal\\Core\\Database\\Driver\\sqlite\\Upsert is deprecated in drupal:9.4.0 and is removed from drupal:11.0.0. The SQLite database driver has been moved to the sqlite module. See https://www.drupal.org/node/3129492');
$upsert = new Upsert($this->connection, 'test');
$this
->assertInstanceOf(Upsert::class, $upsert);
}
}