1
0
Fork 0
mirror of synced 2024-07-01 12:40:34 +12:00
appwrite/tests/e2e/Services/Health/HealthCustomClientTest.php

245 lines
7 KiB
PHP
Raw Normal View History

2020-01-13 04:20:51 +13:00
<?php
namespace Tests\E2E\Services\Health;
2020-05-01 22:43:31 +12:00
use Tests\E2E\Client;
2020-01-13 04:20:51 +13:00
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\SideClient;
class HealthCustomClientTest extends Scope
{
use HealthBase;
use ProjectCustom;
use SideClient;
2020-05-01 22:43:31 +12:00
public function testHTTPSuccess():array
{
/**
* Test for SUCCESS
*/
$response = $this->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('OK', $response['body']['status']);
/**
* 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('OK', $response['body']['status']);
/**
* Test for FAILURE
*/
return [];
}
public function testCacheSuccess():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('OK', $response['body']['status']);
/**
* 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']['remote']);
$this->assertIsInt($response['body']['local']);
$this->assertNotEmpty($response['body']['remote']);
$this->assertNotEmpty($response['body']['local']);
$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']);
2020-05-02 02:02:05 +12:00
$this->assertLessThan(100, $response['body']['size']);
2020-05-01 22:43:31 +12:00
/**
* Test for FAILURE
*/
return [];
}
public function testTasksSuccess():array
{
/**
* Test for SUCCESS
*/
$response = $this->client->call(Client::METHOD_GET, '/health/queue/tasks', 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']);
2020-05-02 02:02:05 +12:00
$this->assertLessThan(100, $response['body']['size']);
2020-05-01 22:43:31 +12:00
/**
* 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']);
2020-05-02 02:02:05 +12:00
$this->assertLessThan(100, $response['body']['size']);
2020-05-01 22:43:31 +12:00
/**
* 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']);
2020-05-02 02:02:05 +12:00
$this->assertLessThan(100, $response['body']['size']);
2020-05-01 22:43:31 +12:00
/**
* 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']);
2020-05-02 02:02:05 +12:00
$this->assertLessThan(100, $response['body']['size']);
2020-05-01 22:43:31 +12:00
/**
* 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('OK', $response['body']['status']);
/**
* Test for FAILURE
*/
return [];
}
public function testStorageAntiVirusSuccess():array
{
/**
* Test for SUCCESS
*/
$response = $this->client->call(Client::METHOD_GET, '/health/storage/anti-virus', array_merge([
'content-type' => 'application/json',
'x-appwrite-project' => $this->getProject()['$id'],
], $this->getHeaders()), []);
$this->assertEquals(200, $response['headers']['status-code']);
2020-05-19 00:15:54 +12:00
$this->assertEquals('OK', $response['body']['status']);
2020-05-01 22:43:31 +12:00
$this->assertStringStartsWith('ClamAV ', $response['body']['version']);
/**
* Test for FAILURE
*/
return [];
}
2020-01-13 04:20:51 +13:00
}