1
0
Fork 0
mirror of synced 2024-06-01 18:39:57 +12:00
appwrite/tests/e2e/General/UsageTest.php

75 lines
2.3 KiB
PHP
Raw Normal View History

2022-06-30 16:27:11 +12:00
<?php
use PHPUnit\Framework\TestCase;
use Tests\E2E\Client;
use Tests\E2E\Scopes\ProjectCustom;
use Tests\E2E\Scopes\Scope;
use Tests\E2E\Scopes\SideServer;
2022-06-30 21:40:27 +12:00
class UsageTest extends Scope
{
2022-06-30 16:27:11 +12:00
use ProjectCustom;
use SideServer;
protected array $headers = [];
2022-06-30 21:33:40 +12:00
protected string $projectId;
2022-06-30 21:40:27 +12:00
2022-06-30 16:27:11 +12:00
protected int $usersCount = 0;
protected int $requestsCount = 0;
2022-06-30 21:40:27 +12:00
protected function setUp(): void
{
2022-06-30 21:33:40 +12:00
parent::setUp();
$project = $this->getProject(true);
$this->projectId = $project['$id'];
$this->headers['x-appwrite-project'] = $project['$id'];
$this->headers['x-appwrite-key'] = $project['apiKey'];
2022-06-30 16:27:11 +12:00
$this->headers['content-type'] = 'application/json';
}
public function testUsersStats(): void
{
2022-06-30 21:40:27 +12:00
for ($i = 0; $i < 10; $i++) {
2022-06-30 16:27:11 +12:00
$email = uniqid() . 'user@usage.test';
$password = 'password';
$name = uniqid() . 'User';
2022-06-30 21:33:40 +12:00
$res = $this->client->call(Client::METHOD_POST, '/users', $this->headers, [
2022-06-30 16:27:11 +12:00
'userId' => 'unique()',
'email' => $email,
'password' => $password,
'name' => $name,
]);
2022-06-30 21:33:40 +12:00
$this->assertEquals($email, $res['body']['email']);
$this->assertNotEmpty($res['body']['$id']);
2022-06-30 16:27:11 +12:00
$this->usersCount++;
2022-06-30 21:37:59 +12:00
$this->requestsCount++;
2022-06-30 16:27:11 +12:00
}
2022-06-30 21:33:40 +12:00
sleep(65);
// console request
$headers = [
'origin' => 'http://localhost',
'x-appwrite-project' => 'console',
'cookie' => 'a_session_console=' . $this->getRoot()['session'],
];
2022-06-30 21:40:27 +12:00
2022-06-30 21:33:40 +12:00
$res = $this->client->call(Client::METHOD_GET, '/projects/' . $this->projectId . '/usage?range=30d', $headers);
$res = $res['body'];
$this->assertEquals(8, count($res));
$this->assertEquals(30, count($res['requests']));
$this->assertEquals(30, count($res['users']));
$this->assertEquals($this->requestsCount, $res['users'][array_key_last($res['users'])]['value']);
$this->assertEquals($this->usersCount, $res['requests'][array_key_last($res['requests'])]['value']);
2022-06-30 16:27:11 +12:00
}
2022-06-30 21:37:59 +12:00
protected function tearDown(): void
{
$this->usersCount = 0;
$this->requestsCount = 0;
$this->projectId = '';
$this->headers = [];
}
2022-06-30 21:40:27 +12:00
}