118 lines
3.9 KiB
PHP
118 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace BeyondCode\LaravelWebSockets\Test;
|
|
|
|
use BeyondCode\LaravelWebSockets\API\FetchUsers;
|
|
use GuzzleHttp\Psr7\Request;
|
|
use Pusher\Pusher;
|
|
|
|
class FetchUsersTest extends TestCase
|
|
{
|
|
public function test_invalid_signatures_can_not_access_the_api()
|
|
{
|
|
$this->startServer();
|
|
|
|
$requestPath = '/apps/1234/channels/my-channel/users';
|
|
|
|
$queryString = http_build_query(Pusher::build_auth_query_params(
|
|
'TestKey', 'InvalidSecret', 'GET', $requestPath
|
|
));
|
|
|
|
$response = $this->await($this->browser->get('http://localhost:4000'."{$requestPath}?{$queryString}"));
|
|
|
|
$this->assertSame(401, $response->getStatusCode());
|
|
$this->assertSame('{"error":"Invalid auth signature provided."}', $response->getBody()->getContents());
|
|
}
|
|
|
|
public function test_it_only_returns_data_for_presence_channels()
|
|
{
|
|
$this->startServer();
|
|
|
|
$requestPath = '/apps/1234/channels/my-channel/users';
|
|
|
|
$queryString = http_build_query(Pusher::build_auth_query_params(
|
|
'TestKey', 'TestSecret', 'GET', $requestPath
|
|
));
|
|
|
|
$response = $this->await($this->browser->get('http://localhost:4000'."{$requestPath}?{$queryString}"));
|
|
|
|
$this->assertSame(400, $response->getStatusCode());
|
|
$this->assertSame('{"error":"Invalid presence channel `my-channel`"}', $response->getBody()->getContents());
|
|
}
|
|
|
|
public function test_it_returns_400_for_invalid_channels()
|
|
{
|
|
$this->startServer();
|
|
|
|
$requestPath = '/apps/1234/channels/invalid-channel/users';
|
|
|
|
$queryString = http_build_query(Pusher::build_auth_query_params(
|
|
'TestKey', 'TestSecret', 'GET', $requestPath
|
|
));
|
|
|
|
$response = $this->await($this->browser->get('http://localhost:4000'."{$requestPath}?{$queryString}"));
|
|
|
|
$this->assertSame(400, $response->getStatusCode());
|
|
$this->assertSame('{"error":"Invalid presence channel `invalid-channel`"}', $response->getBody()->getContents());
|
|
}
|
|
|
|
public function test_it_returns_connected_user_information()
|
|
{
|
|
$this->newPresenceConnection('presence-channel');
|
|
|
|
$connection = new Mocks\Connection;
|
|
|
|
$requestPath = '/apps/1234/channel/presence-channel/users';
|
|
|
|
$routeParams = [
|
|
'appId' => '1234',
|
|
'channelName' => 'presence-channel',
|
|
];
|
|
|
|
$queryString = http_build_query(Pusher::build_auth_query_params('TestKey', 'TestSecret', 'GET', $requestPath));
|
|
|
|
$request = new Request('GET', "{$requestPath}?{$queryString}&".http_build_query($routeParams));
|
|
|
|
$controller = app(FetchUsers::class);
|
|
|
|
$controller->onOpen($connection, $request);
|
|
|
|
/** @var \Illuminate\Http\JsonResponse $response */
|
|
$response = array_pop($connection->sentRawData);
|
|
|
|
$this->assertSame([
|
|
'users' => [['id' => 1]],
|
|
], json_decode($response->getContent(), true));
|
|
}
|
|
|
|
public function test_multiple_clients_with_same_id_gets_counted_once()
|
|
{
|
|
$rick = $this->newPresenceConnection('presence-channel', ['user_id' => 1]);
|
|
$morty = $this->newPresenceConnection('presence-channel', ['user_id' => 1]);
|
|
|
|
$connection = new Mocks\Connection;
|
|
|
|
$requestPath = '/apps/1234/channel/presence-channel/users';
|
|
|
|
$routeParams = [
|
|
'appId' => '1234',
|
|
'channelName' => 'presence-channel',
|
|
];
|
|
|
|
$queryString = http_build_query(Pusher::build_auth_query_params('TestKey', 'TestSecret', 'GET', $requestPath));
|
|
|
|
$request = new Request('GET', "{$requestPath}?{$queryString}&".http_build_query($routeParams));
|
|
|
|
$controller = app(FetchUsers::class);
|
|
|
|
$controller->onOpen($connection, $request);
|
|
|
|
/** @var \Illuminate\Http\JsonResponse $response */
|
|
$response = array_pop($connection->sentRawData);
|
|
|
|
$this->assertSame([
|
|
'users' => [['id' => 1]],
|
|
], json_decode($response->getContent(), true));
|
|
}
|
|
}
|