Implement artist art priority (#2266)

* implement artist art priority

* add tests
This commit is contained in:
Joakim Repomaa 2023-03-31 00:28:05 +02:00 committed by GitHub
parent 406554f1c4
commit 2ccc5bc941
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 73 additions and 16 deletions

View file

@ -34,10 +34,15 @@ var _ = Describe("walk_dir_tree", func() {
Eventually(errC).Should(Receive(nil))
Expect(collected[baseDir]).To(MatchFields(IgnoreExtras, Fields{
"Images": ConsistOf("cover.jpg", "front.png"),
"Images": BeEmpty(),
"HasPlaylist": BeFalse(),
"AudioFilesCount": BeNumerically("==", 5),
}))
Expect(collected[filepath.Join(baseDir, "artist", "an-album")]).To(MatchFields(IgnoreExtras, Fields{
"Images": ConsistOf("cover.jpg", "front.png", "artist.png"),
"HasPlaylist": BeFalse(),
"AudioFilesCount": BeNumerically("==", 1),
}))
Expect(collected[filepath.Join(baseDir, "playlists")].HasPlaylist).To(BeTrue())
Expect(collected).To(HaveKey(filepath.Join(baseDir, "symlink2dir")))
Expect(collected).To(HaveKey(filepath.Join(baseDir, "empty_folder")))