Fixing parsing of device Ids (#5580)
Этот коммит содержится в:
@@ -49,10 +49,11 @@ func (me *PushNotification) ToJson() string {
|
|||||||
|
|
||||||
func (me *PushNotification) SetDeviceIdAndPlatform(deviceId string) {
|
func (me *PushNotification) SetDeviceIdAndPlatform(deviceId string) {
|
||||||
|
|
||||||
parts := strings.Split(deviceId, ":")
|
index := strings.Index(deviceId, ":")
|
||||||
if len(parts) == 2 {
|
|
||||||
me.Platform = parts[0]
|
if index > -1 {
|
||||||
me.DeviceId = parts[1]
|
me.Platform = deviceId[:index]
|
||||||
|
me.DeviceId = deviceId[index+1:]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,3 +17,78 @@ func TestPushNotification(t *testing.T) {
|
|||||||
t.Fatal("Ids do not match")
|
t.Fatal("Ids do not match")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestPushNotificationDeviceId(t *testing.T) {
|
||||||
|
|
||||||
|
msg := PushNotification{Platform: "test"}
|
||||||
|
|
||||||
|
msg.SetDeviceIdAndPlatform("android:12345")
|
||||||
|
if msg.Platform != "android" {
|
||||||
|
t.Fatal(msg.Platform)
|
||||||
|
}
|
||||||
|
if msg.DeviceId != "12345" {
|
||||||
|
t.Fatal(msg.DeviceId)
|
||||||
|
}
|
||||||
|
msg.Platform = ""
|
||||||
|
msg.DeviceId = ""
|
||||||
|
|
||||||
|
msg.SetDeviceIdAndPlatform("android:12:345")
|
||||||
|
if msg.Platform != "android" {
|
||||||
|
t.Fatal(msg.Platform)
|
||||||
|
}
|
||||||
|
if msg.DeviceId != "12:345" {
|
||||||
|
t.Fatal(msg.DeviceId)
|
||||||
|
}
|
||||||
|
msg.Platform = ""
|
||||||
|
msg.DeviceId = ""
|
||||||
|
|
||||||
|
msg.SetDeviceIdAndPlatform("android::12345")
|
||||||
|
if msg.Platform != "android" {
|
||||||
|
t.Fatal(msg.Platform)
|
||||||
|
}
|
||||||
|
if msg.DeviceId != ":12345" {
|
||||||
|
t.Fatal(msg.DeviceId)
|
||||||
|
}
|
||||||
|
msg.Platform = ""
|
||||||
|
msg.DeviceId = ""
|
||||||
|
|
||||||
|
msg.SetDeviceIdAndPlatform(":12345")
|
||||||
|
if msg.Platform != "" {
|
||||||
|
t.Fatal(msg.Platform)
|
||||||
|
}
|
||||||
|
if msg.DeviceId != "12345" {
|
||||||
|
t.Fatal(msg.DeviceId)
|
||||||
|
}
|
||||||
|
msg.Platform = ""
|
||||||
|
msg.DeviceId = ""
|
||||||
|
|
||||||
|
msg.SetDeviceIdAndPlatform("android:")
|
||||||
|
if msg.Platform != "android" {
|
||||||
|
t.Fatal(msg.Platform)
|
||||||
|
}
|
||||||
|
if msg.DeviceId != "" {
|
||||||
|
t.Fatal(msg.DeviceId)
|
||||||
|
}
|
||||||
|
msg.Platform = ""
|
||||||
|
msg.DeviceId = ""
|
||||||
|
|
||||||
|
msg.SetDeviceIdAndPlatform("")
|
||||||
|
if msg.Platform != "" {
|
||||||
|
t.Fatal(msg.Platform)
|
||||||
|
}
|
||||||
|
if msg.DeviceId != "" {
|
||||||
|
t.Fatal(msg.DeviceId)
|
||||||
|
}
|
||||||
|
msg.Platform = ""
|
||||||
|
msg.DeviceId = ""
|
||||||
|
|
||||||
|
msg.SetDeviceIdAndPlatform(":")
|
||||||
|
if msg.Platform != "" {
|
||||||
|
t.Fatal(msg.Platform)
|
||||||
|
}
|
||||||
|
if msg.DeviceId != "" {
|
||||||
|
t.Fatal(msg.DeviceId)
|
||||||
|
}
|
||||||
|
msg.Platform = ""
|
||||||
|
msg.DeviceId = ""
|
||||||
|
}
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user