1
0
Fork 0
mirror of synced 2024-06-14 08:44:49 +12:00
appwrite/tests/e2e/General/UsageTest.php

231 lines
9.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
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-07-04 01:10:26 +12:00
$usersCount = 0;
$requestsCount = 0;
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-07-04 01:10:26 +12:00
$usersCount++;
$requestsCount++;
2022-07-03 14:42:13 +12:00
2022-07-04 00:11:43 +12:00
if ($i < 5) {
2022-07-03 14:42:13 +12:00
$userId = $res['body']['$id'];
$res = $this->client->call(Client::METHOD_GET, '/users/' . $userId, $this->headers);
$this->assertEquals($userId, $res['body']['$id']);
$res = $this->client->call(Client::METHOD_DELETE, '/users/' . $userId, $this->headers);
$this->assertEmpty($res['body']);
2022-07-04 01:10:26 +12:00
$requestsCount += 2;
$usersCount--;
2022-07-03 14:42:13 +12:00
}
2022-06-30 16:27:11 +12:00
}
2022-07-03 14:42:13 +12:00
sleep(75);
2022-06-30 21:33:40 +12:00
// 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']));
2022-07-04 01:10:26 +12:00
$this->assertEquals($usersCount, $res['users'][array_key_last($res['users'])]['value']);
$this->assertEquals($requestsCount, $res['requests'][array_key_last($res['requests'])]['value']);
$res = $this->client->call(Client::METHOD_GET, '/users/usage?range=30d', array_merge($headers, [
'x-appwrite-project' => $this->projectId,
'x-appwrite-mode' => 'admin'
]));
$res = $res['body'];
$this->assertEquals(10, $res['usersCreate'][array_key_last($res['usersCreate'])]['value']);
$this->assertEquals(5, $res['usersRead'][array_key_last($res['usersRead'])]['value']);
$this->assertEquals(5, $res['usersDelete'][array_key_last($res['usersDelete'])]['value']);
}
2022-07-04 21:00:07 +12:00
public function testStorageStats()
{
2022-07-04 01:10:26 +12:00
$bucketId = '';
$bucketsCount = 0;
$requestsCount = 0;
$storageTotal = 0;
$bucketsCreate = 0;
$bucketsDelete = 0;
$bucketsRead = 0;
$filesCount = 0;
2022-07-04 21:00:07 +12:00
$filesRead = 0;
$filesCreate = 0;
$filesDelete = 0;
2022-07-04 01:10:26 +12:00
for ($i = 0; $i < 10; $i++) {
$name = uniqid() . ' bucket';
$res = $this->client->call(Client::METHOD_POST, '/storage/buckets', $this->headers, [
'bucketId' => 'unique()',
'name' => $name,
'permission' => 'bucket'
]);
$this->assertEquals($name, $res['body']['name']);
$this->assertNotEmpty($res['body']['$id']);
$bucketId = $res['body']['$id'];
2022-07-04 21:00:07 +12:00
2022-07-04 01:10:26 +12:00
$bucketsCreate++;
$bucketsCount++;
$requestsCount++;
if ($i < 5) {
$res = $this->client->call(Client::METHOD_GET, '/storage/buckets/' . $bucketId, $this->headers);
$this->assertEquals($bucketId, $res['body']['$id']);
$bucketsRead++;
$res = $this->client->call(Client::METHOD_DELETE, '/storage/buckets/' . $bucketId, $this->headers);
$this->assertEmpty($res['body']);
$bucketsDelete++;
2022-07-04 21:00:07 +12:00
2022-07-04 01:10:26 +12:00
$requestsCount += 2;
$bucketsCount--;
}
}
// upload some files
2022-07-04 21:00:07 +12:00
$files = [
[
'path' => realpath(__DIR__ . '/../../resources/logo.png'),
'name' => 'logo.png',
],
[
'path' => realpath(__DIR__ . '/../../resources/file.png'),
'name' => 'file.png',
],
[
'path' => realpath(__DIR__ . '/../../resources/disk-a/kitten-3.gif'),
'name' => 'kitten-3.gif',
],
[
'path' => realpath(__DIR__ . '/../../resources/disk-a/kitten-1.jpg'),
'name' => 'kitten-1.jpg',
],
];
2022-07-04 01:10:26 +12:00
for ($i = 0; $i < 10; $i++) {
2022-07-04 21:00:07 +12:00
$file = $files[$i % count($files)];
$res = $this->client->call(Client::METHOD_POST, '/storage/buckets/' . $bucketId . '/files', array_merge($this->headers, ['content-type' => 'multipart/form-data']), [
2022-07-04 01:10:26 +12:00
'fileId' => 'unique()',
2022-07-04 21:00:07 +12:00
'file' => new CURLFile($file['path'], '', $file['name']),
2022-07-04 01:10:26 +12:00
]);
$this->assertNotEmpty($res['body']['$id']);
2022-07-04 21:00:07 +12:00
$fileSize = $res['body']['sizeOriginal'];
$storageTotal += $fileSize;
2022-07-04 01:10:26 +12:00
$filesCount++;
2022-07-04 21:00:07 +12:00
$filesCreate++;
2022-07-04 01:10:26 +12:00
$requestsCount++;
2022-07-04 21:00:07 +12:00
$fileId = $res['body']['$id'];
2022-07-04 01:10:26 +12:00
if ($i < 5) {
2022-07-04 21:00:07 +12:00
$res = $this->client->call(Client::METHOD_GET, '/storage/buckets/' . $bucketId . '/files/' . $fileId, $this->headers);
$this->assertEquals($fileId, $res['body']['$id']);
$filesRead++;
$res = $this->client->call(Client::METHOD_DELETE, '/storage/buckets/' . $bucketId . '/files/' . $fileId, $this->headers);
2022-07-04 01:10:26 +12:00
$this->assertEmpty($res['body']);
2022-07-04 21:00:07 +12:00
$filesDelete++;
2022-07-04 01:10:26 +12:00
$requestsCount += 2;
$filesCount--;
2022-07-04 21:00:07 +12:00
$storageTotal -= $fileSize;
2022-07-04 01:10:26 +12:00
}
}
2022-07-04 21:00:07 +12:00
2022-07-04 01:10:26 +12:00
sleep(75);
// console request
$headers = [
'origin' => 'http://localhost',
'x-appwrite-project' => 'console',
'cookie' => 'a_session_console=' . $this->getRoot()['session'],
];
$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']));
2022-07-04 21:00:07 +12:00
$this->assertEquals(30, count($res['storage']));
2022-07-04 01:10:26 +12:00
$this->assertEquals($requestsCount, $res['requests'][array_key_last($res['requests'])]['value']);
2022-07-04 21:00:07 +12:00
$this->assertEquals($storageTotal, $res['storage'][array_key_last($res['storage'])]['value']);
2022-07-03 14:42:13 +12:00
2022-07-04 21:00:07 +12:00
$res = $this->client->call(Client::METHOD_GET, '/storage/usage?range=30d', array_merge($headers, [
2022-07-03 14:42:13 +12:00
'x-appwrite-project' => $this->projectId,
'x-appwrite-mode' => 'admin'
]));
$res = $res['body'];
2022-07-04 21:00:07 +12:00
$this->assertEquals($storageTotal, $res['filesStorage'][array_key_last($res['filesStorage'])]['value']);
$this->assertEquals($bucketsCount, $res['bucketsCount'][array_key_last($res['bucketsCount'])]['value']);
$this->assertEquals($bucketsRead, $res['bucketsRead'][array_key_last($res['bucketsRead'])]['value']);
$this->assertEquals($bucketsCreate, $res['bucketsCreate'][array_key_last($res['bucketsCreate'])]['value']);
$this->assertEquals($bucketsDelete, $res['bucketsDelete'][array_key_last($res['bucketsDelete'])]['value']);
$this->assertEquals($filesCount, $res['filesCount'][array_key_last($res['filesCount'])]['value']);
$this->assertEquals($filesRead, $res['filesRead'][array_key_last($res['filesRead'])]['value']);
$this->assertEquals($filesCreate, $res['filesCreate'][array_key_last($res['filesCreate'])]['value']);
$this->assertEquals($filesDelete, $res['filesDelete'][array_key_last($res['filesDelete'])]['value']);
$res = $this->client->call(Client::METHOD_GET, '/storage/' . $bucketId . '/usage?range=30d', array_merge($headers, [
'x-appwrite-project' => $this->projectId,
'x-appwrite-mode' => 'admin'
]));
$res = $res['body'];
$this->assertEquals($storageTotal, $res['filesStorage'][array_key_last($res['filesStorage'])]['value']);
$this->assertEquals($filesCount, $res['filesCount'][array_key_last($res['filesCount'])]['value']);
$this->assertEquals($filesRead, $res['filesRead'][array_key_last($res['filesRead'])]['value']);
$this->assertEquals($filesCreate, $res['filesCreate'][array_key_last($res['filesCreate'])]['value']);
$this->assertEquals($filesDelete, $res['filesDelete'][array_key_last($res['filesDelete'])]['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
}