2017-10-11 13:51:43 +00:00
|
|
|
package fcm
|
2017-10-09 16:23:09 +00:00
|
|
|
|
|
|
|
import (
|
2017-10-10 15:33:12 +00:00
|
|
|
"errors"
|
2017-10-09 16:23:09 +00:00
|
|
|
"testing"
|
|
|
|
|
2017-10-10 15:33:12 +00:00
|
|
|
"github.com/NaySoftware/go-fcm"
|
|
|
|
"github.com/golang/mock/gomock"
|
2017-10-09 16:23:09 +00:00
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestFCMClientTestSuite(t *testing.T) {
|
2017-10-11 13:52:11 +00:00
|
|
|
suite.Run(t, new(NotifierTestSuite))
|
2017-10-09 16:23:09 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 13:52:11 +00:00
|
|
|
type NotifierTestSuite struct {
|
2017-10-12 14:31:14 +00:00
|
|
|
suite.Suite
|
2017-10-10 15:33:12 +00:00
|
|
|
|
2018-04-05 13:14:47 +00:00
|
|
|
fcmClientMock *MockFirebaseClient
|
2017-10-10 15:33:12 +00:00
|
|
|
fcmClientMockCtrl *gomock.Controller
|
|
|
|
}
|
|
|
|
|
2017-10-11 13:52:11 +00:00
|
|
|
func (s *NotifierTestSuite) SetupTest() {
|
2017-10-10 15:33:12 +00:00
|
|
|
s.fcmClientMockCtrl = gomock.NewController(s.T())
|
2018-04-05 13:14:47 +00:00
|
|
|
s.fcmClientMock = NewMockFirebaseClient(s.fcmClientMockCtrl)
|
2017-10-09 16:23:09 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 13:52:11 +00:00
|
|
|
func (s *NotifierTestSuite) TearDownTest() {
|
2017-10-10 15:33:12 +00:00
|
|
|
s.fcmClientMockCtrl.Finish()
|
|
|
|
}
|
|
|
|
|
2017-10-11 13:52:11 +00:00
|
|
|
func (s *NotifierTestSuite) TestNotifySuccess() {
|
2017-10-11 13:51:43 +00:00
|
|
|
fcmPayload := getPayload()
|
2017-10-10 15:33:12 +00:00
|
|
|
ids := []string{"1"}
|
2017-10-23 15:46:51 +00:00
|
|
|
payload := fcmPayload
|
|
|
|
msg := make(map[string]string)
|
|
|
|
body := "body"
|
|
|
|
msg["msg"] = body
|
2017-10-10 15:33:12 +00:00
|
|
|
|
2017-10-23 15:46:51 +00:00
|
|
|
s.fcmClientMock.EXPECT().SetNotificationPayload(&fcmPayload).Times(1)
|
|
|
|
s.fcmClientMock.EXPECT().NewFcmRegIdsMsg(ids, msg).Times(1)
|
2017-10-10 15:33:12 +00:00
|
|
|
s.fcmClientMock.EXPECT().Send().Return(nil, nil).Times(1)
|
2017-10-18 20:56:39 +00:00
|
|
|
fcmClient := Notification{s.fcmClientMock}
|
2017-10-10 15:33:12 +00:00
|
|
|
|
2017-10-23 15:46:51 +00:00
|
|
|
err := fcmClient.Send(body, payload, ids...)
|
2017-10-10 15:33:12 +00:00
|
|
|
|
2017-10-11 13:52:11 +00:00
|
|
|
s.NoError(err)
|
2017-10-10 15:33:12 +00:00
|
|
|
}
|
|
|
|
|
2017-10-11 13:52:11 +00:00
|
|
|
func (s *NotifierTestSuite) TestNotifyError() {
|
2017-10-10 15:33:12 +00:00
|
|
|
expectedError := errors.New("error")
|
2017-10-11 13:51:43 +00:00
|
|
|
fcmPayload := getPayload()
|
|
|
|
ids := []string{"1"}
|
2017-10-23 15:46:51 +00:00
|
|
|
payload := fcmPayload
|
|
|
|
msg := make(map[string]string)
|
|
|
|
body := "body"
|
|
|
|
msg["msg"] = body
|
2017-10-11 13:51:43 +00:00
|
|
|
|
2017-10-23 15:46:51 +00:00
|
|
|
s.fcmClientMock.EXPECT().SetNotificationPayload(&fcmPayload).Times(1)
|
|
|
|
s.fcmClientMock.EXPECT().NewFcmRegIdsMsg(ids, msg).Times(1)
|
2017-10-10 15:33:12 +00:00
|
|
|
s.fcmClientMock.EXPECT().Send().Return(nil, expectedError).Times(1)
|
2017-10-18 20:56:39 +00:00
|
|
|
fcmClient := Notification{s.fcmClientMock}
|
2017-10-10 15:33:12 +00:00
|
|
|
|
2017-10-23 15:46:51 +00:00
|
|
|
err := fcmClient.Send(body, payload, ids...)
|
2017-10-10 15:33:12 +00:00
|
|
|
|
2017-10-11 13:52:11 +00:00
|
|
|
s.Equal(expectedError, err)
|
2017-10-10 15:33:12 +00:00
|
|
|
}
|
2017-10-11 13:51:43 +00:00
|
|
|
|
2017-10-23 15:46:51 +00:00
|
|
|
func getPayload() fcm.NotificationPayload {
|
|
|
|
return fcm.NotificationPayload{Title: "Status - new message", Body: "sum"}
|
2017-10-11 13:51:43 +00:00
|
|
|
}
|