Add test to Event
This commit is contained in:
parent
7adacbac0d
commit
c7af3b8256
2 changed files with 36 additions and 0 deletions
17
server/events/events_suite_test.go
Normal file
17
server/events/events_suite_test.go
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
package events
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/deluan/navidrome/log"
|
||||||
|
"github.com/deluan/navidrome/tests"
|
||||||
|
. "github.com/onsi/ginkgo"
|
||||||
|
. "github.com/onsi/gomega"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestEvents(t *testing.T) {
|
||||||
|
tests.Init(t, false)
|
||||||
|
log.SetLevel(log.LevelCritical)
|
||||||
|
RegisterFailHandler(Fail)
|
||||||
|
RunSpecs(t, "Events Suite")
|
||||||
|
}
|
||||||
19
server/events/events_test.go
Normal file
19
server/events/events_test.go
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
package events
|
||||||
|
|
||||||
|
import (
|
||||||
|
. "github.com/onsi/ginkgo"
|
||||||
|
. "github.com/onsi/gomega"
|
||||||
|
)
|
||||||
|
|
||||||
|
var _ = Describe("Event", func() {
|
||||||
|
It("marshals Event to JSON", func() {
|
||||||
|
testEvent := TestEvent{Test: "some data"}
|
||||||
|
json := testEvent.Prepare(&testEvent)
|
||||||
|
Expect(json).To(Equal(`{"name":"testEvent","Test":"some data"}`))
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
type TestEvent struct {
|
||||||
|
baseEvent
|
||||||
|
Test string
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue