mirror of
https://github.com/heyarne/airsonic-ui.git
synced 2026-05-06 18:33:38 +02:00
Save login credentials in local storage
Squashed commit of the following: commitb480676cefAuthor: Arne Schlüter <arne@schlueter.is> Date: Wed May 30 18:38:40 2018 +0200 Remember login credentials commited060e55b6Author: Arne Schlüter <arne@schlueter.is> Date: Wed May 30 14:45:11 2018 +0200 Add tests for auth process commitca8972f8c3Author: Arne Schlüter <arne@schlueter.is> Date: Wed May 30 13:34:38 2018 +0200 Make sure to always run tests in development
This commit is contained in:
parent
5929bc7581
commit
3376e01930
8 changed files with 111 additions and 46 deletions
29
test/cljs/airsonic_ui/events_test.cljs
Normal file
29
test/cljs/airsonic_ui/events_test.cljs
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
(ns airsonic-ui.events-test
|
||||
(:require [cljs.test :refer [deftest testing is]]
|
||||
[clojure.string :as str]
|
||||
[airsonic-ui.events :as events]))
|
||||
|
||||
(enable-console-print!)
|
||||
|
||||
(deftest authentication
|
||||
(testing "Credential verification"
|
||||
(let [server "https://localhost"
|
||||
fx (events/authenticate {:db {}} [:_ "user" "pass" server])
|
||||
request (:http-xhrio fx)]
|
||||
(testing "uses correct server url"
|
||||
(is (str/starts-with? (:uri request) server))
|
||||
(is (str/includes? (:uri request) "/ping")))
|
||||
(testing "saves the given server location"
|
||||
(is (= server (get-in fx [:db :credentials :server]))))
|
||||
(testing "invokes correct success callback"
|
||||
(is (= ::events/credentials-verified (first (:on-success request)))))))
|
||||
(testing "On succesfull response"
|
||||
(let [fx (events/credentials-verified {:db {}} [:_ "user" "pass"])
|
||||
credentials {:u "user" :p "pass"}]
|
||||
(testing "credentials are sent to the router for access rights"
|
||||
(is (= credentials (:routes/set-credentials fx))))
|
||||
(testing "credentials are saved in the global state"
|
||||
(is (= credentials (-> (get-in fx [:db :credentials])
|
||||
(select-keys [:u :p])))))
|
||||
(testing "the login process is finalized"
|
||||
(is (= [::events/logged-in] (:dispatch fx)))))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue