Merge pull request #18 from appleboy/testing

Add testing and travis.
This commit is contained in:
Bo-Yi Wu 2016-04-01 10:01:03 +08:00
commit 2dfab78c06
5 changed files with 31 additions and 9 deletions

24
.travis.yml Normal file
View File

@ -0,0 +1,24 @@
sudo: false
language: go
go:
- 1.3
- 1.4
- 1.5
- 1.6
- tip
env:
global:
secure: ad5iOvyzCMdxp664YZD92Qse8EAB8R8jgoV8CspLBVbwfqPv2S+2IF2pHrxqd6o81y2sTgAr0VFOx9q9gVD3JZpT0vjpPIzscGNVYtup8bDBDFYIf3vwt6RVvJsSTYGQIQ6HulZ97CKB5W2pCI2q9pOrZqFzQG9lHA4J4m+XzAzH7eNx4PprboEwKKhESI4191ii47phWKcalcul00wo/oeM1u/Bmmg/rcGyQgzUHg3zFh+1avQp7z4yAMFmScRnJDJFABg9s9TVeQu8FQXUWTBv4tUQJrpPs60zRSxpt3ap9Yx67pkuVYpfZz9o9u6FLa8UC+zWVh+oHYXfYWrSmCcsyfLjy5Wg2Zt3Mx92Aqq8uiaGaLSxcn5pL9xeIK6X0uWixp2wzXMdjE9RkGRaPhTm/Ze4F810JyNR+i0AkM8py/gPEkVXkeIw+UGS/mo5bq4a5ntLKRbl1vePOIPUtpV8nlgBblNB6jqd3/wINRcCoNhNiKtr+uvUm1jKKK+hu4q9YncwG3gpB+u0DRR2KIPSgdUlzL3V43UMWIC12eEjVrS+xkMo7a2gfUXMzwmpMhQHZ2QMb0VMOgIde1X4nlOL0GHsrHJAp8AmjQF6xbv2gcxzs98zU9qKp/qm4QETGQvHaMXhvE8ogzx1EgXaJ0xn9SIAw11TBT6dpHLdcGI=
install:
- go get -t -v ./...
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go test -v -covermode=count -coverprofile=coverage.out
- $(go env GOPATH | awk 'BEGIN{FS=":"} {print $1}')/bin/goveralls -coverprofile=coverage.out
-service=travis-ci -repotoken=$COVERALLS_TOKEN

View File

@ -1,7 +1,7 @@
core:
port: "8088"
notification_max: 100
production: true
mode: "release"
ssl: false
cert_path: "cert.pem"
key_path: "key.pem"

View File

@ -16,7 +16,7 @@ type ConfYaml struct {
type SectionCore struct {
Port string `yaml:"port"`
NotificationMax int `yaml:"notification_max"`
Production bool `yaml:"production"`
Mode string `yaml:"mode"`
SSL bool `yaml:"ssl"`
CertPath string `yaml:"cert_path"`
KeyPath string `yaml:"key_path"`
@ -45,7 +45,7 @@ func BuildDefaultPushConf() ConfYaml {
// Core
conf.Core.Port = "8088"
conf.Core.NotificationMax = 100
conf.Core.Production = true
conf.Core.Mode = "release"
conf.Core.SSL = false
conf.Core.CertPath = "cert.pem"
conf.Core.KeyPath = "key.pem"

View File

@ -39,9 +39,8 @@ func pushHandler(c *gin.Context) {
}
func GetMainEngine() *gin.Engine {
if PushConf.Core.Production {
gin.SetMode(gin.ReleaseMode)
}
// set server mode
gin.SetMode(PushConf.Core.Mode)
r := gin.New()

View File

@ -3,18 +3,17 @@ package gopush
import (
"github.com/appleboy/gofight"
"github.com/buger/jsonparser"
"github.com/gin-gonic/gin"
"github.com/stretchr/testify/assert"
"net/http"
"testing"
)
func initTest() {
gin.SetMode(gin.TestMode)
PushConf = BuildDefaultPushConf()
PushConf.Core.Mode = "test"
}
func TestGinHelloWorld(t *testing.T) {
func TestRootHandler(t *testing.T) {
initTest()
r := gofight.New()