Ignore plan blocked test for cl

This commit is contained in:
Jake Barnby
2025-05-26 18:03:03 +12:00
parent f09bda97f8
commit d5999fde53
@@ -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']);
/**