Merge pull request #76 from appleboy/storage

Fixed #75, #73 Rewrite boltdb, memory and redis engine.
This commit is contained in:
Bo-Yi Wu 2016-05-02 08:33:07 -05:00
commit 3af8d302fb
17 changed files with 368 additions and 497 deletions

View File

@ -1,4 +1,4 @@
package gorush package config
import ( import (
"gopkg.in/yaml.v2" "gopkg.in/yaml.v2"

View File

@ -1,4 +1,4 @@
package gorush package config
import ( import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"

View File

@ -3,6 +3,7 @@ package main
import ( import (
"flag" "flag"
"github.com/appleboy/gorush/gorush" "github.com/appleboy/gorush/gorush"
"github.com/appleboy/gorush/gorush/config"
"log" "log"
) )
@ -39,11 +40,11 @@ func main() {
var err error var err error
// set default parameters. // set default parameters.
gorush.PushConf = gorush.BuildDefaultPushConf() gorush.PushConf = config.BuildDefaultPushConf()
// load user define config. // load user define config.
if *confPath != "" { if *confPath != "" {
gorush.PushConf, err = gorush.LoadConfYaml(*confPath) gorush.PushConf, err = config.LoadConfYaml(*confPath)
if err != nil { if err != nil {
log.Printf("Load yaml config file error: '%v'", err) log.Printf("Load yaml config file error: '%v'", err)

View File

@ -3,13 +3,14 @@ package gorush
import ( import (
"crypto/tls" "crypto/tls"
"github.com/Sirupsen/logrus" "github.com/Sirupsen/logrus"
"github.com/appleboy/gorush/gorush/config"
apns "github.com/sideshow/apns2" apns "github.com/sideshow/apns2"
"gopkg.in/redis.v3" "gopkg.in/redis.v3"
) )
var ( var (
// PushConf is gorush config // PushConf is gorush config
PushConf ConfYaml PushConf config.ConfYaml
// QueueNotification is chan type // QueueNotification is chan type
QueueNotification chan PushNotification QueueNotification chan PushNotification
// CertificatePemIos is ios certificate file // CertificatePemIos is ios certificate file
@ -20,8 +21,8 @@ var (
LogAccess *logrus.Logger LogAccess *logrus.Logger
// LogError is log server error log // LogError is log server error log
LogError *logrus.Logger LogError *logrus.Logger
// RushStatus is notification status
RushStatus StatusApp
// RedisClient is global variable for redis // RedisClient is global variable for redis
RedisClient *redis.Client RedisClient *redis.Client
// StatStorage implements the storage interface
StatStorage Storage
) )

View File

@ -2,6 +2,7 @@ package gorush
import ( import (
"github.com/Sirupsen/logrus" "github.com/Sirupsen/logrus"
"github.com/appleboy/gorush/gorush/config"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"testing" "testing"
) )
@ -34,7 +35,7 @@ func TestSetLogOut(t *testing.T) {
} }
func TestInitDefaultLog(t *testing.T) { func TestInitDefaultLog(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
// no errors on default config // no errors on default config
assert.Nil(t, InitLog()) assert.Nil(t, InitLog())
@ -45,7 +46,7 @@ func TestInitDefaultLog(t *testing.T) {
} }
func TestAccessLevel(t *testing.T) { func TestAccessLevel(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Log.AccessLevel = "invalid" PushConf.Log.AccessLevel = "invalid"
@ -53,7 +54,7 @@ func TestAccessLevel(t *testing.T) {
} }
func TestErrorLevel(t *testing.T) { func TestErrorLevel(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Log.ErrorLevel = "invalid" PushConf.Log.ErrorLevel = "invalid"
@ -61,7 +62,7 @@ func TestErrorLevel(t *testing.T) {
} }
func TestAccessLogPath(t *testing.T) { func TestAccessLogPath(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Log.AccessLog = "logs/access.log" PushConf.Log.AccessLog = "logs/access.log"
@ -69,7 +70,7 @@ func TestAccessLogPath(t *testing.T) {
} }
func TestErrorLogPath(t *testing.T) { func TestErrorLogPath(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Log.ErrorLog = "logs/error.log" PushConf.Log.ErrorLog = "logs/error.log"

View File

@ -199,7 +199,7 @@ func queueNotification(req RequestPush) int {
count += len(notification.Tokens) count += len(notification.Tokens)
} }
addTotalCount(int64(count)) StatStorage.AddTotalCount(int64(count))
return count return count
} }
@ -315,7 +315,7 @@ func PushToIOS(req PushNotification) bool {
// apns server error // apns server error
LogPush(FailedPush, token, req, err) LogPush(FailedPush, token, req, err)
isError = true isError = true
addIosError(1) StatStorage.AddIosError(1)
continue continue
} }
@ -323,13 +323,13 @@ func PushToIOS(req PushNotification) bool {
// error message: // error message:
// ref: https://github.com/sideshow/apns2/blob/master/response.go#L14-L65 // ref: https://github.com/sideshow/apns2/blob/master/response.go#L14-L65
LogPush(FailedPush, token, req, errors.New(res.Reason)) LogPush(FailedPush, token, req, errors.New(res.Reason))
addIosError(1) StatStorage.AddIosError(1)
continue continue
} }
if res.Sent() { if res.Sent() {
LogPush(SucceededPush, token, req, nil) LogPush(SucceededPush, token, req, nil)
addIosSuccess(1) StatStorage.AddIosSuccess(1)
} }
} }
@ -410,8 +410,8 @@ func PushToAndroid(req PushNotification) bool {
} }
LogAccess.Debug(fmt.Sprintf("Android Success count: %d, Failure count: %d", res.Success, res.Failure)) LogAccess.Debug(fmt.Sprintf("Android Success count: %d, Failure count: %d", res.Success, res.Failure))
addAndroidSuccess(int64(res.Success)) StatStorage.AddAndroidSuccess(int64(res.Success))
addAndroidError(int64(res.Failure)) StatStorage.AddAndroidError(int64(res.Failure))
for k, result := range res.Results { for k, result := range res.Results {
if result.Error != "" { if result.Error != "" {

View File

@ -2,6 +2,7 @@ package gorush
import ( import (
"encoding/json" "encoding/json"
"github.com/appleboy/gorush/gorush/config"
"github.com/buger/jsonparser" "github.com/buger/jsonparser"
"github.com/google/go-gcm" "github.com/google/go-gcm"
"github.com/sideshow/apns2" "github.com/sideshow/apns2"
@ -13,7 +14,7 @@ import (
) )
func TestDisabledAndroidIosConf(t *testing.T) { func TestDisabledAndroidIosConf(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
err := CheckPushConf() err := CheckPushConf()
@ -22,7 +23,7 @@ func TestDisabledAndroidIosConf(t *testing.T) {
} }
func TestMissingIOSCertificate(t *testing.T) { func TestMissingIOSCertificate(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Ios.Enabled = true PushConf.Ios.Enabled = true
PushConf.Ios.PemKeyPath = "" PushConf.Ios.PemKeyPath = ""
@ -34,7 +35,7 @@ func TestMissingIOSCertificate(t *testing.T) {
} }
func TestMissingAndroidAPIKey(t *testing.T) { func TestMissingAndroidAPIKey(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Android.Enabled = true PushConf.Android.Enabled = true
PushConf.Android.APIKey = "" PushConf.Android.APIKey = ""
@ -46,7 +47,7 @@ func TestMissingAndroidAPIKey(t *testing.T) {
} }
func TestCorrectConf(t *testing.T) { func TestCorrectConf(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Android.Enabled = true PushConf.Android.Enabled = true
PushConf.Android.APIKey = "xxxxx" PushConf.Android.APIKey = "xxxxx"
@ -217,11 +218,12 @@ func TestAndroidNotificationStructure(t *testing.T) {
} }
func TestPushToIOS(t *testing.T) { func TestPushToIOS(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Ios.Enabled = true PushConf.Ios.Enabled = true
PushConf.Ios.PemKeyPath = "../certificate/certificate-valid.pem" PushConf.Ios.PemKeyPath = "../certificate/certificate-valid.pem"
InitAPNSClient() InitAPNSClient()
InitAppStatus()
req := PushNotification{ req := PushNotification{
Tokens: []string{"11aa01229f15f0f0c52029d8cf8cd0aeaf2365fe4cebc4af26cd6d76b7919ef7"}, Tokens: []string{"11aa01229f15f0f0c52029d8cf8cd0aeaf2365fe4cebc4af26cd6d76b7919ef7"},
@ -234,7 +236,7 @@ func TestPushToIOS(t *testing.T) {
} }
func TestPushToAndroidWrongAPIKey(t *testing.T) { func TestPushToAndroidWrongAPIKey(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Android.Enabled = true PushConf.Android.Enabled = true
PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY") + "a" PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY") + "a"
@ -250,7 +252,7 @@ func TestPushToAndroidWrongAPIKey(t *testing.T) {
} }
func TestPushToAndroidWrongToken(t *testing.T) { func TestPushToAndroidWrongToken(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Android.Enabled = true PushConf.Android.Enabled = true
PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY") PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY")
@ -266,7 +268,7 @@ func TestPushToAndroidWrongToken(t *testing.T) {
} }
func TestPushToAndroidRightTokenForJSONLog(t *testing.T) { func TestPushToAndroidRightTokenForJSONLog(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Android.Enabled = true PushConf.Android.Enabled = true
PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY") PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY")
@ -286,7 +288,7 @@ func TestPushToAndroidRightTokenForJSONLog(t *testing.T) {
} }
func TestPushToAndroidRightTokenForStringLog(t *testing.T) { func TestPushToAndroidRightTokenForStringLog(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Android.Enabled = true PushConf.Android.Enabled = true
PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY") PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY")
@ -304,7 +306,7 @@ func TestPushToAndroidRightTokenForStringLog(t *testing.T) {
} }
func TestOverwriteAndroidAPIKey(t *testing.T) { func TestOverwriteAndroidAPIKey(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Android.Enabled = true PushConf.Android.Enabled = true
PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY") PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY")
@ -324,7 +326,7 @@ func TestOverwriteAndroidAPIKey(t *testing.T) {
} }
func TestSenMultipleNotifications(t *testing.T) { func TestSenMultipleNotifications(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
InitWorkers(2, 2) InitWorkers(2, 2)
@ -359,7 +361,7 @@ func TestSenMultipleNotifications(t *testing.T) {
} }
func TestDisabledAndroidNotifications(t *testing.T) { func TestDisabledAndroidNotifications(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Ios.Enabled = true PushConf.Ios.Enabled = true
PushConf.Ios.PemKeyPath = "../certificate/certificate-valid.pem" PushConf.Ios.PemKeyPath = "../certificate/certificate-valid.pem"
@ -392,7 +394,7 @@ func TestDisabledAndroidNotifications(t *testing.T) {
} }
func TestDisabledIosNotifications(t *testing.T) { func TestDisabledIosNotifications(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Ios.Enabled = false PushConf.Ios.Enabled = false
PushConf.Ios.PemKeyPath = "../certificate/certificate-valid.pem" PushConf.Ios.PemKeyPath = "../certificate/certificate-valid.pem"
@ -425,7 +427,7 @@ func TestDisabledIosNotifications(t *testing.T) {
} }
func TestMissingIosCertificate(t *testing.T) { func TestMissingIosCertificate(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Ios.Enabled = true PushConf.Ios.Enabled = true
PushConf.Ios.PemKeyPath = "test" PushConf.Ios.PemKeyPath = "test"
@ -435,7 +437,7 @@ func TestMissingIosCertificate(t *testing.T) {
} }
func TestAPNSClientDevHost(t *testing.T) { func TestAPNSClientDevHost(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Ios.Enabled = true PushConf.Ios.Enabled = true
PushConf.Ios.PemKeyPath = "../certificate/certificate-valid.pem" PushConf.Ios.PemKeyPath = "../certificate/certificate-valid.pem"
@ -445,7 +447,7 @@ func TestAPNSClientDevHost(t *testing.T) {
} }
func TestAPNSClientProdHost(t *testing.T) { func TestAPNSClientProdHost(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Ios.Enabled = true PushConf.Ios.Enabled = true
PushConf.Ios.Production = true PushConf.Ios.Production = true
@ -520,7 +522,7 @@ func TestGCMMessage(t *testing.T) {
} }
func TestCheckAndroidMessage(t *testing.T) { func TestCheckAndroidMessage(t *testing.T) {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Android.Enabled = true PushConf.Android.Enabled = true
PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY") PushConf.Android.APIKey = os.Getenv("ANDROID_API_KEY")

View File

@ -2,6 +2,7 @@ package gorush
import ( import (
"github.com/appleboy/gofight" "github.com/appleboy/gofight"
"github.com/appleboy/gorush/gorush/config"
"github.com/buger/jsonparser" "github.com/buger/jsonparser"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
@ -15,7 +16,7 @@ import (
var goVersion = runtime.Version() var goVersion = runtime.Version()
func initTest() { func initTest() {
PushConf = BuildDefaultPushConf() PushConf = config.BuildDefaultPushConf()
PushConf.Core.Mode = "test" PushConf.Core.Mode = "test"
} }

View File

@ -1,12 +1,11 @@
package gorush package gorush
import ( import (
"github.com/asdine/storm" "github.com/appleboy/gorush/gorush/storage/boltdb"
"github.com/appleboy/gorush/gorush/storage/memory"
"github.com/appleboy/gorush/gorush/storage/redis"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"gopkg.in/redis.v3"
"net/http" "net/http"
"strconv"
"sync/atomic"
) )
// StatusApp is app status structure // StatusApp is app status structure
@ -30,234 +29,40 @@ type IosStatus struct {
PushError int64 `json:"push_error"` PushError int64 `json:"push_error"`
} }
func initApp() { // InitAppStatus for initialize app status
RushStatus.TotalCount = 0 func InitAppStatus() error {
RushStatus.Ios.PushSuccess = 0 switch PushConf.Stat.Engine {
RushStatus.Ios.PushError = 0 case "memory":
RushStatus.Android.PushSuccess = 0 StatStorage = memory.New()
RushStatus.Android.PushError = 0 case "redis":
} StatStorage = redis.New(PushConf)
err := StatStorage.Init()
func initRedis() error { if err != nil {
RedisClient = redis.NewClient(&redis.Options{ LogError.Error("redis error: " + err.Error())
Addr: PushConf.Stat.Redis.Addr,
Password: PushConf.Stat.Redis.Password,
DB: PushConf.Stat.Redis.DB,
})
_, err := RedisClient.Ping().Result() return err
}
if err != nil { case "boltdb":
// redis server error StatStorage = boltdb.New(PushConf)
LogError.Error("Can't connect redis server: " + err.Error()) default:
StatStorage = memory.New()
return err
} }
RushStatus.TotalCount = getTotalCount()
RushStatus.Ios.PushSuccess = getIosSuccess()
RushStatus.Ios.PushError = getIosError()
RushStatus.Android.PushSuccess = getAndroidSuccess()
RushStatus.Android.PushError = getAndroidError()
return nil return nil
} }
func initBoltDB() {
RushStatus.TotalCount = getTotalCount()
RushStatus.Ios.PushSuccess = getIosSuccess()
RushStatus.Ios.PushError = getIosError()
RushStatus.Android.PushSuccess = getAndroidSuccess()
RushStatus.Android.PushError = getAndroidError()
}
// InitAppStatus for initialize app status
func InitAppStatus() {
switch PushConf.Stat.Engine {
case "memory":
initApp()
case "redis":
initRedis()
case "boltdb":
initBoltDB()
default:
initApp()
}
}
func getRedisInt64Result(key string, count *int64) {
val, _ := RedisClient.Get(key).Result()
*count, _ = strconv.ParseInt(val, 10, 64)
}
func boltdbSet(key string, count int64) {
db, _ := storm.Open(PushConf.Stat.BoltDB.Path)
db.Set(PushConf.Stat.BoltDB.Bucket, key, count)
defer db.Close()
}
func boltdbGet(key string, count *int64) {
db, _ := storm.Open(PushConf.Stat.BoltDB.Path)
db.Get(PushConf.Stat.BoltDB.Bucket, key, count)
defer db.Close()
}
func addTotalCount(count int64) {
switch PushConf.Stat.Engine {
case "memory":
atomic.AddInt64(&RushStatus.TotalCount, count)
case "redis":
RedisClient.Set(TotalCountKey, strconv.Itoa(int(count)), 0)
case "boltdb":
boltdbSet(TotalCountKey, count)
default:
atomic.AddInt64(&RushStatus.TotalCount, count)
}
}
func addIosSuccess(count int64) {
switch PushConf.Stat.Engine {
case "memory":
atomic.AddInt64(&RushStatus.Ios.PushSuccess, count)
case "redis":
RedisClient.Set(IosSuccessKey, strconv.Itoa(int(count)), 0)
case "boltdb":
boltdbSet(IosSuccessKey, count)
default:
atomic.AddInt64(&RushStatus.Ios.PushSuccess, count)
}
}
func addIosError(count int64) {
switch PushConf.Stat.Engine {
case "memory":
atomic.AddInt64(&RushStatus.Ios.PushError, count)
case "redis":
RedisClient.Set(IosErrorKey, strconv.Itoa(int(count)), 0)
case "boltdb":
boltdbSet(IosErrorKey, count)
default:
atomic.AddInt64(&RushStatus.Ios.PushError, count)
}
}
func addAndroidSuccess(count int64) {
switch PushConf.Stat.Engine {
case "memory":
atomic.AddInt64(&RushStatus.Android.PushSuccess, count)
case "redis":
RedisClient.Set(AndroidSuccessKey, strconv.Itoa(int(count)), 0)
case "boltdb":
boltdbSet(AndroidSuccessKey, count)
default:
atomic.AddInt64(&RushStatus.Android.PushSuccess, count)
}
}
func addAndroidError(count int64) {
switch PushConf.Stat.Engine {
case "memory":
atomic.AddInt64(&RushStatus.Android.PushError, count)
case "redis":
RedisClient.Set(AndroidErrorKey, strconv.Itoa(int(count)), 0)
case "boltdb":
boltdbSet(AndroidErrorKey, count)
default:
atomic.AddInt64(&RushStatus.Android.PushError, count)
}
}
func getTotalCount() int64 {
var count int64
switch PushConf.Stat.Engine {
case "memory":
count = atomic.LoadInt64(&RushStatus.TotalCount)
case "redis":
getRedisInt64Result(TotalCountKey, &count)
case "boltdb":
boltdbGet(TotalCountKey, &count)
default:
count = atomic.LoadInt64(&RushStatus.TotalCount)
}
return count
}
func getIosSuccess() int64 {
var count int64
switch PushConf.Stat.Engine {
case "memory":
count = atomic.LoadInt64(&RushStatus.Ios.PushSuccess)
case "redis":
getRedisInt64Result(IosSuccessKey, &count)
case "boltdb":
boltdbGet(IosSuccessKey, &count)
default:
count = atomic.LoadInt64(&RushStatus.Ios.PushSuccess)
}
return count
}
func getIosError() int64 {
var count int64
switch PushConf.Stat.Engine {
case "memory":
count = atomic.LoadInt64(&RushStatus.Ios.PushError)
case "redis":
getRedisInt64Result(IosErrorKey, &count)
case "boltdb":
boltdbGet(IosErrorKey, &count)
default:
count = atomic.LoadInt64(&RushStatus.Ios.PushError)
}
return count
}
func getAndroidSuccess() int64 {
var count int64
switch PushConf.Stat.Engine {
case "memory":
count = atomic.LoadInt64(&RushStatus.Android.PushSuccess)
case "redis":
getRedisInt64Result(AndroidSuccessKey, &count)
case "boltdb":
boltdbGet(AndroidSuccessKey, &count)
default:
count = atomic.LoadInt64(&RushStatus.Android.PushSuccess)
}
return count
}
func getAndroidError() int64 {
var count int64
switch PushConf.Stat.Engine {
case "memory":
count = atomic.LoadInt64(&RushStatus.Android.PushError)
case "redis":
getRedisInt64Result(AndroidErrorKey, &count)
case "boltdb":
boltdbGet(AndroidErrorKey, &count)
default:
count = atomic.LoadInt64(&RushStatus.Android.PushError)
}
return count
}
func appStatusHandler(c *gin.Context) { func appStatusHandler(c *gin.Context) {
result := StatusApp{} result := StatusApp{}
result.QueueMax = cap(QueueNotification) result.QueueMax = cap(QueueNotification)
result.QueueUsage = len(QueueNotification) result.QueueUsage = len(QueueNotification)
result.TotalCount = getTotalCount() result.TotalCount = StatStorage.GetTotalCount()
result.Ios.PushSuccess = getIosSuccess() result.Ios.PushSuccess = StatStorage.GetIosSuccess()
result.Ios.PushError = getIosError() result.Ios.PushError = StatStorage.GetIosError()
result.Android.PushSuccess = getAndroidSuccess() result.Android.PushSuccess = StatStorage.GetAndroidSuccess()
result.Android.PushError = getAndroidError() result.Android.PushError = StatStorage.GetAndroidError()
c.JSON(http.StatusOK, result) c.JSON(http.StatusOK, result)
} }

View File

@ -2,67 +2,92 @@ package gorush
import ( import (
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"sync/atomic" // "sync/atomic"
"testing" "testing"
) )
func TestAddTotalCount(t *testing.T) { // func TestAddTotalCount(t *testing.T) {
// InitAppStatus()
// addTotalCount(1000)
// val := atomic.LoadInt64(&RushStatus.TotalCount)
// assert.Equal(t, int64(1000), val)
// }
// func TestAddIosSuccess(t *testing.T) {
// InitAppStatus()
// addIosSuccess(1000)
// val := atomic.LoadInt64(&RushStatus.Ios.PushSuccess)
// assert.Equal(t, int64(1000), val)
// }
// func TestAddIosError(t *testing.T) {
// InitAppStatus()
// addIosError(1000)
// val := atomic.LoadInt64(&RushStatus.Ios.PushError)
// assert.Equal(t, int64(1000), val)
// }
// func TestAndroidSuccess(t *testing.T) {
// InitAppStatus()
// addAndroidSuccess(1000)
// val := atomic.LoadInt64(&RushStatus.Android.PushSuccess)
// assert.Equal(t, int64(1000), val)
// }
// func TestAddAndroidError(t *testing.T) {
// InitAppStatus()
// addAndroidError(1000)
// val := atomic.LoadInt64(&RushStatus.Android.PushError)
// assert.Equal(t, int64(1000), val)
// }
func TestStatForMemoryEngine(t *testing.T) {
var val int64
PushConf.Stat.Engine = "memory"
InitAppStatus() InitAppStatus()
addTotalCount(1000)
val := atomic.LoadInt64(&RushStatus.TotalCount) StatStorage.AddTotalCount(100)
StatStorage.AddIosSuccess(200)
StatStorage.AddIosError(300)
StatStorage.AddAndroidSuccess(400)
StatStorage.AddAndroidError(500)
assert.Equal(t, int64(1000), val) val = StatStorage.GetTotalCount()
} assert.Equal(t, int64(100), val)
val = StatStorage.GetIosSuccess()
func TestAddIosSuccess(t *testing.T) { assert.Equal(t, int64(200), val)
InitAppStatus() val = StatStorage.GetIosError()
addIosSuccess(1000) assert.Equal(t, int64(300), val)
val = StatStorage.GetAndroidSuccess()
val := atomic.LoadInt64(&RushStatus.Ios.PushSuccess) assert.Equal(t, int64(400), val)
val = StatStorage.GetAndroidError()
assert.Equal(t, int64(1000), val) assert.Equal(t, int64(500), val)
}
func TestAddIosError(t *testing.T) {
InitAppStatus()
addIosError(1000)
val := atomic.LoadInt64(&RushStatus.Ios.PushError)
assert.Equal(t, int64(1000), val)
}
func TestAndroidSuccess(t *testing.T) {
InitAppStatus()
addAndroidSuccess(1000)
val := atomic.LoadInt64(&RushStatus.Android.PushSuccess)
assert.Equal(t, int64(1000), val)
}
func TestAddAndroidError(t *testing.T) {
InitAppStatus()
addAndroidError(1000)
val := atomic.LoadInt64(&RushStatus.Android.PushError)
assert.Equal(t, int64(1000), val)
} }
func TestRedisServerSuccess(t *testing.T) { func TestRedisServerSuccess(t *testing.T) {
PushConf.Stat.Engine = "redis"
PushConf.Stat.Redis.Addr = "localhost:6379" PushConf.Stat.Redis.Addr = "localhost:6379"
err := initRedis() err := InitAppStatus()
assert.NoError(t, err) assert.NoError(t, err)
} }
func TestRedisServerError(t *testing.T) { func TestRedisServerError(t *testing.T) {
PushConf.Stat.Engine = "redis"
PushConf.Stat.Redis.Addr = "localhost:6370" PushConf.Stat.Redis.Addr = "localhost:6370"
err := initRedis() err := InitAppStatus()
assert.Error(t, err) assert.Error(t, err)
} }
@ -73,22 +98,25 @@ func TestStatForRedisEngine(t *testing.T) {
PushConf.Stat.Redis.Addr = "localhost:6379" PushConf.Stat.Redis.Addr = "localhost:6379"
InitAppStatus() InitAppStatus()
addTotalCount(10) StatStorage.Init()
addIosSuccess(20) StatStorage.Reset()
addIosError(30)
addAndroidSuccess(40)
addAndroidError(50)
val = getTotalCount() StatStorage.AddTotalCount(100)
assert.Equal(t, int64(10), val) StatStorage.AddIosSuccess(200)
val = getIosSuccess() StatStorage.AddIosError(300)
assert.Equal(t, int64(20), val) StatStorage.AddAndroidSuccess(400)
val = getIosError() StatStorage.AddAndroidError(500)
assert.Equal(t, int64(30), val)
val = getAndroidSuccess() val = StatStorage.GetTotalCount()
assert.Equal(t, int64(40), val) assert.Equal(t, int64(100), val)
val = getAndroidError() val = StatStorage.GetIosSuccess()
assert.Equal(t, int64(50), val) assert.Equal(t, int64(200), val)
val = StatStorage.GetIosError()
assert.Equal(t, int64(300), val)
val = StatStorage.GetAndroidSuccess()
assert.Equal(t, int64(400), val)
val = StatStorage.GetAndroidError()
assert.Equal(t, int64(500), val)
} }
func TestDefaultEngine(t *testing.T) { func TestDefaultEngine(t *testing.T) {
@ -96,22 +124,22 @@ func TestDefaultEngine(t *testing.T) {
PushConf.Stat.Engine = "test" PushConf.Stat.Engine = "test"
InitAppStatus() InitAppStatus()
addTotalCount(1) StatStorage.AddTotalCount(100)
addIosSuccess(2) StatStorage.AddIosSuccess(200)
addIosError(3) StatStorage.AddIosError(300)
addAndroidSuccess(4) StatStorage.AddAndroidSuccess(400)
addAndroidError(5) StatStorage.AddAndroidError(500)
val = getTotalCount() val = StatStorage.GetTotalCount()
assert.Equal(t, int64(1), val) assert.Equal(t, int64(100), val)
val = getIosSuccess() val = StatStorage.GetIosSuccess()
assert.Equal(t, int64(2), val) assert.Equal(t, int64(200), val)
val = getIosError() val = StatStorage.GetIosError()
assert.Equal(t, int64(3), val) assert.Equal(t, int64(300), val)
val = getAndroidSuccess() val = StatStorage.GetAndroidSuccess()
assert.Equal(t, int64(4), val) assert.Equal(t, int64(400), val)
val = getAndroidError() val = StatStorage.GetAndroidError()
assert.Equal(t, int64(5), val) assert.Equal(t, int64(500), val)
} }
func TestStatForBoltDBEngine(t *testing.T) { func TestStatForBoltDBEngine(t *testing.T) {
@ -119,20 +147,22 @@ func TestStatForBoltDBEngine(t *testing.T) {
PushConf.Stat.Engine = "boltdb" PushConf.Stat.Engine = "boltdb"
InitAppStatus() InitAppStatus()
addTotalCount(100) StatStorage.Reset()
addIosSuccess(200)
addIosError(300)
addAndroidSuccess(400)
addAndroidError(500)
val = getTotalCount() StatStorage.AddTotalCount(100)
StatStorage.AddIosSuccess(200)
StatStorage.AddIosError(300)
StatStorage.AddAndroidSuccess(400)
StatStorage.AddAndroidError(500)
val = StatStorage.GetTotalCount()
assert.Equal(t, int64(100), val) assert.Equal(t, int64(100), val)
val = getIosSuccess() val = StatStorage.GetIosSuccess()
assert.Equal(t, int64(200), val) assert.Equal(t, int64(200), val)
val = getIosError() val = StatStorage.GetIosError()
assert.Equal(t, int64(300), val) assert.Equal(t, int64(300), val)
val = getAndroidSuccess() val = StatStorage.GetAndroidSuccess()
assert.Equal(t, int64(400), val) assert.Equal(t, int64(400), val)
val = getAndroidError() val = StatStorage.GetAndroidError()
assert.Equal(t, int64(500), val) assert.Equal(t, int64(500), val)
} }

View File

@ -2,14 +2,16 @@ package gorush
// Storage interface // Storage interface
type Storage interface { type Storage interface {
addTotalCount(int64) Init() error
addIosSuccess(int64) Reset()
addIosError(int64) AddTotalCount(int64)
addAndroidSuccess(int64) AddIosSuccess(int64)
addAndroidError(int64) AddIosError(int64)
getTotalCount() int64 AddAndroidSuccess(int64)
getIosSuccess() int64 AddAndroidError(int64)
getIosError() int64 GetTotalCount() int64
getAndroidSuccess() int64 GetIosSuccess() int64
getAndroidError() int64 GetIosError() int64
GetAndroidSuccess() int64
GetAndroidError() int64
} }

View File

@ -1,37 +1,40 @@
package boltdb package boltdb
import ( import (
"github.com/appleboy/gorush/gorush" "github.com/appleboy/gorush/gorush/config"
"github.com/asdine/storm" "github.com/asdine/storm"
) )
// Stat variable for redis
const (
TotalCountKey = "gorush-total-count"
IosSuccessKey = "gorush-ios-success-count"
IosErrorKey = "gorush-ios-error-count"
AndroidSuccessKey = "gorush-android-success-count"
AndroidErrorKey = "gorush-android-error-count"
)
// Storage implements the storage interface for gorush (https://github.com/appleboy/gorush) // Storage implements the storage interface for gorush (https://github.com/appleboy/gorush)
func New(config gorush.ConfYaml, stat gorush.StatusApp) *Storage { func New(config config.ConfYaml) *Storage {
return &Storage{ return &Storage{
stat: stat,
config: config, config: config,
} }
} }
type Storage struct { type Storage struct {
config gorush.ConfYaml config config.ConfYaml
stat gorush.StatusApp
} }
func (s *Storage) initBoltDB() { func (s *Storage) Init() error {
s.stat.TotalCount = s.getTotalCount() return nil
s.stat.Ios.PushSuccess = s.getIosSuccess()
s.stat.Ios.PushError = s.getIosError()
s.stat.Android.PushSuccess = s.getAndroidSuccess()
s.stat.Android.PushError = s.getAndroidError()
} }
func (s *Storage) resetBoltDB() { func (s *Storage) Reset() {
s.setBoltDB(gorush.TotalCountKey, 0) s.setBoltDB(TotalCountKey, 0)
s.setBoltDB(gorush.IosSuccessKey, 0) s.setBoltDB(IosSuccessKey, 0)
s.setBoltDB(gorush.IosErrorKey, 0) s.setBoltDB(IosErrorKey, 0)
s.setBoltDB(gorush.AndroidSuccessKey, 0) s.setBoltDB(AndroidSuccessKey, 0)
s.setBoltDB(gorush.AndroidErrorKey, 0) s.setBoltDB(AndroidErrorKey, 0)
} }
func (s *Storage) setBoltDB(key string, count int64) { func (s *Storage) setBoltDB(key string, count int64) {
@ -46,62 +49,62 @@ func (s *Storage) getBoltDB(key string, count *int64) {
defer db.Close() defer db.Close()
} }
func (s *Storage) addTotalCount(count int64) { func (s *Storage) AddTotalCount(count int64) {
total := s.getTotalCount() + count total := s.GetTotalCount() + count
s.setBoltDB(gorush.TotalCountKey, total) s.setBoltDB(TotalCountKey, total)
} }
func (s *Storage) addIosSuccess(count int64) { func (s *Storage) AddIosSuccess(count int64) {
total := s.getIosSuccess() + count total := s.GetIosSuccess() + count
s.setBoltDB(gorush.IosSuccessKey, total) s.setBoltDB(IosSuccessKey, total)
} }
func (s *Storage) addIosError(count int64) { func (s *Storage) AddIosError(count int64) {
total := s.getIosError() + count total := s.GetIosError() + count
s.setBoltDB(gorush.IosErrorKey, total) s.setBoltDB(IosErrorKey, total)
} }
func (s *Storage) addAndroidSuccess(count int64) { func (s *Storage) AddAndroidSuccess(count int64) {
total := s.getAndroidSuccess() + count total := s.GetAndroidSuccess() + count
s.setBoltDB(gorush.AndroidSuccessKey, total) s.setBoltDB(AndroidSuccessKey, total)
} }
func (s *Storage) addAndroidError(count int64) { func (s *Storage) AddAndroidError(count int64) {
total := s.getAndroidError() + count total := s.GetAndroidError() + count
s.setBoltDB(gorush.AndroidErrorKey, total) s.setBoltDB(AndroidErrorKey, total)
} }
func (s *Storage) getTotalCount() int64 { func (s *Storage) GetTotalCount() int64 {
var count int64 var count int64
s.getBoltDB(gorush.TotalCountKey, &count) s.getBoltDB(TotalCountKey, &count)
return count return count
} }
func (s *Storage) getIosSuccess() int64 { func (s *Storage) GetIosSuccess() int64 {
var count int64 var count int64
s.getBoltDB(gorush.IosSuccessKey, &count) s.getBoltDB(IosSuccessKey, &count)
return count return count
} }
func (s *Storage) getIosError() int64 { func (s *Storage) GetIosError() int64 {
var count int64 var count int64
s.getBoltDB(gorush.IosErrorKey, &count) s.getBoltDB(IosErrorKey, &count)
return count return count
} }
func (s *Storage) getAndroidSuccess() int64 { func (s *Storage) GetAndroidSuccess() int64 {
var count int64 var count int64
s.getBoltDB(gorush.AndroidSuccessKey, &count) s.getBoltDB(AndroidSuccessKey, &count)
return count return count
} }
func (s *Storage) getAndroidError() int64 { func (s *Storage) GetAndroidError() int64 {
var count int64 var count int64
s.getBoltDB(gorush.AndroidErrorKey, &count) s.getBoltDB(AndroidErrorKey, &count)
return count return count
} }

View File

@ -1,7 +1,7 @@
package boltdb package boltdb
import ( import (
"github.com/appleboy/gorush/gorush" c "github.com/appleboy/gorush/gorush/config"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"testing" "testing"
) )
@ -9,32 +9,32 @@ import (
func TestRedisEngine(t *testing.T) { func TestRedisEngine(t *testing.T) {
var val int64 var val int64
config := gorush.BuildDefaultPushConf() config := c.BuildDefaultPushConf()
boltDB := New(config, gorush.StatusApp{}) boltDB := New(config)
boltDB.initBoltDB() boltDB.Init()
boltDB.resetBoltDB() boltDB.Reset()
boltDB.addTotalCount(10) boltDB.AddTotalCount(10)
val = boltDB.getTotalCount() val = boltDB.GetTotalCount()
assert.Equal(t, int64(10), val) assert.Equal(t, int64(10), val)
boltDB.addTotalCount(10) boltDB.AddTotalCount(10)
val = boltDB.getTotalCount() val = boltDB.GetTotalCount()
assert.Equal(t, int64(20), val) assert.Equal(t, int64(20), val)
boltDB.addIosSuccess(20) boltDB.AddIosSuccess(20)
val = boltDB.getIosSuccess() val = boltDB.GetIosSuccess()
assert.Equal(t, int64(20), val) assert.Equal(t, int64(20), val)
boltDB.addIosError(30) boltDB.AddIosError(30)
val = boltDB.getIosError() val = boltDB.GetIosError()
assert.Equal(t, int64(30), val) assert.Equal(t, int64(30), val)
boltDB.addAndroidSuccess(40) boltDB.AddAndroidSuccess(40)
val = boltDB.getAndroidSuccess() val = boltDB.GetAndroidSuccess()
assert.Equal(t, int64(40), val) assert.Equal(t, int64(40), val)
boltDB.addAndroidError(50) boltDB.AddAndroidError(50)
val = boltDB.getAndroidError() val = boltDB.GetAndroidError()
assert.Equal(t, int64(50), val) assert.Equal(t, int64(50), val)
} }

View File

@ -1,66 +1,91 @@
package memory package memory
import ( import (
"github.com/appleboy/gorush/gorush"
"sync/atomic" "sync/atomic"
) )
// StatusApp is app status structure
type statApp struct {
TotalCount int64 `json:"total_count"`
Ios IosStatus `json:"ios"`
Android AndroidStatus `json:"android"`
}
// AndroidStatus is android structure
type AndroidStatus struct {
PushSuccess int64 `json:"push_success"`
PushError int64 `json:"push_error"`
}
// IosStatus is iOS structure
type IosStatus struct {
PushSuccess int64 `json:"push_success"`
PushError int64 `json:"push_error"`
}
// Storage implements the storage interface for gorush (https://github.com/appleboy/gorush) // Storage implements the storage interface for gorush (https://github.com/appleboy/gorush)
func New(stat gorush.StatusApp) *Storage { func New() *Storage {
return &Storage{ return &Storage{
stat: stat, stat: &statApp{},
} }
} }
type Storage struct { type Storage struct {
stat gorush.StatusApp stat *statApp
} }
func (s *Storage) addTotalCount(count int64) { func (s *Storage) Init() error {
return nil
}
func (s *Storage) Reset() {
}
func (s *Storage) AddTotalCount(count int64) {
atomic.AddInt64(&s.stat.TotalCount, count) atomic.AddInt64(&s.stat.TotalCount, count)
} }
func (s *Storage) addIosSuccess(count int64) { func (s *Storage) AddIosSuccess(count int64) {
atomic.AddInt64(&s.stat.Ios.PushSuccess, count) atomic.AddInt64(&s.stat.Ios.PushSuccess, count)
} }
func (s *Storage) addIosError(count int64) { func (s *Storage) AddIosError(count int64) {
atomic.AddInt64(&s.stat.Ios.PushError, count) atomic.AddInt64(&s.stat.Ios.PushError, count)
} }
func (s *Storage) addAndroidSuccess(count int64) { func (s *Storage) AddAndroidSuccess(count int64) {
atomic.AddInt64(&s.stat.Android.PushSuccess, count) atomic.AddInt64(&s.stat.Android.PushSuccess, count)
} }
func (s *Storage) addAndroidError(count int64) { func (s *Storage) AddAndroidError(count int64) {
atomic.AddInt64(&s.stat.Android.PushError, count) atomic.AddInt64(&s.stat.Android.PushError, count)
} }
func (s *Storage) getTotalCount() int64 { func (s *Storage) GetTotalCount() int64 {
count := atomic.LoadInt64(&s.stat.TotalCount) count := atomic.LoadInt64(&s.stat.TotalCount)
return count return count
} }
func (s *Storage) getIosSuccess() int64 { func (s *Storage) GetIosSuccess() int64 {
count := atomic.LoadInt64(&s.stat.Ios.PushSuccess) count := atomic.LoadInt64(&s.stat.Ios.PushSuccess)
return count return count
} }
func (s *Storage) getIosError() int64 { func (s *Storage) GetIosError() int64 {
count := atomic.LoadInt64(&s.stat.Ios.PushError) count := atomic.LoadInt64(&s.stat.Ios.PushError)
return count return count
} }
func (s *Storage) getAndroidSuccess() int64 { func (s *Storage) GetAndroidSuccess() int64 {
count := atomic.LoadInt64(&s.stat.Android.PushSuccess) count := atomic.LoadInt64(&s.stat.Android.PushSuccess)
return count return count
} }
func (s *Storage) getAndroidError() int64 { func (s *Storage) GetAndroidError() int64 {
count := atomic.LoadInt64(&s.stat.Android.PushError) count := atomic.LoadInt64(&s.stat.Android.PushError)
return count return count

View File

@ -1,7 +1,6 @@
package memory package memory
import ( import (
"github.com/appleboy/gorush/gorush"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"testing" "testing"
) )
@ -9,25 +8,25 @@ import (
func TestMemoryEngine(t *testing.T) { func TestMemoryEngine(t *testing.T) {
var val int64 var val int64
memory := New(gorush.StatusApp{}) memory := New()
memory.addTotalCount(1) memory.AddTotalCount(1)
val = memory.getTotalCount() val = memory.GetTotalCount()
assert.Equal(t, int64(1), val) assert.Equal(t, int64(1), val)
memory.addIosSuccess(2) memory.AddIosSuccess(2)
val = memory.getIosSuccess() val = memory.GetIosSuccess()
assert.Equal(t, int64(2), val) assert.Equal(t, int64(2), val)
memory.addIosError(3) memory.AddIosError(3)
val = memory.getIosError() val = memory.GetIosError()
assert.Equal(t, int64(3), val) assert.Equal(t, int64(3), val)
memory.addAndroidSuccess(4) memory.AddAndroidSuccess(4)
val = memory.getAndroidSuccess() val = memory.GetAndroidSuccess()
assert.Equal(t, int64(4), val) assert.Equal(t, int64(4), val)
memory.addAndroidError(5) memory.AddAndroidError(5)
val = memory.getAndroidError() val = memory.GetAndroidError()
assert.Equal(t, int64(5), val) assert.Equal(t, int64(5), val)
} }

View File

@ -1,33 +1,40 @@
package redis package redis
import ( import (
"github.com/appleboy/gorush/gorush" "github.com/appleboy/gorush/gorush/config"
"gopkg.in/redis.v3" "gopkg.in/redis.v3"
"log" "log"
"strconv" "strconv"
) )
// Stat variable for redis
const (
TotalCountKey = "gorush-total-count"
IosSuccessKey = "gorush-ios-success-count"
IosErrorKey = "gorush-ios-error-count"
AndroidSuccessKey = "gorush-android-success-count"
AndroidErrorKey = "gorush-android-error-count"
)
var RedisClient *redis.Client var RedisClient *redis.Client
// Storage implements the storage interface for gorush (https://github.com/appleboy/gorush) // Storage implements the storage interface for gorush (https://github.com/appleboy/gorush)
func New(config gorush.ConfYaml, stat gorush.StatusApp) *Storage { func New(config config.ConfYaml) *Storage {
return &Storage{ return &Storage{
stat: stat,
config: config, config: config,
} }
} }
func getRedisInt64Result(key string, count *int64) { func getInt64(key string, count *int64) {
val, _ := RedisClient.Get(key).Result() val, _ := RedisClient.Get(key).Result()
*count, _ = strconv.ParseInt(val, 10, 64) *count, _ = strconv.ParseInt(val, 10, 64)
} }
type Storage struct { type Storage struct {
config gorush.ConfYaml config config.ConfYaml
stat gorush.StatusApp
} }
func (s *Storage) initRedis() error { func (s *Storage) Init() error {
RedisClient = redis.NewClient(&redis.Options{ RedisClient = redis.NewClient(&redis.Options{
Addr: s.config.Stat.Redis.Addr, Addr: s.config.Stat.Redis.Addr,
Password: s.config.Stat.Redis.Password, Password: s.config.Stat.Redis.Password,
@ -43,79 +50,73 @@ func (s *Storage) initRedis() error {
return err return err
} }
s.stat.TotalCount = s.getTotalCount()
s.stat.Ios.PushSuccess = s.getIosSuccess()
s.stat.Ios.PushError = s.getIosError()
s.stat.Android.PushSuccess = s.getAndroidSuccess()
s.stat.Android.PushError = s.getAndroidError()
return nil return nil
} }
func (s *Storage) resetRedis() { func (s *Storage) Reset() {
RedisClient.Set(gorush.TotalCountKey, strconv.Itoa(0), 0) RedisClient.Set(TotalCountKey, strconv.Itoa(0), 0)
RedisClient.Set(gorush.IosSuccessKey, strconv.Itoa(0), 0) RedisClient.Set(IosSuccessKey, strconv.Itoa(0), 0)
RedisClient.Set(gorush.IosErrorKey, strconv.Itoa(0), 0) RedisClient.Set(IosErrorKey, strconv.Itoa(0), 0)
RedisClient.Set(gorush.AndroidSuccessKey, strconv.Itoa(0), 0) RedisClient.Set(AndroidSuccessKey, strconv.Itoa(0), 0)
RedisClient.Set(gorush.AndroidErrorKey, strconv.Itoa(0), 0) RedisClient.Set(AndroidErrorKey, strconv.Itoa(0), 0)
} }
func (s *Storage) addTotalCount(count int64) { func (s *Storage) AddTotalCount(count int64) {
total := s.getTotalCount() + count total := s.GetTotalCount() + count
RedisClient.Set(gorush.TotalCountKey, strconv.Itoa(int(total)), 0) RedisClient.Set(TotalCountKey, strconv.Itoa(int(total)), 0)
} }
func (s *Storage) addIosSuccess(count int64) { func (s *Storage) AddIosSuccess(count int64) {
total := s.getIosSuccess() + count total := s.GetIosSuccess() + count
RedisClient.Set(gorush.IosSuccessKey, strconv.Itoa(int(total)), 0) RedisClient.Set(IosSuccessKey, strconv.Itoa(int(total)), 0)
} }
func (s *Storage) addIosError(count int64) { func (s *Storage) AddIosError(count int64) {
total := s.getIosError() + count total := s.GetIosError() + count
RedisClient.Set(gorush.IosErrorKey, strconv.Itoa(int(total)), 0) RedisClient.Set(IosErrorKey, strconv.Itoa(int(total)), 0)
} }
func (s *Storage) addAndroidSuccess(count int64) { func (s *Storage) AddAndroidSuccess(count int64) {
total := s.getAndroidSuccess() + count total := s.GetAndroidSuccess() + count
RedisClient.Set(gorush.AndroidSuccessKey, strconv.Itoa(int(total)), 0) RedisClient.Set(AndroidSuccessKey, strconv.Itoa(int(total)), 0)
} }
func (s *Storage) addAndroidError(count int64) { func (s *Storage) AddAndroidError(count int64) {
total := s.getAndroidError() + count total := s.GetAndroidError() + count
RedisClient.Set(gorush.AndroidErrorKey, strconv.Itoa(int(total)), 0) RedisClient.Set(AndroidErrorKey, strconv.Itoa(int(total)), 0)
} }
func (s *Storage) getTotalCount() int64 { func (s *Storage) GetTotalCount() int64 {
var count int64 var count int64
getRedisInt64Result(gorush.TotalCountKey, &count) getInt64(TotalCountKey, &count)
return count return count
} }
func (s *Storage) getIosSuccess() int64 { func (s *Storage) GetIosSuccess() int64 {
var count int64 var count int64
getRedisInt64Result(gorush.IosSuccessKey, &count) getInt64(IosSuccessKey, &count)
return count return count
} }
func (s *Storage) getIosError() int64 { func (s *Storage) GetIosError() int64 {
var count int64 var count int64
getRedisInt64Result(gorush.IosErrorKey, &count) getInt64(IosErrorKey, &count)
return count return count
} }
func (s *Storage) getAndroidSuccess() int64 { func (s *Storage) GetAndroidSuccess() int64 {
var count int64 var count int64
getRedisInt64Result(gorush.AndroidSuccessKey, &count) getInt64(AndroidSuccessKey, &count)
return count return count
} }
func (s *Storage) getAndroidError() int64 { func (s *Storage) GetAndroidError() int64 {
var count int64 var count int64
getRedisInt64Result(gorush.AndroidErrorKey, &count) getInt64(AndroidErrorKey, &count)
return count return count
} }

View File

@ -1,17 +1,17 @@
package redis package redis
import ( import (
"github.com/appleboy/gorush/gorush" c "github.com/appleboy/gorush/gorush/config"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
"testing" "testing"
) )
func TestRedisServerError(t *testing.T) { func TestRedisServerError(t *testing.T) {
config := gorush.BuildDefaultPushConf() config := c.BuildDefaultPushConf()
config.Stat.Redis.Addr = "localhost:6370" config.Stat.Redis.Addr = "localhost:6370"
redis := New(config, gorush.StatusApp{}) redis := New(config)
err := redis.initRedis() err := redis.Init()
assert.Error(t, err) assert.Error(t, err)
} }
@ -19,32 +19,32 @@ func TestRedisServerError(t *testing.T) {
func TestRedisEngine(t *testing.T) { func TestRedisEngine(t *testing.T) {
var val int64 var val int64
config := gorush.BuildDefaultPushConf() config := c.BuildDefaultPushConf()
redis := New(config, gorush.StatusApp{}) redis := New(config)
redis.initRedis() redis.Init()
redis.resetRedis() redis.Reset()
redis.addTotalCount(10) redis.AddTotalCount(10)
val = redis.getTotalCount() val = redis.GetTotalCount()
assert.Equal(t, int64(10), val) assert.Equal(t, int64(10), val)
redis.addTotalCount(10) redis.AddTotalCount(10)
val = redis.getTotalCount() val = redis.GetTotalCount()
assert.Equal(t, int64(20), val) assert.Equal(t, int64(20), val)
redis.addIosSuccess(20) redis.AddIosSuccess(20)
val = redis.getIosSuccess() val = redis.GetIosSuccess()
assert.Equal(t, int64(20), val) assert.Equal(t, int64(20), val)
redis.addIosError(30) redis.AddIosError(30)
val = redis.getIosError() val = redis.GetIosError()
assert.Equal(t, int64(30), val) assert.Equal(t, int64(30), val)
redis.addAndroidSuccess(40) redis.AddAndroidSuccess(40)
val = redis.getAndroidSuccess() val = redis.GetAndroidSuccess()
assert.Equal(t, int64(40), val) assert.Equal(t, int64(40), val)
redis.addAndroidError(50) redis.AddAndroidError(50)
val = redis.getAndroidError() val = redis.GetAndroidError()
assert.Equal(t, int64(50), val) assert.Equal(t, int64(50), val)
} }