laravel-websockets/tests/PresenceChannelTest.php

459 lines
16 KiB
PHP
Raw Normal View History

2020-09-10 19:59:26 +00:00
<?php
namespace BeyondCode\LaravelWebSockets\Test;
use BeyondCode\LaravelWebSockets\Server\Exceptions\InvalidSignature;
2020-09-18 09:53:36 +00:00
use Carbon\Carbon;
use Ratchet\ConnectionInterface;
2020-09-10 19:59:26 +00:00
class PresenceChannelTest extends TestCase
{
public function test_connect_to_presence_channel_with_invalid_signature()
{
$this->expectException(InvalidSignature::class);
$connection = $this->newConnection();
$message = new Mocks\Message([
'event' => 'pusher:subscribe',
'data' => [
'auth' => 'invalid',
'channel' => 'presence-channel',
],
]);
$this->pusherServer->onOpen($connection);
$this->pusherServer->onMessage($connection, $message);
}
public function test_connect_to_presence_channel_with_valid_signature()
{
$connection = $this->newConnection();
$this->pusherServer->onOpen($connection);
$user = [
'user_id' => 1,
'user_info' => [
'name' => 'Rick',
],
];
$encodedUser = json_encode($user);
$message = new Mocks\SignedMessage([
2020-09-10 19:59:26 +00:00
'event' => 'pusher:subscribe',
'data' => [
'channel' => 'presence-channel',
'channel_data' => $encodedUser,
2020-09-10 19:59:26 +00:00
],
], $connection, 'presence-channel', $encodedUser);
2020-09-10 19:59:26 +00:00
$this->pusherServer->onMessage($connection, $message);
$connection->assertSentEvent('pusher_internal:subscription_succeeded', [
'channel' => 'presence-channel',
]);
$this->channelManager
->getGlobalConnectionsCount('1234', 'presence-channel')
->then(function ($total) {
$this->assertEquals(1, $total);
});
}
2020-09-16 08:02:58 +00:00
public function test_connect_to_presence_channel_when_user_with_same_ids_is_already_joined()
{
$rick = $this->newPresenceConnection('presence-channel', ['user_id' => 1]);
$morty = $this->newPresenceConnection('presence-channel', ['user_id' => 2]);
$pickleRick = $this->newPresenceConnection('presence-channel', ['user_id' => 1]);
foreach ([$rick, $morty, $pickleRick] as $connection) {
$connection->assertSentEvent('pusher_internal:subscription_succeeded', [
'channel' => 'presence-channel',
]);
}
2020-09-17 08:30:36 +00:00
$rick->assertSentEvent('pusher_internal:subscription_succeeded', [
'channel' => 'presence-channel',
'data' => json_encode([
'presence' => [
'ids' => ['1'],
'hash' => ['1' => []],
'count' => 1,
],
]),
]);
$morty->assertSentEvent('pusher_internal:subscription_succeeded', [
'channel' => 'presence-channel',
'data' => json_encode([
'presence' => [
'ids' => ['1', '2'],
'hash' => ['1' => [], '2' => []],
'count' => 2,
],
]),
]);
// The duplicated-user_id connection should get basically the list of ids
// without dealing with duplicate user ids.
$pickleRick->assertSentEvent('pusher_internal:subscription_succeeded', [
'channel' => 'presence-channel',
'data' => json_encode([
'presence' => [
'ids' => ['1', '2'],
'hash' => ['1' => [], '2' => []],
'count' => 2,
],
]),
]);
2020-09-16 08:02:58 +00:00
$this->channelManager
->getGlobalConnectionsCount('1234', 'presence-channel')
->then(function ($total) {
$this->assertEquals(3, $total);
});
$this->channelManager
->getChannelMembers('1234', 'presence-channel')
->then(function ($members) {
$this->assertCount(2, $members);
});
}
2020-09-10 19:59:26 +00:00
public function test_presence_channel_broadcast_member_events()
{
$rick = $this->newPresenceConnection('presence-channel', ['user_id' => 1]);
$morty = $this->newPresenceConnection('presence-channel', ['user_id' => 2]);
$rick->assertSentEvent('pusher_internal:member_added', [
'channel' => 'presence-channel',
'data' => json_encode(['user_id' => 2]),
]);
$this->channelManager
->getChannelMembers('1234', 'presence-channel')
->then(function ($members) {
$this->assertCount(2, $members);
});
$this->pusherServer->onClose($morty);
$rick->assertSentEvent('pusher_internal:member_removed', [
'channel' => 'presence-channel',
'data' => json_encode(['user_id' => 2]),
]);
$this->channelManager
->getGlobalConnectionsCount('1234', 'presence-channel')
->then(function ($total) {
$this->assertEquals(1, $total);
});
$this->channelManager
->getChannelMembers('1234', 'presence-channel')
2020-09-17 11:18:15 +00:00
->then(function ($members) use ($rick) {
2020-09-10 19:59:26 +00:00
$this->assertCount(1, $members);
2020-09-17 11:18:15 +00:00
$this->assertEquals(1, $members[$rick->socketId]->user_id);
2020-09-10 19:59:26 +00:00
});
}
public function test_unsubscribe_from_presence_channel()
{
$connection = $this->newPresenceConnection('presence-channel', ['user_id' => 1]);
$this->channelManager
->getGlobalConnectionsCount('1234', 'presence-channel')
->then(function ($total) {
$this->assertEquals(1, $total);
});
$message = new Mocks\Message([
'event' => 'pusher:unsubscribe',
'data' => [
'channel' => 'presence-channel',
],
]);
$this->pusherServer->onMessage($connection, $message);
$this->channelManager
->getGlobalConnectionsCount('1234', 'presence-channel')
->then(function ($total) {
$this->assertEquals(0, $total);
});
}
public function test_can_whisper_to_private_channel()
{
$this->app['config']->set('websockets.apps.0.enable_client_messages', true);
$rick = $this->newPresenceConnection('presence-channel', ['user_id' => 1]);
$morty = $this->newPresenceConnection('presence-channel', ['user_id' => 2]);
$message = new Mocks\Message([
'event' => 'client-test-whisper',
'data' => [],
'channel' => 'presence-channel',
]);
$this->pusherServer->onMessage($rick, $message);
$rick->assertNotSentEvent('client-test-whisper');
$morty->assertSentEvent('client-test-whisper', ['data' => [], 'channel' => 'presence-channel']);
}
public function test_cannot_whisper_to_public_channel_if_having_whispering_disabled()
{
$rick = $this->newPresenceConnection('presence-channel', ['user_id' => 1]);
$morty = $this->newPresenceConnection('presence-channel', ['user_id' => 2]);
$message = new Mocks\Message([
'event' => 'client-test-whisper',
'data' => [],
'channel' => 'presence-channel',
]);
$this->pusherServer->onMessage($rick, $message);
$rick->assertNotSentEvent('client-test-whisper');
$morty->assertNotSentEvent('client-test-whisper');
}
public function test_statistics_get_collected_for_presenece_channels()
{
$rick = $this->newPresenceConnection('presence-channel', ['user_id' => 1]);
$morty = $this->newPresenceConnection('presence-channel', ['user_id' => 2]);
$this->statisticsCollector
->getStatistics()
->then(function ($statistics) {
$this->assertCount(1, $statistics);
});
$this->statisticsCollector
->getAppStatistics('1234')
->then(function ($statistic) {
$this->assertEquals([
'peak_connections_count' => 2,
'websocket_messages_count' => 2,
'api_messages_count' => 0,
'app_id' => '1234',
], $statistic->toArray());
});
}
public function test_local_connections_for_presence_channels()
{
$this->newPresenceConnection('presence-channel', ['user_id' => 1]);
$this->newPresenceConnection('presence-channel-2', ['user_id' => 2]);
$this->channelManager
->getLocalConnections()
->then(function ($connections) {
$this->assertCount(2, $connections);
foreach ($connections as $connection) {
$this->assertInstanceOf(
ConnectionInterface::class, $connection
);
}
});
}
2020-09-16 08:02:58 +00:00
public function test_multiple_clients_with_same_user_id_trigger_member_added_and_removed_event_only_on_first_and_last_socket_connection()
{
// Connect the `observer` user to the server
$observerConnection = $this->newPresenceConnection('presence-channel', ['user_id' => 'observer']);
// Connect the first socket for user `1` to the server
$firstConnection = $this->newPresenceConnection('presence-channel', ['user_id' => '1']);
// Make sure the observer sees a `member_added` event for `user:1`
$observerConnection->assertSentEvent('pusher_internal:member_added', [
'event' => 'pusher_internal:member_added',
'channel' => 'presence-channel',
'data' => json_encode(['user_id' => '1']),
])->resetEvents();
// Connect the second socket for user `1` to the server
$secondConnection = $this->newPresenceConnection('presence-channel', ['user_id' => '1']);
// Make sure the observer was not notified of a `member_added` event (user was already connected)
$observerConnection->assertNotSentEvent('pusher_internal:member_added');
// Disconnect the first socket for user `1` on the server
$this->pusherServer->onClose($firstConnection);
// Make sure the observer was not notified of a `member_removed` event (user still connected on another socket)
$observerConnection->assertNotSentEvent('pusher_internal:member_removed');
// Disconnect the second (and last) socket for user `1` on the server
$this->pusherServer->onClose($secondConnection);
// Make sure the observer was notified of a `member_removed` event (last socket for user was disconnected)
$observerConnection->assertSentEvent('pusher_internal:member_removed');
$this->channelManager
->getMemberSockets('1', '1234', 'presence-channel')
->then(function ($sockets) {
$this->assertCount(0, $sockets);
});
$this->channelManager
->getMemberSockets('2', '1234', 'presence-channel')
->then(function ($sockets) {
$this->assertCount(0, $sockets);
});
$this->channelManager
->getMemberSockets('observer', '1234', 'presence-channel')
->then(function ($sockets) {
$this->assertCount(1, $sockets);
});
}
2020-09-18 09:53:36 +00:00
public function test_not_ponged_connections_do_get_removed_for_presence_channels()
{
$this->runOnlyOnRedisReplication();
$activeConnection = $this->newPresenceConnection('presence-channel', ['user_id' => 1]);
$obsoleteConnection = $this->newPresenceConnection('presence-channel', ['user_id' => 2]);
// The active connection just pinged, it should not be closed.
$this->channelManager->addConnectionToSet($activeConnection, Carbon::now());
// Make the connection look like it was lost 1 day ago.
$this->channelManager->addConnectionToSet($obsoleteConnection, Carbon::now()->subDays(1));
$this->channelManager
->getGlobalConnectionsCount('1234', 'presence-channel')
->then(function ($count) {
$this->assertEquals(2, $count);
});
$this->channelManager
->getConnectionsFromSet(0, Carbon::now()->subMinutes(2)->format('U'))
->then(function ($expiredConnections) {
$this->assertCount(1, $expiredConnections);
});
$this->channelManager
->getChannelMembers('1234', 'presence-channel')
->then(function ($members) {
$this->assertCount(2, $members);
});
$this->channelManager->removeObsoleteConnections();
$this->channelManager
->getGlobalConnectionsCount('1234', 'presence-channel')
->then(function ($count) {
$this->assertEquals(1, $count);
});
$this->channelManager
->getConnectionsFromSet(0, Carbon::now()->subMinutes(2)->format('U'))
->then(function ($expiredConnections) {
$this->assertCount(0, $expiredConnections);
});
$this->channelManager
->getChannelMembers('1234', 'presence-channel')
->then(function ($members) {
$this->assertCount(1, $members);
});
}
public function test_events_are_processed_by_on_message_on_presence_channels()
{
$this->runOnlyOnRedisReplication();
$user = [
'user_id' => 1,
'user_info' => [
'name' => 'Rick',
],
];
$connection = $this->newPresenceConnection('presence-channel', $user);
$encodedUser = json_encode($user);
$message = new Mocks\SignedMessage([
'appId' => '1234',
'serverId' => 'different_server_id',
'event' => 'some-event',
'data' => [
'channel' => 'presence-channel',
'channel_data' => $encodedUser,
'test' => 'yes',
],
], $connection, 'presence-channel', $encodedUser);
$this->channelManager->onMessage(
$this->channelManager->getRedisKey('1234', 'presence-channel'),
$message->getPayload()
);
// The message does not contain appId and serverId anymore.
$message = new Mocks\SignedMessage([
'event' => 'some-event',
'data' => [
'channel' => 'presence-channel',
'channel_data' => $encodedUser,
'test' => 'yes',
],
], $connection, 'presence-channel', $encodedUser);
$connection->assertSentEvent('some-event', $message->getPayloadAsArray());
}
public function test_events_get_replicated_across_connections_for_presence_channels()
{
$this->runOnlyOnRedisReplication();
$connection = $this->newPresenceConnection('presence-channel');
$receiver = $this->newPresenceConnection('presence-channel', ['user_id' => 2]);
$user = [
'user_id' => 1,
'user_info' => [
'name' => 'Rick',
],
];
$encodedUser = json_encode($user);
$message = new Mocks\SignedMessage([
'appId' => '1234',
'serverId' => $this->channelManager->getServerId(),
'event' => 'some-event',
'data' => [
'channel' => 'presence-channel',
'channel_data' => $encodedUser,
'test' => 'yes',
],
'socketId' => $connection->socketId,
], $connection, 'presence-channel', $encodedUser);
$channel = $this->channelManager->find('1234', 'presence-channel');
$channel->broadcastToEveryoneExcept(
$message->getPayloadAsObject(), $connection->socketId, '1234', true
);
$receiver->assertSentEvent('some-event', $message->getPayloadAsArray());
$this->getSubscribeClient()
->assertNothingDispatched();
$this->getPublishClient()
->assertCalledWithArgs('publish', [
$this->channelManager->getRedisKey('1234', 'presence-channel'),
$message->getPayload(),
]);
}
2020-09-10 19:59:26 +00:00
}