mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
Fix DevAutoCreateAdminPassword
This commit is contained in:
parent
88105d5c30
commit
e3fe8399c8
6 changed files with 93 additions and 30 deletions
36
server/initial_setup_test.go
Normal file
36
server/initial_setup_test.go
Normal file
|
@ -0,0 +1,36 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/navidrome/navidrome/model"
|
||||
"github.com/navidrome/navidrome/tests"
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
||||
var _ = Describe("initial_setup", func() {
|
||||
var ds model.DataStore
|
||||
|
||||
BeforeEach(func() {
|
||||
ds = &tests.MockDataStore{}
|
||||
})
|
||||
|
||||
Describe("createInitialAdminUser", func() {
|
||||
It("creates a new admin user with specified password if User table is empty", func() {
|
||||
Expect(createInitialAdminUser(ds, "pass123")).To(BeNil())
|
||||
ur := ds.User(context.TODO())
|
||||
admin, err := ur.FindByUsername("admin")
|
||||
Expect(err).To(BeNil())
|
||||
Expect(admin.Password).To(Equal("pass123"))
|
||||
})
|
||||
|
||||
It("does not create a new admin user if User table is not empty", func() {
|
||||
Expect(createInitialAdminUser(ds, "first")).To(BeNil())
|
||||
ur := ds.User(context.TODO())
|
||||
Expect(ur.CountAll()).To(Equal(int64(1)))
|
||||
Expect(createInitialAdminUser(ds, "second")).To(BeNil())
|
||||
Expect(ur.CountAll()).To(Equal(int64(1)))
|
||||
})
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue