mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +03:00
52 lines
1.6 KiB
Go
52 lines
1.6 KiB
Go
package engine
|
|
|
|
import (
|
|
"github.com/cloudsonic/sonic-server/model"
|
|
"github.com/cloudsonic/sonic-server/persistence"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Users", func() {
|
|
Describe("Authenticate", func() {
|
|
var users Users
|
|
BeforeEach(func() {
|
|
ds := &persistence.MockDataStore{}
|
|
users = NewUsers(ds)
|
|
})
|
|
|
|
Context("Plaintext password", func() {
|
|
It("authenticates with plaintext password ", func() {
|
|
usr, err := users.Authenticate("admin", "wordpass", "", "")
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(usr).To(Equal(&model.User{UserName: "admin", Password: "wordpass"}))
|
|
})
|
|
|
|
It("fails authentication with wrong password", func() {
|
|
_, err := users.Authenticate("admin", "INVALID", "", "")
|
|
Expect(err).To(MatchError(model.ErrInvalidAuth))
|
|
})
|
|
})
|
|
|
|
Context("Encoded password", func() {
|
|
It("authenticates with simple encoded password ", func() {
|
|
usr, err := users.Authenticate("admin", "enc:776f726470617373", "", "")
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(usr).To(Equal(&model.User{UserName: "admin", Password: "wordpass"}))
|
|
})
|
|
})
|
|
|
|
Context("Token based authentication", func() {
|
|
It("authenticates with token based authentication", func() {
|
|
usr, err := users.Authenticate("admin", "", "23b342970e25c7928831c3317edd0b67", "retnlmjetrymazgkt")
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(usr).To(Equal(&model.User{UserName: "admin", Password: "wordpass"}))
|
|
})
|
|
|
|
It("fails if salt is missing", func() {
|
|
_, err := users.Authenticate("admin", "", "23b342970e25c7928831c3317edd0b67", "")
|
|
Expect(err).To(MatchError(model.ErrInvalidAuth))
|
|
})
|
|
})
|
|
})
|
|
})
|