mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
New implementation of NowPlaying
This commit is contained in:
parent
0df0ac0715
commit
f8ee6db72a
14 changed files with 233 additions and 203 deletions
53
utils/singleton/singleton_test.go
Normal file
53
utils/singleton/singleton_test.go
Normal file
|
@ -0,0 +1,53 @@
|
|||
package singleton_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/navidrome/navidrome/utils/singleton"
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
||||
func TestSingleton(t *testing.T) {
|
||||
RegisterFailHandler(Fail)
|
||||
RunSpecs(t, "Singleton Suite")
|
||||
}
|
||||
|
||||
var _ = Describe("Get", func() {
|
||||
type T struct{ val int }
|
||||
var wasCalled bool
|
||||
var instance interface{}
|
||||
constructor := func() interface{} {
|
||||
wasCalled = true
|
||||
return &T{}
|
||||
}
|
||||
|
||||
BeforeEach(func() {
|
||||
instance = singleton.Get(T{}, constructor)
|
||||
})
|
||||
|
||||
It("calls the constructor to create a new instance", func() {
|
||||
Expect(wasCalled).To(BeTrue())
|
||||
Expect(instance).To(BeAssignableToTypeOf(&T{}))
|
||||
})
|
||||
|
||||
It("does not call the constructor the next time", func() {
|
||||
instance.(*T).val = 10
|
||||
wasCalled = false
|
||||
|
||||
newInstance := singleton.Get(T{}, constructor)
|
||||
|
||||
Expect(newInstance.(*T).val).To(Equal(10))
|
||||
Expect(wasCalled).To(BeFalse())
|
||||
})
|
||||
|
||||
It("does not call the constructor even if a pointer is passed as the object", func() {
|
||||
instance.(*T).val = 20
|
||||
wasCalled = false
|
||||
|
||||
newInstance := singleton.Get(&T{}, constructor)
|
||||
|
||||
Expect(newInstance.(*T).val).To(Equal(20))
|
||||
Expect(wasCalled).To(BeFalse())
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue