client->call(Client::METHOD_GET, '/health', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], ], $this->getHeaders()), []); $this->assertEquals(200, $response['headers']['status-code']); $this->assertEquals('pass', $response['body']['status']); $this->assertIsInt($response['body']['ping']); $this->assertLessThan(100, $response['body']['ping']); /** * Test for FAILURE */ return []; } public function testDBSuccess(): array { /** * Test for SUCCESS */ $response = $this->client->call(Client::METHOD_GET, '/health/db', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], ], $this->getHeaders()), []); $this->assertEquals(200, $response['headers']['status-code']); $this->assertEquals('pass', $response['body']['status']); $this->assertIsInt($response['body']['ping']); $this->assertLessThan(100, $response['body']['ping']); /** * Test for FAILURE */ return []; } public function testCacheSuccess(): array { /** * Test for SUCCESS */ $response = $this->client->call(Client::METHOD_GET, '/health/cache', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], ], $this->getHeaders()), []); $this->assertEquals(200, $response['headers']['status-code']); $this->assertEquals('pass', $response['body']['status']); $this->assertIsInt($response['body']['ping']); $this->assertLessThan(100, $response['body']['ping']); /** * Test for FAILURE */ return []; } public function testTimeSuccess(): array { /** * Test for SUCCESS */ $response = $this->client->call(Client::METHOD_GET, '/health/time', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], ], $this->getHeaders()), []); $this->assertEquals(200, $response['headers']['status-code']); $this->assertIsInt($response['body']['remoteTime']); $this->assertIsInt($response['body']['localTime']); $this->assertNotEmpty($response['body']['remoteTime']); $this->assertNotEmpty($response['body']['localTime']); $this->assertLessThan(10, $response['body']['diff']); /** * Test for FAILURE */ return []; } public function testWebhooksSuccess(): array { /** * Test for SUCCESS */ $response = $this->client->call(Client::METHOD_GET, '/health/queue/webhooks', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], ], $this->getHeaders()), []); $this->assertEquals(200, $response['headers']['status-code']); $this->assertIsInt($response['body']['size']); $this->assertLessThan(100, $response['body']['size']); /** * Test for FAILURE */ return []; } public function testLogsSuccess(): array { /** * Test for SUCCESS */ $response = $this->client->call(Client::METHOD_GET, '/health/queue/logs', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], ], $this->getHeaders()), []); $this->assertEquals(200, $response['headers']['status-code']); $this->assertIsInt($response['body']['size']); $this->assertLessThan(100, $response['body']['size']); /** * Test for FAILURE */ return []; } public function testUsageSuccess(): array { /** * Test for SUCCESS */ $response = $this->client->call(Client::METHOD_GET, '/health/queue/usage', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], ], $this->getHeaders()), []); $this->assertEquals(200, $response['headers']['status-code']); $this->assertIsInt($response['body']['size']); $this->assertLessThan(200, $response['body']['size']); /** * Test for FAILURE */ return []; } public function testCertificatesSuccess(): array { /** * Test for SUCCESS */ $response = $this->client->call(Client::METHOD_GET, '/health/queue/certificates', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], ], $this->getHeaders()), []); $this->assertEquals(200, $response['headers']['status-code']); $this->assertIsInt($response['body']['size']); $this->assertLessThan(100, $response['body']['size']); /** * Test for FAILURE */ return []; } public function testStorageLocalSuccess(): array { /** * Test for SUCCESS */ $response = $this->client->call(Client::METHOD_GET, '/health/storage/local', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], ], $this->getHeaders()), []); $this->assertEquals(200, $response['headers']['status-code']); $this->assertEquals('pass', $response['body']['status']); $this->assertIsInt($response['body']['ping']); $this->assertLessThan(100, $response['body']['ping']); /** * Test for FAILURE */ return []; } public function testStorageAntiVirusSuccess(): array { /** * Test for SUCCESS */ $response = $this->client->call(Client::METHOD_GET, '/health/anti-virus', array_merge([ 'content-type' => 'application/json', 'x-appwrite-project' => $this->getProject()['$id'], ], $this->getHeaders()), []); $this->assertEquals(200, $response['headers']['status-code']); $this->assertNotEmpty($response['body']['status']); $this->assertIsString($response['body']['status']); $this->assertIsString($response['body']['version']); /** * Test for FAILURE */ return []; } }