fix travis tests
This commit is contained in:
parent
ecbedf4b89
commit
6e7d6f1a31
3 changed files with 33 additions and 8 deletions
|
@ -2,6 +2,9 @@ language: go
|
||||||
|
|
||||||
go: 1.1.2
|
go: 1.1.2
|
||||||
|
|
||||||
|
env:
|
||||||
|
- TRAVISCONFIGPATH=/home/travis/gopath/src/github.com/pushrax/chihaya/config/example.json
|
||||||
|
|
||||||
services:
|
services:
|
||||||
- redis-server
|
- redis-server
|
||||||
|
|
||||||
|
|
|
@ -11,14 +11,21 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func getConfigPath() string {
|
||||||
|
if os.Getenv("TRAVISCONFIGPATH") != "" {
|
||||||
|
return os.Getenv("TRAVISCONFIGPATH")
|
||||||
|
}
|
||||||
|
return os.ExpandEnv("$GOPATH/src/github.com/pushrax/chihaya/config/example.json")
|
||||||
|
}
|
||||||
|
|
||||||
func TestOpenConfig(t *testing.T) {
|
func TestOpenConfig(t *testing.T) {
|
||||||
if _, err := Open(os.ExpandEnv("$GOPATH/src/github.com/pushrax/chihaya/config/example.json")); err != nil {
|
if _, err := Open(getConfigPath()); err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestNewConfig(t *testing.T) {
|
func TestNewConfig(t *testing.T) {
|
||||||
contents, err := ioutil.ReadFile(os.ExpandEnv("$GOPATH/src/github.com/pushrax/chihaya/config/example.json"))
|
contents, err := ioutil.ReadFile(getConfigPath())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,6 @@ package server
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/http/httptest"
|
"net/http/httptest"
|
||||||
"os"
|
"os"
|
||||||
|
@ -18,13 +17,29 @@ import (
|
||||||
_ "github.com/pushrax/chihaya/storage/batter"
|
_ "github.com/pushrax/chihaya/storage/batter"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestStats(t *testing.T) {
|
func NewServer() (*Server, error) {
|
||||||
testConfig, err := config.Open(os.ExpandEnv("$GOPATH/src/github.com/pushrax/chihaya/config/example.json"))
|
var path string
|
||||||
if err != nil {
|
if os.Getenv("TRAVISCONFIGPATH") != "" {
|
||||||
t.Error(err)
|
path = os.Getenv("TRAVISCONFIGPATH")
|
||||||
|
} else {
|
||||||
|
path = os.ExpandEnv("$GOPATH/src/github.com/pushrax/chihaya/config/example.json")
|
||||||
}
|
}
|
||||||
fmt.Println(testConfig)
|
|
||||||
|
testConfig, err := config.Open(path)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
s, err := New(testConfig)
|
s, err := New(testConfig)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return s, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestStats(t *testing.T) {
|
||||||
|
s, err := NewServer()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Error(err)
|
t.Error(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue