1
0
Fork 0
mirror of synced 2024-07-05 14:40:42 +12:00
appwrite/tests/unit/Realtime/RealtimeChannelsTest.php

317 lines
9.5 KiB
PHP
Raw Normal View History

2021-02-27 05:01:37 +13:00
<?php
namespace Appwrite\Tests;
use Appwrite\Database\Document;
use Appwrite\Realtime\Realtime;
use PHPUnit\Framework\TestCase;
class RealtimeChannelsTest extends TestCase
{
/**
* Configures how many Connections the Test should Mock.
*/
public $connectionsPerChannel = 10;
public $connections = [];
public $subscriptions = [];
public $connectionsCount = 0;
public $connectionsAuthenticated = 0;
public $connectionsGuest = 0;
public $connectionsTotal = 0;
public $allChannels = [
'files',
'files.1',
'collections',
'collections.1',
'collections.1.documents',
'collections.2',
'collections.2.documents',
'documents',
'documents.1',
'documents.2',
];
public function setUp(): void
{
/**
* Setup global Counts
*/
$this->connectionsAuthenticated = count($this->allChannels) * $this->connectionsPerChannel;
$this->connectionsGuest = count($this->allChannels) * $this->connectionsPerChannel;
$this->connectionsTotal = $this->connectionsAuthenticated + $this->connectionsGuest;
/**
2021-02-27 05:07:53 +13:00
* Add Authenticated Clients
2021-02-27 05:01:37 +13:00
*/
for ($i = 0; $i < $this->connectionsPerChannel; $i++) {
foreach ($this->allChannels as $index => $channel) {
Realtime::setUser(new Document([
'$id' => 'user' . $this->connectionsCount,
'memberships' => [
[
'teamId' => 'team' . $i,
'roles' => [
empty($index % 2) ? 'admin' : 'member'
]
]
]
]));
2021-03-02 00:28:13 +13:00
Realtime::subscribe(
2021-02-27 05:01:37 +13:00
'1',
$this->connectionsCount,
2021-02-27 06:26:22 +13:00
Realtime::getRoles(),
2021-02-27 05:01:37 +13:00
$this->subscriptions,
$this->connections,
Realtime::parseChannels([0 => $channel])
);
$this->connectionsCount++;
}
}
/**
2021-02-27 05:07:53 +13:00
* Add Guest Clients
2021-02-27 05:01:37 +13:00
*/
for ($i = 0; $i < $this->connectionsPerChannel; $i++) {
foreach ($this->allChannels as $index => $channel) {
Realtime::setUser(new Document([
'$id' => ''
]));
2021-03-02 00:28:13 +13:00
Realtime::subscribe(
2021-02-27 05:01:37 +13:00
'1',
$this->connectionsCount,
2021-02-27 06:26:22 +13:00
Realtime::getRoles(),
2021-02-27 05:01:37 +13:00
$this->subscriptions,
$this->connections,
Realtime::parseChannels([0 => $channel])
);
$this->connectionsCount++;
}
}
}
public function tearDown(): void
{
$this->connections = [];
$this->subscriptions = [];
$this->connectionsCount = 0;
}
public function testSubscriptions()
{
/**
* Check for 1 project.
*/
$this->assertCount(1, $this->subscriptions);
/**
2021-02-27 05:07:53 +13:00
* Check for correct amount of subscriptions:
2021-02-27 05:01:37 +13:00
* - XXX users
2021-02-27 05:09:47 +13:00
* - XXX teams
* - XXX team roles (2 roles per team)
2021-02-27 05:01:37 +13:00
* - 1 role:guest
* - 1 role:member
*/
$this->assertCount(($this->connectionsAuthenticated + (3 * $this->connectionsPerChannel) + 2), $this->subscriptions['1']);
2021-02-27 05:01:37 +13:00
/**
2021-02-27 05:07:53 +13:00
* Check for connections
* - Authenticated
* - Guests
2021-02-27 05:01:37 +13:00
*/
$this->assertCount($this->connectionsTotal, $this->connections);
2021-02-27 06:26:22 +13:00
2021-03-02 00:28:13 +13:00
Realtime::unsubscribe(-1, $this->subscriptions, $this->connections);
2021-02-27 06:26:22 +13:00
$this->assertCount($this->connectionsTotal, $this->connections);
$this->assertCount(($this->connectionsAuthenticated + (3 * $this->connectionsPerChannel) + 2), $this->subscriptions['1']);
2021-02-27 06:26:22 +13:00
for ($i = 0; $i < $this->connectionsCount; $i++) {
2021-03-02 00:28:13 +13:00
Realtime::unsubscribe($i, $this->subscriptions, $this->connections);
2021-02-27 06:26:22 +13:00
$this->assertCount(($this->connectionsCount - $i - 1), $this->connections);
}
$this->assertEmpty($this->connections);
$this->assertEmpty($this->subscriptions);
2021-02-27 05:01:37 +13:00
}
/**
* Tests Wildcard (*) Permissions on every channel.
*/
public function testWildcardPermission()
{
foreach ($this->allChannels as $index => $channel) {
$event = [
'project' => '1',
'permissions' => ['*'],
'data' => [
'channels' => [
0 => $channel,
]
]
];
$receivers = Realtime::identifyReceivers(
$event,
$this->subscriptions
);
/**
* Every Client subscribed to the Wildcard should receive this event.
*/
$this->assertCount($this->connectionsTotal / count($this->allChannels), $receivers, $channel);
foreach ($receivers as $receiver) {
/**
* Making sure the right clients receive the event.
*/
$this->assertStringEndsWith($index, $receiver);
}
}
}
public function testRolePermissions()
{
$roles = ['role:guest', 'role:member'];
foreach ($this->allChannels as $index => $channel) {
foreach ($roles as $role) {
$permissions = [$role];
$event = [
'project' => '1',
'permissions' => $permissions,
'data' => [
'channels' => [
0 => $channel,
]
]
];
$receivers = Realtime::identifyReceivers(
$event,
$this->subscriptions
);
/**
* Every Role subscribed to a Channel should receive this event.
*/
$this->assertCount($this->connectionsPerChannel, $receivers, $channel);
foreach ($receivers as $receiver) {
/**
* Making sure the right clients receive the event.
*/
$this->assertStringEndsWith($index, $receiver);
}
}
}
}
public function testUserPermissions()
{
foreach ($this->allChannels as $index => $channel) {
$permissions = [];
for ($i = 0; $i < $this->connectionsPerChannel; $i++) {
$permissions[] = 'user:user' . (!empty($i) ? $i : '') . $index;
}
$event = [
'project' => '1',
'permissions' => $permissions,
'data' => [
'channels' => [
0 => $channel,
]
]
];
$receivers = Realtime::identifyReceivers(
$event,
$this->subscriptions
);
/**
* Every Client subscribed to a Channel should receive this event.
*/
$this->assertCount($this->connectionsAuthenticated / count($this->allChannels), $receivers, $channel);
foreach ($receivers as $receiver) {
/**
* Making sure the right clients receive the event.
*/
$this->assertStringEndsWith($index, $receiver);
}
}
}
public function testTeamPermissions()
{
foreach ($this->allChannels as $index => $channel) {
$permissions = [];
for ($i = 0; $i < $this->connectionsPerChannel; $i++) {
$permissions[] = 'team:team' . $i;
}
$event = [
'project' => '1',
'permissions' => $permissions,
'data' => [
'channels' => [
0 => $channel,
]
]
];
$receivers = Realtime::identifyReceivers(
$event,
$this->subscriptions
);
/**
* Every Team Member should receive this event.
*/
$this->assertCount($this->connectionsAuthenticated / count($this->allChannels), $receivers, $channel);
foreach ($receivers as $receiver) {
/**
* Making sure the right clients receive the event.
*/
$this->assertStringEndsWith($index, $receiver);
}
$permissions = ['team:team' . $index . '/' . (empty($index % 2) ? 'admin' : 'member')];
$event = [
'project' => '1',
'permissions' => $permissions,
'data' => [
'channels' => [
0 => $channel,
]
]
];
$receivers = Realtime::identifyReceivers(
$event,
$this->subscriptions
);
/**
* Only 1 Team Member of a role should have access to a specific channel.
*/
$this->assertCount(1, $receivers, $channel);
foreach ($receivers as $receiver) {
/**
* Making sure the right clients receive the event.
*/
$this->assertStringEndsWith($index, $receiver);
}
}
}
}