appwrite/tests/e2e/Services/Health/HTTPTest.php
2026-01-01 09:54:13 +00:00

15 lines
441 B
PHP

<?php
namespace Tests\E2E\Services\Health;
class HTTPTest extends HealthBase
{
public function testHTTPSuccess(): void
{
$response = $this->callGet('/health');
$this->assertEquals(200, $response['headers']['status-code']);
$this->assertEquals('pass', $response['body']['status']);
$this->assertIsInt($response['body']['ping']);
$this->assertLessThan(100, $response['body']['ping']);
}
}