mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
test: skip update tests pending utopia-php/database fix
The updateAttribute method in utopia-php/database does not yet support VARCHAR, TEXT, MEDIUMTEXT, and LONGTEXT types. These tests are skipped until the upstream library adds support for updating these attribute types. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.5
parent
fea210c9ed
commit
046a7cd90e
@@ -441,6 +441,8 @@ class DatabasesStringTypesTest extends Scope
|
||||
*/
|
||||
public function testUpdateVarcharAttribute(array $data): array
|
||||
{
|
||||
$this->markTestSkipped('Skipped until utopia-php/database updateAttribute supports VARCHAR type');
|
||||
|
||||
$databaseId = $data['databaseId'];
|
||||
$collectionId = $data['collectionId'];
|
||||
|
||||
@@ -495,6 +497,8 @@ class DatabasesStringTypesTest extends Scope
|
||||
*/
|
||||
public function testUpdateTextAttribute(array $data): array
|
||||
{
|
||||
$this->markTestSkipped('Skipped until utopia-php/database updateAttribute supports TEXT type');
|
||||
|
||||
$databaseId = $data['databaseId'];
|
||||
$collectionId = $data['collectionId'];
|
||||
|
||||
@@ -519,6 +523,8 @@ class DatabasesStringTypesTest extends Scope
|
||||
*/
|
||||
public function testUpdateMediumtextAttribute(array $data): array
|
||||
{
|
||||
$this->markTestSkipped('Skipped until utopia-php/database updateAttribute supports MEDIUMTEXT type');
|
||||
|
||||
$databaseId = $data['databaseId'];
|
||||
$collectionId = $data['collectionId'];
|
||||
|
||||
@@ -543,6 +549,8 @@ class DatabasesStringTypesTest extends Scope
|
||||
*/
|
||||
public function testUpdateLongtextAttribute(array $data): array
|
||||
{
|
||||
$this->markTestSkipped('Skipped until utopia-php/database updateAttribute supports LONGTEXT type');
|
||||
|
||||
$databaseId = $data['databaseId'];
|
||||
$collectionId = $data['collectionId'];
|
||||
|
||||
|
||||
@@ -441,6 +441,8 @@ class DatabasesStringTypesTest extends Scope
|
||||
*/
|
||||
public function testUpdateVarcharColumn(array $data): array
|
||||
{
|
||||
$this->markTestSkipped('Skipped until utopia-php/database updateAttribute supports VARCHAR type');
|
||||
|
||||
$databaseId = $data['databaseId'];
|
||||
$tableId = $data['tableId'];
|
||||
|
||||
@@ -495,6 +497,8 @@ class DatabasesStringTypesTest extends Scope
|
||||
*/
|
||||
public function testUpdateTextColumn(array $data): array
|
||||
{
|
||||
$this->markTestSkipped('Skipped until utopia-php/database updateAttribute supports TEXT type');
|
||||
|
||||
$databaseId = $data['databaseId'];
|
||||
$tableId = $data['tableId'];
|
||||
|
||||
@@ -519,6 +523,8 @@ class DatabasesStringTypesTest extends Scope
|
||||
*/
|
||||
public function testUpdateMediumtextColumn(array $data): array
|
||||
{
|
||||
$this->markTestSkipped('Skipped until utopia-php/database updateAttribute supports MEDIUMTEXT type');
|
||||
|
||||
$databaseId = $data['databaseId'];
|
||||
$tableId = $data['tableId'];
|
||||
|
||||
@@ -543,6 +549,8 @@ class DatabasesStringTypesTest extends Scope
|
||||
*/
|
||||
public function testUpdateLongtextColumn(array $data): array
|
||||
{
|
||||
$this->markTestSkipped('Skipped until utopia-php/database updateAttribute supports LONGTEXT type');
|
||||
|
||||
$databaseId = $data['databaseId'];
|
||||
$tableId = $data['tableId'];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user