From d5999fde53f79c4b68ba99dbf73484e99e331bfd Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Mon, 26 May 2025 18:03:03 +1200 Subject: [PATCH] Ignore plan blocked test for cl --- tests/e2e/Services/Databases/DatabasesCustomServerTest.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/e2e/Services/Databases/DatabasesCustomServerTest.php b/tests/e2e/Services/Databases/DatabasesCustomServerTest.php index b1b0a8462c..7e2b7a5f8a 100644 --- a/tests/e2e/Services/Databases/DatabasesCustomServerTest.php +++ b/tests/e2e/Services/Databases/DatabasesCustomServerTest.php @@ -641,10 +641,10 @@ class DatabasesCustomServerTest extends Scope /** * @depends testListCollections + * @group cl-ignore */ public function testCreateEncryptedAttribute(array $data): void { - $databaseId = $data['databaseId']; /** @@ -685,6 +685,7 @@ class DatabasesCustomServerTest extends Scope 'size' => 256, 'required' => true, ]); + // checking size test $lastName = $this->client->call(Client::METHOD_POST, $attributesPath . '/string', array_merge([ 'content-type' => 'application/json', @@ -709,12 +710,15 @@ class DatabasesCustomServerTest extends Scope 'encrypt' => true ]); $this->assertTrue($lastName['body']['encrypt']); + sleep(1); + $response = $this->client->call(Client::METHOD_GET, $attributesPath . '/lastName', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], 'x-appwrite-key' => $this->getProject()['apiKey'], ])); + $this->assertTrue($response['body']['encrypt']); /**