1
0
Fork 0
mirror of synced 2024-07-06 23:21:05 +12:00

test: fix

This commit is contained in:
loks0n 2024-06-14 14:01:04 +01:00
parent 6f38ef3a18
commit 10e37bb8ca

View file

@ -260,24 +260,15 @@ class FunctionsCustomClientTest extends Scope
$executionId = $execution['body']['$id'];
while (true) {
sleep(12);
$execution = $this->client->call(Client::METHOD_GET, '/functions/' . $function['body']['$id'] . '/executions/' . $executionId, [
'content-type' => 'application/json',
'x-appwrite-project' => $this->getProject()['$id'],
'x-appwrite-key' => $this->getProject()['apiKey'],
]);
if (
$execution['headers']['status-code'] >= 400
|| \in_array($execution['body']['status'], ['completed', 'failed'])
) {
break;
}
\sleep(1);
}
$execution = $this->client->call(Client::METHOD_GET, '/functions/' . $function['body']['$id'] . '/executions/' . $executionId, [
'content-type' => 'application/json',
'x-appwrite-project' => $this->getProject()['$id'],
'x-appwrite-key' => $this->getProject()['apiKey'],
]);
$this->assertEquals(200, $execution['headers']['status-code']);
$this->assertEquals('completed', $execution['body']['status'], \json_encode($execution['body']));
// Cleanup : Delete function