mirror of
https://github.com/heyarne/airsonic-ui.git
synced 2026-05-06 18:33:38 +02:00
Add a real playlist (#20)
* Start implementing playlist Done so far: * Creation * Changing playback mode * Changing repeat mode * Add skipping for linear playlists with all repeat modes * Complete implementation for playlist/next-song * Implement all the playlist skipping functionality * Add functions to enqueue songs * Remove start-idx parameter when constructing playlists * Use namespaced keywords only when modifying external data E.g. songs in the queue
This commit is contained in:
parent
2638378064
commit
1888c3023c
11 changed files with 456 additions and 46 deletions
23
test/cljs/airsonic_ui/audio/core_test.cljs
Normal file
23
test/cljs/airsonic_ui/audio/core_test.cljs
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
(ns airsonic-ui.audio.core-test
|
||||
(:require [airsonic-ui.audio.core :as audio]
|
||||
[airsonic-ui.audio.playlist-test :as p]
|
||||
[airsonic-ui.fixtures :as fixtures]
|
||||
[cljs.test :refer [deftest testing is]]))
|
||||
|
||||
(enable-console-print!)
|
||||
|
||||
(deftest current-song-subscription
|
||||
(letfn [(current-song [db]
|
||||
(-> (audio/summary db [:audio/summary])
|
||||
(audio/current-song [:audio/current-song])))]
|
||||
(testing "Should provide information about the song"
|
||||
(= fixtures/song (current-song p/fixture)))))
|
||||
|
||||
(deftest playback-status-subscription
|
||||
(letfn [(is-playing? [playback-status]
|
||||
(audio/is-playing? playback-status [:audio/is-playing?]))]
|
||||
(testing "Should be shown as not playing when the song is paused or has ended"
|
||||
(is (not (is-playing? {:paused? true, :ended? false})))
|
||||
(is (not (is-playing? {:paused? false, :ended? true}))))
|
||||
(testing "Should be shown as playing when the song is not paused or finished"
|
||||
(is (is-playing? {:paused? false, :ended? false})))))
|
||||
259
test/cljs/airsonic_ui/audio/playlist_test.cljs
Normal file
259
test/cljs/airsonic_ui/audio/playlist_test.cljs
Normal file
|
|
@ -0,0 +1,259 @@
|
|||
(ns airsonic-ui.audio.playlist-test
|
||||
(:require [cljs.test :refer [deftest testing is]]
|
||||
[airsonic-ui.audio.playlist :as playlist]
|
||||
[airsonic-ui.utils.helpers :refer [find-where]]
|
||||
[airsonic-ui.fixtures :as fixtures]
|
||||
[airsonic-ui.test-helpers :as helpers]
|
||||
[debux.cs.core :refer-macros [dbg]]))
|
||||
|
||||
(enable-console-print!)
|
||||
|
||||
(defn- song []
|
||||
(hash-map :id (rand-int 9999)
|
||||
:coverArt (rand-int 9999)
|
||||
:year (+ 1900 (rand-int 118))
|
||||
:artist (helpers/rand-str)
|
||||
:artistId (rand-int 100000)
|
||||
:title (helpers/rand-str)
|
||||
:album (helpers/rand-str)))
|
||||
|
||||
(defn- song-queue
|
||||
"Generates a seq of n different songs"
|
||||
[n]
|
||||
(let [r-int (atom 0)]
|
||||
(with-redefs [rand-int #(mod (swap! r-int inc) %1)]
|
||||
(repeatedly n song))))
|
||||
|
||||
(def fixture
|
||||
{:audio {:current-song fixtures/song
|
||||
:playlist (song-queue 20)
|
||||
:playback-status fixtures/playback-status}})
|
||||
|
||||
(defn- same-song? [a b] (= (:id a) (:id b)))
|
||||
|
||||
(deftest playlist-creation
|
||||
(testing "Playlist creation"
|
||||
(testing "should give us the correct current song"
|
||||
(let [queue (song-queue 10)]
|
||||
(doseq [playback-mode [:linear :shuffled]
|
||||
repeat-mode [:repeat-none :repeat-single :repeat-all]]
|
||||
(is (same-song? (first queue)
|
||||
(-> (playlist/->playlist queue :playback-mode playback-mode :repeat-mode repeat-mode)
|
||||
(playlist/peek)))
|
||||
(str playback-mode ", " repeat-mode)))))
|
||||
(testing "should give us a playlist with the correct number of tracks"
|
||||
(let [queue (song-queue 100)]
|
||||
(doseq [playback-mode [:linear :shuffled]
|
||||
repeat-mode [:repeat-none :repeat-single :repeat-all]]
|
||||
(is (= (count queue)
|
||||
(count (playlist/->playlist queue :playback-mode playback-mode :repeat-mode repeat-mode)))
|
||||
(str playback-mode ", " repeat-mode)))))))
|
||||
|
||||
(deftest changing-playback-mode
|
||||
(testing "Changing playback mode"
|
||||
(testing "from linear to shuffled"
|
||||
(let [queue (song-queue 10)
|
||||
linear (playlist/->playlist queue :playback-mode :linear :repeat-mode :repeat-none)
|
||||
shuffled (playlist/set-playback-mode linear :shuffled)]
|
||||
(testing "should re-order the tracks"
|
||||
(is (not= (map :playlist/order (:queue shuffled)) (map :playlist/order (:queue linear)))))
|
||||
(testing "should not change the currently playing track"
|
||||
(is (same-song? (playlist/peek linear) (playlist/peek shuffled))))
|
||||
(testing "should not change the repeat mode"
|
||||
(is (= (:repeat-mode shuffled) (:repeat-mode linear))))))
|
||||
(testing "from shuffled to linear"
|
||||
(let [queue (song-queue 10)
|
||||
shuffled (playlist/->playlist queue :playback-mode :shuffled :repeat-mode :repeat-none)
|
||||
linear (playlist/set-playback-mode shuffled :linear)]
|
||||
(testing "should set the correct order for tracks"
|
||||
(is (every? #(apply same-song? %) (interleave queue (:queue linear))))
|
||||
(is (< (:playlist/order (first (:queue linear))) (:playlist/order (last (:queue linear))))))
|
||||
(testing "should not change the currently playing track"
|
||||
(is (same-song? (playlist/peek linear) (playlist/peek shuffled))))
|
||||
(testing "should not change the repeat mode"
|
||||
(is (= (:repeat-mode shuffled) (:repeat-mode linear))))))))
|
||||
|
||||
(deftest changing-repeat-mode
|
||||
(testing "Changing the repeat mode"
|
||||
(testing "should not change the playback mode"
|
||||
(doseq [playback-mode '(:linear :shuffled)
|
||||
repeat-mode '(:repeat-none :repeat-single :repeat-all)
|
||||
next-repeat-mode '(:repeat-none :repeat-single :repeat-all)]
|
||||
(let [playlist (-> (playlist/->playlist (song-queue 1) :playback-mode playback-mode :repeat-mode repeat-mode)
|
||||
(playlist/set-repeat-mode next-repeat-mode))]
|
||||
(is (= playback-mode (:playback-mode playlist)))
|
||||
(is (= next-repeat-mode (:repeat-mode playlist))
|
||||
(str "from " repeat-mode " to " next-repeat-mode)))))))
|
||||
|
||||
(deftest linear-next-song
|
||||
(testing "Should follow the same order as the queue used for creation"
|
||||
(doseq [repeat-mode [:repeat-none :repeat-all]]
|
||||
(let [queue (song-queue 5)
|
||||
playlist (playlist/->playlist queue :playback-mode :linear :repeat-mode repeat-mode)]
|
||||
(is (same-song? (nth queue 1) (-> (playlist/next-song playlist)
|
||||
(playlist/peek)))
|
||||
(str repeat-mode ", skipped once"))
|
||||
(is (same-song? (nth queue 2) (-> (playlist/next-song playlist)
|
||||
(playlist/next-song)
|
||||
(playlist/peek)))
|
||||
(str repeat-mode ", skipped twice")))))
|
||||
(testing "Should go back to the first song when repeat-mode is all and we played the last song")
|
||||
(testing "Should always give the same track when repeat-mode is single"
|
||||
(let [queue (song-queue 3)
|
||||
playlist (playlist/->playlist queue :playback-mode :linear :repeat-mode :repeat-single)
|
||||
played-back (map playlist/peek (iterate playlist/next-song playlist))]
|
||||
(is (same-song? (first queue) (nth played-back 0)))
|
||||
(is (same-song? (first queue) (nth played-back 1)))
|
||||
(is (same-song? (first queue) (nth played-back 2)))
|
||||
(is (same-song? (first queue) (nth played-back 3)) "wrapping around")))
|
||||
(testing "Should stop playing at the end of the queue when repeat-mode is none"
|
||||
(is (nil? (-> (song-queue 1)
|
||||
(playlist/->playlist :playback-mode :linear :repeat-mode :repeat-none)
|
||||
(playlist/next-song)
|
||||
(playlist/peek))))))
|
||||
|
||||
(deftest shuffled-next-song
|
||||
(testing "Should play every track once when called for the entire queue"
|
||||
(doseq [repeat-mode '(:repeat-none :repeat-all)]
|
||||
(let [length 10
|
||||
playlist (playlist/->playlist (song-queue length) :playback-mode :shuffled :repeat-mode repeat-mode)
|
||||
played-tracks (->> (iterate playlist/next-song playlist)
|
||||
(map playlist/peek)
|
||||
(take length))]
|
||||
(is (= (count played-tracks) (count (set played-tracks)))
|
||||
(str repeat-mode)))))
|
||||
(testing "Should re-shuffle the playlist when wrapping around and repeat-mode is all"
|
||||
(let [playlist (playlist/->playlist (song-queue 100) :playback-mode :shuffled :repeat-mode :repeat-all)
|
||||
[last-idx _] (find-where #(= (:playlist/order %) 99) (:queue playlist))]
|
||||
(is (not= (map :playlist/order (:queue playlist))
|
||||
(map :playlist/order (:queue (-> (playlist/set-current-song playlist last-idx)
|
||||
(playlist/next-song))))))))
|
||||
(testing "Should always give the same track when repeat-mode is single"
|
||||
(let [queue (song-queue 3)
|
||||
playlist (playlist/->playlist queue :playback-mode :shuffled :repeat-mode :repeat-single)
|
||||
played-back (map playlist/peek (iterate playlist/next-song playlist))]
|
||||
(is (same-song? (first queue) (nth played-back 0)))
|
||||
(is (same-song? (first queue) (nth played-back 1)))
|
||||
(is (same-song? (first queue) (nth played-back 2)))
|
||||
(is (same-song? (first queue) (nth played-back 3)) "wrapping around")))
|
||||
(testing "Should stop playing at the end of the queue when repeat-mode is none"
|
||||
(is (nil? (-> (song-queue 1)
|
||||
(playlist/->playlist :playback-mode :linear :repeat-mode :repeat-none)
|
||||
(playlist/next-song)
|
||||
(playlist/peek))))))
|
||||
|
||||
(deftest linear-previous-song
|
||||
(testing "Should always give the same track when repeat-mode is single"
|
||||
(let [queue (song-queue 3)
|
||||
playlist (playlist/->playlist queue :playback-mode :linear :repeat-mode :repeat-single)
|
||||
played-back (map playlist/peek (iterate playlist/next-song playlist))]
|
||||
(is (same-song? (first queue) (nth played-back 0)))
|
||||
(is (same-song? (first queue) (nth played-back 1)))
|
||||
(is (same-song? (first queue) (nth played-back 2)))
|
||||
(is (same-song? (first queue) (nth played-back 3)) "wrapping around")))
|
||||
(testing "Should keep the linear order when repeat-mode is not single"
|
||||
(doseq [repeat-mode '(:repeat-none :repeat-all)]
|
||||
(let [queue (song-queue 3)
|
||||
playlist (playlist/->playlist queue :playback-mode :linear :repeat-mode repeat-mode)]
|
||||
(is (same-song? (nth queue 1) (-> (playlist/next-song playlist)
|
||||
(playlist/next-song)
|
||||
(playlist/previous-song)
|
||||
(playlist/peek)))))))
|
||||
(testing "Should repeatedly give the first song when repeat-mode is none"
|
||||
(let [queue (song-queue 3)
|
||||
playlist (playlist/->playlist queue :playback-mode :linear :repeat-mode :repeat-none)]
|
||||
(is (same-song? (first queue) (-> (playlist/previous-song playlist)
|
||||
(playlist/peek))))))
|
||||
(testing "Should wrap around to last song when repeat-mode is all"
|
||||
(let [queue (song-queue 3)
|
||||
playlist (playlist/->playlist queue :playback-mode :linear :repeat-mode :repeat-all)]
|
||||
(is (same-song? (last queue) (-> (playlist/previous-song playlist)
|
||||
(playlist/peek)))))))
|
||||
|
||||
(deftest shuffled-previous-song
|
||||
(with-redefs [shuffle reverse]
|
||||
(testing "Should always give the same track when repeat-mode is single"
|
||||
(let [queue (song-queue 3)
|
||||
playlist (playlist/->playlist queue :playback-mode :shuffled :repeat-mode :repeat-single)
|
||||
played-back (map playlist/peek (iterate playlist/next-song playlist))]
|
||||
(is (same-song? (first queue) (nth played-back 0)))
|
||||
(is (same-song? (first queue) (nth played-back 1)))
|
||||
(is (same-song? (first queue) (nth played-back 2)))
|
||||
(is (same-song? (first queue) (nth played-back 3)) "wrapping around")))
|
||||
(testing "Should keep the playing order when repeat-mode is not single"
|
||||
(doseq [repeat-mode '(:repeat-none :repeat-all)]
|
||||
(let [queue (song-queue 3)
|
||||
playlist (playlist/->playlist queue :playback-mode :shuffled :repeat-mode repeat-mode)]
|
||||
(is (same-song? (playlist/peek playlist)
|
||||
(-> playlist
|
||||
(playlist/next-song)
|
||||
(playlist/previous-song)
|
||||
(playlist/peek)))
|
||||
(str "for repeat mode " repeat-mode))
|
||||
(is (same-song? (-> (playlist/next-song playlist)
|
||||
(playlist/peek))
|
||||
(-> (playlist/next-song playlist)
|
||||
(playlist/next-song)
|
||||
(playlist/previous-song)
|
||||
(playlist/peek)))
|
||||
(str "for repeat mode " repeat-mode)))))
|
||||
(testing "Should re-shuffle when repeat-mode is all and we go back to before the first track"
|
||||
(let [playlist (with-redefs [shuffle identity]
|
||||
(playlist/->playlist (song-queue 10) :playback-mode :shuffled :repeat-mode :repeat-all))
|
||||
playlist' (with-redefs [shuffle reverse]
|
||||
(playlist/previous-song playlist))]
|
||||
(is (not= (map :playlist/order (:queue playlist)) (map :playlist/order (:queue playlist'))))))))
|
||||
|
||||
(deftest set-current-song
|
||||
(testing "Should correctly set the new song"
|
||||
(let [queue (song-queue 3)
|
||||
playlist (playlist/->playlist queue :playback-mode :shuffled :repeat-mode :repeat-single)
|
||||
current-track (first queue)
|
||||
next-track (-> (playlist/set-current-song playlist 1)
|
||||
(playlist/peek))]
|
||||
(is (not (nil? next-track)))
|
||||
(is (not (same-song? current-track next-track))))))
|
||||
|
||||
(deftest enqueue-last
|
||||
(testing "Should make sure the song is played last"
|
||||
(doseq [playback-mode '(:linear :shuffled)
|
||||
repeat-mode '(:repeat-none :repeat-all)]
|
||||
(let [length 5, queue (song-queue length)
|
||||
playlist (with-redefs [shuffle identity]
|
||||
(playlist/->playlist queue :playback-mode playback-mode :repeat-mode repeat-mode))
|
||||
played-back (->> (iterate playlist/next-song playlist)
|
||||
(take (dec length))
|
||||
(map #(:id (playlist/peek %)))
|
||||
(set))
|
||||
to-enqueue (song)
|
||||
playlist' (playlist/enqueue-last playlist to-enqueue)]
|
||||
(is (nil? (played-back (-> (->> (iterate playlist/next-song playlist')
|
||||
(map playlist/peek))
|
||||
(nth length)
|
||||
(:id))))
|
||||
(str "for " playback-mode ", " repeat-mode)))))
|
||||
(testing "Should not change the order of the songs already in queue"
|
||||
(doseq [playback-mode '(:linear :shuffled)
|
||||
repeat-mode '(:repeat-none :repeat-all)]
|
||||
(let [length 5, queue (song-queue length)
|
||||
playlist (playlist/->playlist queue :playback-mode playback-mode :repeat-mode repeat-mode)
|
||||
played-back-songs (fn played-back-songs [playlist]
|
||||
(->> (iterate playlist/next-song playlist)
|
||||
(take length)
|
||||
(map playlist/peek)
|
||||
(map :playlist/order)))
|
||||
played-back (played-back-songs playlist)
|
||||
played-back' (played-back-songs (playlist/enqueue-last playlist (song)))]
|
||||
(is (= played-back played-back')
|
||||
(str "for " playback-mode ", " repeat-mode))))))
|
||||
|
||||
(deftest enqueue-next
|
||||
(testing "Should play the song after the currently playing song"
|
||||
(doseq [playback-mode '(:linear :shuffled)
|
||||
repeat-mode '(:repeat-none :repeat-all)]
|
||||
(let [length 5, queue (song-queue length)
|
||||
playlist (playlist/->playlist queue :playback-mode playback-mode :repeat-mode repeat-mode)
|
||||
next-song (song)]
|
||||
(is (same-song? next-song (-> (playlist/enqueue-next playlist next-song)
|
||||
(playlist/next-song)
|
||||
(playlist/peek))))))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue