koel/tests/Unit/Services/S3ServiceTest.php

71 lines
2 KiB
PHP
Raw Normal View History

2018-08-29 04:06:17 +00:00
<?php
namespace Tests\Unit\Services;
2018-08-29 04:06:17 +00:00
use App\Models\Song;
use App\Repositories\SongRepository;
use App\Services\Helper;
use App\Services\MediaMetadataService;
2018-08-29 04:06:17 +00:00
use App\Services\S3Service;
use Aws\CommandInterface;
use Aws\S3\S3ClientInterface;
use GuzzleHttp\Psr7\Request;
use Illuminate\Cache\Repository as Cache;
use Mockery;
use Tests\TestCase;
class S3ServiceTest extends TestCase
{
private $s3Client;
private $cache;
private $metadataService;
private $songRepository;
private $helper;
2021-06-05 10:47:56 +00:00
private S3Service $s3Service;
2018-08-29 04:06:17 +00:00
2019-07-22 07:03:23 +00:00
public function setUp(): void
2018-08-29 04:06:17 +00:00
{
parent::setUp();
2018-08-29 04:06:17 +00:00
$this->s3Client = Mockery::mock(S3ClientInterface::class);
$this->cache = Mockery::mock(Cache::class);
$this->metadataService = Mockery::mock(MediaMetadataService::class);
$this->songRepository = Mockery::mock(SongRepository::class);
$this->helper = Mockery::mock(Helper::class);
$this->s3Service = new S3Service(
$this->s3Client,
$this->cache,
$this->metadataService,
$this->songRepository,
$this->helper
);
2018-08-29 04:06:17 +00:00
}
public function testGetSongPublicUrl(): void
{
2021-07-26 21:21:36 +00:00
/** @var Song $song */
$song = Song::factory()->create(['path' => 's3://foo/bar']);
2018-08-29 04:06:17 +00:00
$cmd = Mockery::mock(CommandInterface::class);
$this->s3Client->shouldReceive('getCommand')
->with('GetObject', [
'Bucket' => 'foo',
'Key' => 'bar',
])
->andReturn($cmd);
$request = Mockery::mock(Request::class, ['getUri' => 'https://aws.com/foo.mp3']);
$this->s3Client->shouldReceive('createPresignedRequest')
->with($cmd, '+1 hour')
->andReturn($request);
$this->cache->shouldReceive('remember')
->once()
->andReturn('https://aws.com/foo.mp3');
self::assertSame('https://aws.com/foo.mp3', $this->s3Service->getSongPublicUrl($song));
}
}