2017-12-09 22:39:34 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Integration\Models;
|
|
|
|
|
|
|
|
use App\Models\Song;
|
|
|
|
use App\Models\SongZipArchive;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
class SongZipArchiveTest extends TestCase
|
|
|
|
{
|
2020-11-14 16:57:25 +00:00
|
|
|
public function testAddSongIntoArchive(): void
|
2017-12-10 00:23:37 +00:00
|
|
|
{
|
2021-07-26 21:21:36 +00:00
|
|
|
/** @var Song $song */
|
2020-12-22 20:11:22 +00:00
|
|
|
$song = Song::factory()->create(['path' => realpath(__DIR__ . '/../../songs/full.mp3')]);
|
2017-12-10 00:23:37 +00:00
|
|
|
|
2019-06-30 10:49:41 +00:00
|
|
|
$songZipArchive = new SongZipArchive();
|
|
|
|
$songZipArchive->addSong($song);
|
2017-12-10 00:23:37 +00:00
|
|
|
|
2020-09-06 18:21:39 +00:00
|
|
|
self::assertEquals(1, $songZipArchive->getArchive()->numFiles);
|
|
|
|
self::assertEquals('full.mp3', $songZipArchive->getArchive()->getNameIndex(0));
|
2017-12-10 00:23:37 +00:00
|
|
|
}
|
|
|
|
|
2020-11-14 16:57:25 +00:00
|
|
|
public function testAddMultipleSongsIntoArchive(): void
|
2017-12-10 00:23:37 +00:00
|
|
|
{
|
|
|
|
$songs = collect([
|
2020-12-22 20:11:22 +00:00
|
|
|
Song::factory()->create(['path' => realpath(__DIR__ . '/../../songs/full.mp3')]),
|
|
|
|
Song::factory()->create(['path' => realpath(__DIR__ . '/../../songs/lorem.mp3')]),
|
2017-12-10 00:23:37 +00:00
|
|
|
]);
|
|
|
|
|
2019-06-30 10:49:41 +00:00
|
|
|
$songZipArchive = new SongZipArchive();
|
|
|
|
$songZipArchive->addSongs($songs);
|
2017-12-10 00:23:37 +00:00
|
|
|
|
2020-09-06 18:21:39 +00:00
|
|
|
self::assertEquals(2, $songZipArchive->getArchive()->numFiles);
|
|
|
|
self::assertEquals('full.mp3', $songZipArchive->getArchive()->getNameIndex(0));
|
|
|
|
self::assertEquals('lorem.mp3', $songZipArchive->getArchive()->getNameIndex(1));
|
2017-12-10 00:23:37 +00:00
|
|
|
}
|
2017-12-09 22:39:34 +00:00
|
|
|
}
|