koel/tests/Integration/Models/SongZipArchiveTest.php
2020-09-06 20:21:39 +02:00

44 lines
1.3 KiB
PHP

<?php
namespace Tests\Integration\Models;
use App\Models\Song;
use App\Models\SongZipArchive;
use Tests\TestCase;
class SongZipArchiveTest extends TestCase
{
/** @test */
public function a_song_can_be_added_into_an_archive()
{
$song = factory(Song::class)->create([
'path' => realpath(__DIR__.'/../../songs/full.mp3'),
]);
$songZipArchive = new SongZipArchive();
$songZipArchive->addSong($song);
self::assertEquals(1, $songZipArchive->getArchive()->numFiles);
self::assertEquals('full.mp3', $songZipArchive->getArchive()->getNameIndex(0));
}
/** @test */
public function multiple_songs_can_be_added_into_an_archive()
{
$songs = collect([
factory(Song::class)->create([
'path' => realpath(__DIR__.'/../../songs/full.mp3'),
]),
factory(Song::class)->create([
'path' => realpath(__DIR__.'/../../songs/lorem.mp3'),
]),
]);
$songZipArchive = new SongZipArchive();
$songZipArchive->addSongs($songs);
self::assertEquals(2, $songZipArchive->getArchive()->numFiles);
self::assertEquals('full.mp3', $songZipArchive->getArchive()->getNameIndex(0));
self::assertEquals('lorem.mp3', $songZipArchive->getArchive()->getNameIndex(1));
}
}