276 lines
6.8 KiB
Go
276 lines
6.8 KiB
Go
package gopush
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/buger/jsonparser"
|
|
"github.com/google/go-gcm"
|
|
"github.com/stretchr/testify/assert"
|
|
"log"
|
|
"testing"
|
|
"os"
|
|
)
|
|
|
|
func TestDisabledAndroidIosConf(t *testing.T) {
|
|
PushConf = BuildDefaultPushConf()
|
|
|
|
err := CheckPushConf()
|
|
|
|
assert.Error(t, err)
|
|
assert.Equal(t, "Please enable iOS or Android config in yaml config", err.Error())
|
|
}
|
|
|
|
func TestMissingIOSCertificate(t *testing.T) {
|
|
PushConf = BuildDefaultPushConf()
|
|
|
|
PushConf.Ios.Enabled = true
|
|
PushConf.Ios.PemKeyPath = ""
|
|
|
|
err := CheckPushConf()
|
|
|
|
assert.Error(t, err)
|
|
assert.Equal(t, "Missing iOS certificate path", err.Error())
|
|
}
|
|
|
|
func TestMissingAndroidAPIKey(t *testing.T) {
|
|
PushConf = BuildDefaultPushConf()
|
|
|
|
PushConf.Android.Enabled = true
|
|
PushConf.Android.ApiKey = ""
|
|
|
|
err := CheckPushConf()
|
|
|
|
assert.Error(t, err)
|
|
assert.Equal(t, "Missing Android API Key", err.Error())
|
|
}
|
|
|
|
func TestCorrectConf(t *testing.T) {
|
|
PushConf = BuildDefaultPushConf()
|
|
|
|
PushConf.Android.Enabled = true
|
|
PushConf.Android.ApiKey = "xxxxx"
|
|
|
|
PushConf.Ios.Enabled = true
|
|
PushConf.Ios.PemKeyPath = "xxxxx"
|
|
|
|
err := CheckPushConf()
|
|
|
|
assert.NoError(t, err)
|
|
}
|
|
|
|
func TestIOSNotificationStructure(t *testing.T) {
|
|
var dat map[string]interface{}
|
|
|
|
test := "test"
|
|
message := "Welcome notification Server"
|
|
req := RequestPushNotification{
|
|
ApnsID: test,
|
|
Topic: test,
|
|
Priority: "normal",
|
|
Message: message,
|
|
Badge: 1,
|
|
Sound: test,
|
|
ContentAvailable: true,
|
|
Extend: []ExtendJSON{
|
|
{
|
|
Key: "key1",
|
|
Value: "1",
|
|
},
|
|
{
|
|
Key: "key2",
|
|
Value: "2",
|
|
},
|
|
},
|
|
Category: test,
|
|
URLArgs: []string{"a", "b"},
|
|
}
|
|
|
|
notification := GetIOSNotification(req)
|
|
|
|
dump, _ := json.Marshal(notification.Payload)
|
|
data := []byte(string(dump))
|
|
|
|
if err := json.Unmarshal(data, &dat); err != nil {
|
|
log.Println(err)
|
|
panic(err)
|
|
}
|
|
|
|
alert, _ := jsonparser.GetString(data, "aps", "alert")
|
|
badge, _ := jsonparser.GetInt(data, "aps", "badge")
|
|
sound, _ := jsonparser.GetString(data, "aps", "sound")
|
|
contentAvailable, _ := jsonparser.GetInt(data, "aps", "content-available")
|
|
category, _ := jsonparser.GetString(data, "aps", "category")
|
|
key1 := dat["key1"].(string)
|
|
key2 := dat["key2"].(string)
|
|
aps := dat["aps"].(map[string]interface{})
|
|
urlArgs := aps["url-args"].([]interface{})
|
|
|
|
assert.Equal(t, test, notification.ApnsID)
|
|
assert.Equal(t, test, notification.Topic)
|
|
assert.Equal(t, ApnsPriorityLow, notification.Priority)
|
|
assert.Equal(t, message, alert)
|
|
assert.Equal(t, 1, int(badge))
|
|
assert.Equal(t, test, sound)
|
|
assert.Equal(t, 1, int(contentAvailable))
|
|
assert.Equal(t, "1", key1)
|
|
assert.Equal(t, "2", key2)
|
|
assert.Equal(t, test, category)
|
|
assert.Contains(t, urlArgs, "a")
|
|
assert.Contains(t, urlArgs, "b")
|
|
}
|
|
|
|
func TestIOSAlertNotificationStructure(t *testing.T) {
|
|
var dat map[string]interface{}
|
|
|
|
test := "test"
|
|
req := RequestPushNotification{
|
|
Alert: Alert{
|
|
Action: test,
|
|
ActionLocKey: test,
|
|
Body: test,
|
|
LaunchImage: test,
|
|
LocArgs: []string{"a", "b"},
|
|
LocKey: test,
|
|
Title: test,
|
|
TitleLocArgs: []string{"a", "b"},
|
|
TitleLocKey: test,
|
|
},
|
|
}
|
|
|
|
notification := GetIOSNotification(req)
|
|
|
|
dump, _ := json.Marshal(notification.Payload)
|
|
data := []byte(string(dump))
|
|
|
|
if err := json.Unmarshal(data, &dat); err != nil {
|
|
log.Println(err)
|
|
panic(err)
|
|
}
|
|
|
|
action, _ := jsonparser.GetString(data, "aps", "alert", "action")
|
|
actionLocKey, _ := jsonparser.GetString(data, "aps", "alert", "action-loc-key")
|
|
body, _ := jsonparser.GetString(data, "aps", "alert", "body")
|
|
launchImage, _ := jsonparser.GetString(data, "aps", "alert", "launch-image")
|
|
locKey, _ := jsonparser.GetString(data, "aps", "alert", "loc-key")
|
|
title, _ := jsonparser.GetString(data, "aps", "alert", "title")
|
|
titleLocKey, _ := jsonparser.GetString(data, "aps", "alert", "title-loc-key")
|
|
aps := dat["aps"].(map[string]interface{})
|
|
alert := aps["alert"].(map[string]interface{})
|
|
titleLocArgs := alert["title-loc-args"].([]interface{})
|
|
|
|
assert.Equal(t, test, action)
|
|
assert.Equal(t, test, actionLocKey)
|
|
assert.Equal(t, test, body)
|
|
assert.Equal(t, test, launchImage)
|
|
assert.Equal(t, test, locKey)
|
|
assert.Equal(t, test, title)
|
|
assert.Equal(t, test, titleLocKey)
|
|
assert.Contains(t, titleLocArgs, "a")
|
|
assert.Contains(t, titleLocArgs, "b")
|
|
}
|
|
|
|
func TestAndroidNotificationStructure(t *testing.T) {
|
|
|
|
test := "test"
|
|
req := RequestPushNotification{
|
|
Tokens: []string{"a", "b"},
|
|
Message: "Welcome",
|
|
To: test,
|
|
Priority: "high",
|
|
CollapseKey: "1",
|
|
ContentAvailable: true,
|
|
DelayWhileIdle: true,
|
|
TimeToLive: 100,
|
|
RestrictedPackageName: test,
|
|
DryRun: true,
|
|
Data: map[string]interface{}{
|
|
"a": "1",
|
|
"b": "2",
|
|
},
|
|
Notification: gcm.Notification{
|
|
Title: test,
|
|
},
|
|
}
|
|
|
|
notification := GetAndroidNotification(req)
|
|
|
|
assert.Equal(t, test, notification.To)
|
|
assert.Equal(t, "high", notification.Priority)
|
|
assert.Equal(t, "1", notification.CollapseKey)
|
|
assert.True(t, notification.ContentAvailable)
|
|
assert.True(t, notification.DelayWhileIdle)
|
|
assert.Equal(t, 100, int(notification.TimeToLive))
|
|
assert.Equal(t, test, notification.RestrictedPackageName)
|
|
assert.True(t, notification.DryRun)
|
|
assert.Equal(t, test, notification.Notification.Title)
|
|
assert.Equal(t, "Welcome", notification.Notification.Body)
|
|
}
|
|
|
|
func TestPushToIOS(t *testing.T) {
|
|
PushConf = BuildDefaultPushConf()
|
|
|
|
PushConf.Ios.Enabled = true
|
|
PushConf.Ios.PemKeyPath = "../certificate/certificate-valid.pem"
|
|
InitAPNSClient()
|
|
|
|
req := RequestPushNotification{
|
|
Tokens: []string{"11aa01229f15f0f0c52029d8cf8cd0aeaf2365fe4cebc4af26cd6d76b7919ef7"},
|
|
Platform: 1,
|
|
Message: "Welcome",
|
|
}
|
|
|
|
success := PushToIOS(req)
|
|
assert.False(t, success)
|
|
}
|
|
|
|
func TestPushToAndroidWrongAPIKey(t *testing.T) {
|
|
PushConf = BuildDefaultPushConf()
|
|
|
|
PushConf.Android.Enabled = true
|
|
PushConf.Android.ApiKey = os.Getenv("ANDROID_API_KEY") + "a"
|
|
|
|
|
|
req := RequestPushNotification{
|
|
Tokens: []string{"aaaaaa", "bbbbb"},
|
|
Platform: 2,
|
|
Message: "Welcome",
|
|
}
|
|
|
|
success := PushToAndroid(req)
|
|
assert.False(t, success)
|
|
}
|
|
|
|
func TestPushToAndroidWrongToken(t *testing.T) {
|
|
PushConf = BuildDefaultPushConf()
|
|
|
|
PushConf.Android.Enabled = true
|
|
PushConf.Android.ApiKey = os.Getenv("ANDROID_API_KEY")
|
|
|
|
|
|
req := RequestPushNotification{
|
|
Tokens: []string{"aaaaaa", "bbbbb"},
|
|
Platform: 2,
|
|
Message: "Welcome",
|
|
}
|
|
|
|
success := PushToAndroid(req)
|
|
assert.True(t, success)
|
|
}
|
|
|
|
func TestPushToAndroidRightToken(t *testing.T) {
|
|
PushConf = BuildDefaultPushConf()
|
|
|
|
PushConf.Android.Enabled = true
|
|
PushConf.Android.ApiKey = os.Getenv("ANDROID_API_KEY")
|
|
|
|
android_token := os.Getenv("ANDROID_TEST_TOKEN")
|
|
|
|
req := RequestPushNotification{
|
|
Tokens: []string{android_token, "bbbbb"},
|
|
Platform: 2,
|
|
Message: "Welcome",
|
|
}
|
|
|
|
success := PushToAndroid(req)
|
|
assert.True(t, success)
|
|
}
|