implement powerful viewer count system
This commit is contained in:
@@ -5,6 +5,7 @@ namespace Tests\Feature;
|
||||
use App\Models\Broadcast;
|
||||
use App\Models\Channel;
|
||||
use App\Models\User;
|
||||
use App\Services\Streaming\ViewerCountStore;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Inertia\Testing\AssertableInertia as Assert;
|
||||
use Tests\TestCase;
|
||||
@@ -70,6 +71,65 @@ class ViewerInteractionTest extends TestCase
|
||||
])->assertRedirect(route('login'));
|
||||
}
|
||||
|
||||
public function test_channel_page_exposes_cached_viewer_stats(): void
|
||||
{
|
||||
config(['streaming.viewer_count_cache_store' => 'array']);
|
||||
|
||||
$channel = Channel::factory()->create([
|
||||
'slug' => 'demo',
|
||||
'is_live' => true,
|
||||
'viewer_count' => 1,
|
||||
]);
|
||||
$broadcast = Broadcast::factory()->for($channel)->live()->create(['viewer_peak' => 4]);
|
||||
$channel->forceFill(['live_broadcast_id' => $broadcast->id])->save();
|
||||
|
||||
app(ViewerCountStore::class)->put($channel, 6);
|
||||
|
||||
$this->get(route('channels.show', $channel))
|
||||
->assertOk()
|
||||
->assertInertia(fn (Assert $page) => $page
|
||||
->component('channels/show')
|
||||
->where('channel.viewer_count', 6)
|
||||
->where('viewerStats.current', 6)
|
||||
->where('viewerStats.peak', 6),
|
||||
);
|
||||
}
|
||||
|
||||
public function test_live_channel_page_signs_playback_url_for_guest_visitors(): void
|
||||
{
|
||||
$channel = Channel::factory()->create(['slug' => 'demo', 'is_live' => true]);
|
||||
$broadcast = Broadcast::factory()->for($channel)->live()->create([
|
||||
'hls_url' => 'http://localhost:8888/demo/index.m3u8',
|
||||
]);
|
||||
$channel->forceFill(['live_broadcast_id' => $broadcast->id])->save();
|
||||
|
||||
$this->get(route('channels.show', $channel))
|
||||
->assertOk()
|
||||
->assertCookie('nyone_visitor_id')
|
||||
->assertInertia(fn (Assert $page) => $page
|
||||
->component('channels/show')
|
||||
->where('currentBroadcast.hls_url', fn (string $url): bool => $this->playbackUrlHasSignedViewer($url, 'g:')),
|
||||
);
|
||||
}
|
||||
|
||||
public function test_live_channel_page_signs_playback_url_for_authenticated_users(): void
|
||||
{
|
||||
$viewer = User::factory()->create();
|
||||
$channel = Channel::factory()->create(['slug' => 'demo', 'is_live' => true]);
|
||||
$broadcast = Broadcast::factory()->for($channel)->live()->create([
|
||||
'hls_url' => 'http://localhost:8888/demo/index.m3u8',
|
||||
]);
|
||||
$channel->forceFill(['live_broadcast_id' => $broadcast->id])->save();
|
||||
|
||||
$this->actingAs($viewer)
|
||||
->get(route('channels.show', $channel))
|
||||
->assertOk()
|
||||
->assertInertia(fn (Assert $page) => $page
|
||||
->component('channels/show')
|
||||
->where('currentBroadcast.hls_url', fn (string $url): bool => $this->playbackUrlHasSignedViewer($url, 'u:')),
|
||||
);
|
||||
}
|
||||
|
||||
public function test_channel_page_exposes_display_media_props(): void
|
||||
{
|
||||
$channel = Channel::factory()->create([
|
||||
@@ -88,4 +148,14 @@ class ViewerInteractionTest extends TestCase
|
||||
->where('channel.thumbnail_url', '/storage/channels/demo/thumb.jpg'),
|
||||
);
|
||||
}
|
||||
|
||||
private function playbackUrlHasSignedViewer(string $url, string $prefix): bool
|
||||
{
|
||||
parse_str((string) parse_url($url, PHP_URL_QUERY), $parameters);
|
||||
|
||||
return str_starts_with((string) ($parameters['viewer'] ?? ''), $prefix)
|
||||
&& is_numeric($parameters['viewer_expires'] ?? null)
|
||||
&& is_string($parameters['viewer_signature'] ?? null)
|
||||
&& strlen((string) $parameters['viewer_signature']) === 64;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user