expectsEvents(LibraryChanged::class); $media = new Media(); $media->sync($this->mediaPath); // Standard mp3 files under root path should be recognized $this->seeInDatabase('songs', ['path' => $this->mediaPath.'/full.mp3']); // Ogg files and audio files in subdirectories should be recognized $this->seeInDatabase('songs', ['path' => $this->mediaPath.'/subdir/back-in-black.ogg']); // File search shouldn't be case-sensitive. $this->seeInDatabase('songs', ['path' => $this->mediaPath.'/subdir/no-name.MP3']); // Non-audio files shouldn't be recognized $this->notSeeInDatabase('songs', ['path' => $this->mediaPath.'/rubbish.log']); // Broken/corrupted audio files shouldn't be recognized $this->notSeeInDatabase('songs', ['path' => $this->mediaPath.'/fake.mp3']); // Artists should be created $this->seeInDatabase('artists', ['name' => 'Cuckoo']); $this->seeInDatabase('artists', ['name' => 'Koel']); // Albums should be created $this->seeInDatabase('albums', ['name' => 'Koel Testing Vol. 1']); // Albums and artists should be correctly linked $album = Album::whereName('Koel Testing Vol. 1')->first(); $this->assertEquals('Koel', $album->artist->name); $currentCover = $album->cover; $song = Song::orderBy('id', 'desc')->first(); // Modified file should be recognized touch($song->path, $time = time()); $media->sync($this->mediaPath); $song = Song::find($song->id); $this->assertEquals($time, $song->mtime); // Albums with a non-default cover should have their covers overwritten $this->assertEquals($currentCover, Album::find($album->id)->cover); } public function testWatchSingleFileAdded() { $path = $this->mediaPath.'/blank.mp3'; $record = m::mock(FSWatchRecord::class, [ 'isDeleted' => false, 'getPath' => $path, 'isFile' => true, ], ["$path IsFile"]); (new Media())->syncFSWatchRecord($record); $this->seeInDatabase('songs', ['path' => $path]); } public function testWatchSingleFileDeleted() { $this->expectsEvents(LibraryChanged::class); $this->createSampleMediaSet(); $song = Song::orderBy('id', 'desc')->first(); $record = m::mock(FSWatchRecord::class, [ 'isDeleted' => true, 'getPath' => $song->path, 'isFile' => true, ], ["{$song->path} IsFile"]); (new Media())->syncFSWatchRecord($record); $this->notSeeInDatabase('songs', ['id' => $song->id]); } public function testWatchDirectoryDeleted() { $this->expectsEvents(LibraryChanged::class); $media = new Media(); $media->sync($this->mediaPath); $path = $this->mediaPath.'/subdir'; $record = m::mock(FSWatchRecord::class, [ 'isDeleted' => true, 'getPath' => $path, 'isFile' => false, 'isDir' => true, ], ["$path IsDir"]); $media->syncFSWatchRecord($record); $this->notSeeInDatabase('songs', ['path' => $this->mediaPath.'/subdir/sic.mp3']); $this->notSeeInDatabase('songs', ['path' => $this->mediaPath.'/subdir/no-name.MP3']); $this->notSeeInDatabase('songs', ['path' => $this->mediaPath.'/subdir/back-in-black.mp3']); } }