From 4e7a4eb3aa1479e6ec22833eacbf9491b538b9d6 Mon Sep 17 00:00:00 2001 From: kissifrot Date: Thu, 24 Oct 2024 19:56:47 +0200 Subject: [PATCH] Fix compatibility with DBAL 4.x --- Dbal/Schema.php | 12 ++++++------ Tests/Dbal/MutableAclProviderTest.php | 21 ++++++++++++++++----- composer.json | 2 +- 3 files changed, 23 insertions(+), 12 deletions(-) diff --git a/Dbal/Schema.php b/Dbal/Schema.php index 56ea9dc..ff9ee01 100644 --- a/Dbal/Schema.php +++ b/Dbal/Schema.php @@ -94,9 +94,9 @@ protected function addEntryTable() $table->addUniqueIndex(['class_id', 'object_identity_id', 'field_name', 'ace_order']); $table->addIndex(['class_id', 'object_identity_id', 'security_identity_id']); - $table->addForeignKeyConstraint($this->getTable($this->options['class_table_name']), ['class_id'], ['id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); - $table->addForeignKeyConstraint($this->getTable($this->options['oid_table_name']), ['object_identity_id'], ['id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); - $table->addForeignKeyConstraint($this->getTable($this->options['sid_table_name']), ['security_identity_id'], ['id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); + $table->addForeignKeyConstraint($this->getTable($this->options['class_table_name'])->getName(), ['class_id'], ['id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); + $table->addForeignKeyConstraint($this->getTable($this->options['oid_table_name'])->getName(), ['object_identity_id'], ['id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); + $table->addForeignKeyConstraint($this->getTable($this->options['sid_table_name'])->getName(), ['security_identity_id'], ['id'], ['onDelete' => 'CASCADE', 'onUpdate' => 'CASCADE']); } /** @@ -116,7 +116,7 @@ protected function addObjectIdentitiesTable() $table->addUniqueIndex(['object_identifier', 'class_id']); $table->addIndex(['parent_object_identity_id']); - $table->addForeignKeyConstraint($table, ['parent_object_identity_id'], ['id']); + $table->addForeignKeyConstraint($table->getName(), ['parent_object_identity_id'], ['id']); } /** @@ -137,8 +137,8 @@ protected function addObjectIdentityAncestorsTable() // MS SQL Server does not support recursive cascading $action = 'NO ACTION'; } - $table->addForeignKeyConstraint($oidTable, ['object_identity_id'], ['id'], ['onDelete' => $action, 'onUpdate' => $action]); - $table->addForeignKeyConstraint($oidTable, ['ancestor_id'], ['id'], ['onDelete' => $action, 'onUpdate' => $action]); + $table->addForeignKeyConstraint($oidTable->getName(), ['object_identity_id'], ['id'], ['onDelete' => $action, 'onUpdate' => $action]); + $table->addForeignKeyConstraint($oidTable->getName(), ['ancestor_id'], ['id'], ['onDelete' => $action, 'onUpdate' => $action]); } /** diff --git a/Tests/Dbal/MutableAclProviderTest.php b/Tests/Dbal/MutableAclProviderTest.php index d29a0d9..195bec2 100644 --- a/Tests/Dbal/MutableAclProviderTest.php +++ b/Tests/Dbal/MutableAclProviderTest.php @@ -261,10 +261,18 @@ public function testUpdateDoesNothingWhenThereAreNoChanges() ->expects($this->never()) ->method('beginTransaction') ; - $con - ->expects($this->never()) - ->method('executeUpdate') - ; + if (method_exists(Connection::class, 'executeUpdate')) { + // DBAL < 4.0 + $con + ->expects($this->never()) + ->method('executeUpdate') + ; + } else { + $con + ->expects($this->never()) + ->method('executeStatement') + ; + } $provider = new MutableAclProvider($con, new PermissionGrantingStrategy(), []); $acl = new Acl(1, new ObjectIdentity(1, 'Foo'), new PermissionGrantingStrategy(), [], true); @@ -536,7 +544,10 @@ protected function setUp(): void ], $configuration ); - $this->connection->setNestTransactionsWithSavepoints(true); + if (method_exists($configuration, 'setNestTransactionsWithSavepoints')) { + // DBAL < 4.0 + $this->connection->setNestTransactionsWithSavepoints(true); + } // import the schema $schema = new Schema($this->getOptions()); diff --git a/composer.json b/composer.json index 22eaea5..d3fa7e3 100644 --- a/composer.json +++ b/composer.json @@ -26,7 +26,7 @@ "doctrine/cache": "^1.11|^2.0", "doctrine/common": "^2.2|^3", "doctrine/persistence": "^1.3.3|^2|^3", - "doctrine/dbal": "^2.13.1|^3.1", + "doctrine/dbal": "^2.13.1|^3.1|^4.0", "psr/log": "^1|^2|^3" }, "autoload": {