2024-01-09 23:26:16 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Feature\KoelPlus;
|
|
|
|
|
|
|
|
use App\Facades\License;
|
|
|
|
use App\Models\Song;
|
|
|
|
use App\Services\Streamers\DirectStreamerInterface;
|
|
|
|
use App\Services\TokenManager;
|
|
|
|
use App\Values\CompositeToken;
|
|
|
|
use Mockery;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
2024-01-11 12:41:33 +00:00
|
|
|
use function Tests\create_user;
|
|
|
|
use function Tests\test_path;
|
|
|
|
|
2024-01-09 23:26:16 +00:00
|
|
|
class SongPlayTest extends TestCase
|
|
|
|
{
|
|
|
|
public function setUp(): void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
License::fakePlusLicense();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPlayPublicUnownedSong(): void
|
|
|
|
{
|
|
|
|
/** @var CompositeToken $token */
|
2024-01-11 12:41:33 +00:00
|
|
|
$token = app(TokenManager::class)->createCompositeToken(create_user());
|
2024-01-09 23:26:16 +00:00
|
|
|
|
|
|
|
/** @var Song $song */
|
|
|
|
$song = Song::factory()->public()->create([
|
|
|
|
'path' => test_path('songs/blank.mp3'),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$mockStreamer = $this->mock(DirectStreamerInterface::class);
|
|
|
|
|
|
|
|
$mockStreamer->shouldReceive('setSong')->with(
|
|
|
|
Mockery::on(static fn (Song $retrievedSong): bool => $retrievedSong->id === $song->id)
|
|
|
|
)->once();
|
|
|
|
|
|
|
|
$mockStreamer->shouldReceive('stream')->once();
|
|
|
|
|
|
|
|
$this->get("play/$song->id?t=$token->audioToken")
|
|
|
|
->assertOk();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPlayPrivateOwnedSong(): void
|
|
|
|
{
|
|
|
|
/** @var Song $song */
|
|
|
|
$song = Song::factory()->private()->create([
|
|
|
|
'path' => test_path('songs/blank.mp3'),
|
|
|
|
]);
|
|
|
|
|
|
|
|
/** @var CompositeToken $token */
|
|
|
|
$token = app(TokenManager::class)->createCompositeToken($song->owner);
|
|
|
|
|
|
|
|
$mockStreamer = $this->mock(DirectStreamerInterface::class);
|
|
|
|
|
|
|
|
$mockStreamer->shouldReceive('setSong')->with(
|
|
|
|
Mockery::on(static fn (Song $retrievedSong): bool => $retrievedSong->id === $song->id)
|
|
|
|
)->once();
|
|
|
|
|
|
|
|
$mockStreamer->shouldReceive('stream')->once();
|
|
|
|
|
|
|
|
$this->get("play/$song->id?t=$token->audioToken")
|
|
|
|
->assertOk();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCannotPlayPrivateUnownedSong(): void
|
|
|
|
{
|
|
|
|
/** @var Song $song */
|
|
|
|
$song = Song::factory()->private()->create([
|
|
|
|
'path' => test_path('songs/blank.mp3'),
|
|
|
|
]);
|
|
|
|
|
|
|
|
/** @var CompositeToken $token */
|
2024-01-11 12:41:33 +00:00
|
|
|
$token = app(TokenManager::class)->createCompositeToken(create_user());
|
2024-01-09 23:26:16 +00:00
|
|
|
|
|
|
|
$this->get("play/$song->id?t=$token->audioToken")
|
|
|
|
->assertForbidden();
|
|
|
|
}
|
|
|
|
}
|