-
Notifications
You must be signed in to change notification settings - Fork 6
/
restful_server_test.go
83 lines (69 loc) · 2.02 KB
/
restful_server_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package main
import (
"encoding/json"
"io/ioutil"
"net/http"
"net/http/httptest"
"reflect"
"strings"
"testing"
"github.com/thrasher-corp/gocryptotrader/config"
)
func loadConfig(t *testing.T) *config.Config {
cfg := config.GetConfig()
err := cfg.LoadConfig(strings.Replace(config.ConfigTestFile, "..", ".", 1))
if err != nil {
t.Error("Test failed. GetCurrencyConfig LoadConfig error", err)
}
return cfg
}
func makeHTTPGetRequest(t *testing.T, response interface{}) *http.Response {
w := httptest.NewRecorder()
err := RESTfulJSONResponse(w, response)
if err != nil {
t.Error("Test failed. Failed to make response.", err)
}
return w.Result()
}
// TestConfigAllJsonResponse test if config/all restful json response is valid
func TestConfigAllJsonResponse(t *testing.T) {
cfg := loadConfig(t)
resp := makeHTTPGetRequest(t, cfg)
body, err := ioutil.ReadAll(resp.Body)
resp.Body.Close()
if err != nil {
t.Error("Test failed. Body not readable", err)
}
var responseConfig config.Config
jsonErr := json.Unmarshal(body, &responseConfig)
if jsonErr != nil {
t.Error("Test failed. Response not parseable as json", err)
}
if reflect.DeepEqual(responseConfig, cfg) {
t.Error("Test failed. Json not equal to config")
}
}
func TestInvalidHostRequest(t *testing.T) {
req, err := http.NewRequest(http.MethodGet, "/config/all", nil)
if err != nil {
t.Fatal(err)
}
req.Host = "invalidsite.com"
resp := httptest.NewRecorder()
NewRouter().ServeHTTP(resp, req)
if status := resp.Code; status != http.StatusNotFound {
t.Errorf("Test failed. Response returned wrong status code expected %v got %v", http.StatusNotFound, status)
}
}
func TestValidHostRequest(t *testing.T) {
req, err := http.NewRequest(http.MethodGet, "/config/all", nil)
if err != nil {
t.Fatal(err)
}
req.Host = "localhost:9050"
resp := httptest.NewRecorder()
NewRouter().ServeHTTP(resp, req)
if status := resp.Code; status != http.StatusOK {
t.Errorf("Test failed. Response returned wrong status code expected %v got %v", http.StatusOK, status)
}
}