mirror of
https://github.com/navidrome/navidrome.git
synced 2025-06-11 04:42:17 +03:00
Add test to Login function
This commit is contained in:
parent
ad153f5f63
commit
490a7fcf52
@ -16,13 +16,17 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
var _ = Describe("Auth", func() {
|
var _ = Describe("Auth", func() {
|
||||||
Describe("CreateAdmin", func() {
|
Describe("Public functions", func() {
|
||||||
var ds model.DataStore
|
var ds model.DataStore
|
||||||
var req *http.Request
|
var req *http.Request
|
||||||
var resp *httptest.ResponseRecorder
|
var resp *httptest.ResponseRecorder
|
||||||
|
|
||||||
BeforeEach(func() {
|
BeforeEach(func() {
|
||||||
ds = &tests.MockDataStore{}
|
ds = &tests.MockDataStore{}
|
||||||
|
})
|
||||||
|
|
||||||
|
Describe("CreateAdmin", func() {
|
||||||
|
BeforeEach(func() {
|
||||||
req = httptest.NewRequest("POST", "/createAdmin", strings.NewReader(`{"username":"johndoe", "password":"secret"}`))
|
req = httptest.NewRequest("POST", "/createAdmin", strings.NewReader(`{"username":"johndoe", "password":"secret"}`))
|
||||||
resp = httptest.NewRecorder()
|
resp = httptest.NewRecorder()
|
||||||
CreateAdmin(ds)(resp, req)
|
CreateAdmin(ds)(resp, req)
|
||||||
@ -47,6 +51,34 @@ var _ = Describe("Auth", func() {
|
|||||||
Expect(parsed["token"]).ToNot(BeEmpty())
|
Expect(parsed["token"]).ToNot(BeEmpty())
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Describe("Login", func() {
|
||||||
|
BeforeEach(func() {
|
||||||
|
req = httptest.NewRequest("POST", "/login", strings.NewReader(`{"username":"janedoe", "password":"abc123"}`))
|
||||||
|
resp = httptest.NewRecorder()
|
||||||
|
})
|
||||||
|
|
||||||
|
It("fails if user does not exist", func() {
|
||||||
|
Login(ds)(resp, req)
|
||||||
|
Expect(resp.Code).To(Equal(http.StatusUnauthorized))
|
||||||
|
})
|
||||||
|
|
||||||
|
It("logs in successfully if user exists", func() {
|
||||||
|
usr := ds.User(context.TODO())
|
||||||
|
_ = usr.Put(&model.User{ID: "111", UserName: "janedoe", NewPassword: "abc123", Name: "Jane", IsAdmin: false})
|
||||||
|
|
||||||
|
Login(ds)(resp, req)
|
||||||
|
Expect(resp.Code).To(Equal(http.StatusOK))
|
||||||
|
|
||||||
|
var parsed map[string]interface{}
|
||||||
|
Expect(json.Unmarshal(resp.Body.Bytes(), &parsed)).To(BeNil())
|
||||||
|
Expect(parsed["isAdmin"]).To(Equal(false))
|
||||||
|
Expect(parsed["username"]).To(Equal("janedoe"))
|
||||||
|
Expect(parsed["name"]).To(Equal("Jane"))
|
||||||
|
Expect(parsed["id"]).ToNot(BeEmpty())
|
||||||
|
Expect(parsed["token"]).ToNot(BeEmpty())
|
||||||
|
})
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
Describe("mapAuthHeader", func() {
|
Describe("mapAuthHeader", func() {
|
||||||
It("maps the custom header to Authorization header", func() {
|
It("maps the custom header to Authorization header", func() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user