New implementation of NowPlaying

This commit is contained in:
Deluan 2021-06-19 20:56:56 -04:00
parent 0df0ac0715
commit f8ee6db72a
14 changed files with 233 additions and 203 deletions

View 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())
})
})