This repository was archived by the owner on Apr 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathStatusCmd_test.go
113 lines (75 loc) · 2.95 KB
/
StatusCmd_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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package main
import (
"flag"
"fmt"
"github.com/codegangsta/cli"
"net/http"
"net/http/httptest"
"testing"
)
//statusof with valid input
func TestStatusOf(T *testing.T) {
status := `{"Name":"TestInstance","Type":"MS","Status":"RUNNING","Capacity":200,"Master":{"IP":"10.11.12.123","Port":"6382","MemoryCapacity":200,"MemoryUsed":1904432,"Uptime":1623,"ClientsConnected":1,"LastSyncedToMaster":0},"Slaves":[{"IP":"10.11.12.121","Port":"6381","MemoryCapacity":200,"MemoryUsed":834904,"Uptime":1619,"ClientsConnected":2,"LastSyncedToMaster":9},{"IP":"10.11.12.121","Port":"6382","MemoryCapacity":200,"MemoryUsed":834904,"Uptime":1619,"ClientsConnected":2,"LastSyncedToMaster":9}]}`
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, status)
}))
defer ts.Close()
MrRedisFW = ts.URL
statusOf("TestInstance")
}
//statusof with invalid url
func TestStatusOfWithInvalidURL(T *testing.T) {
url := DC_INVALID_ENDPOINT
MrRedisFW = url
statusOf("Test")
}
//statusof with invalid json
func TestStatusOfWithInvalidJson(T *testing.T) {
status := `{TestInstance MS CREATING 100 { } [,]}`
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, status)
}))
defer ts.Close()
MrRedisFW = ts.URL
statusOf("TestInstance")
}
//status with valid input
func TestStatusCmd(T *testing.T) {
status := `{"Name":"TestInstance","Type":"MS","Status":"RUNNING","Capacity":200,"Master":{"IP":"10.11.12.123","Port":"6382","MemoryCapacity":200,"MemoryUsed":1904432,"Uptime":1623,"ClientsConnected":1,"LastSyncedToMaster":0},"Slaves":[{"IP":"10.11.12.121","Port":"6381","MemoryCapacity":200,"MemoryUsed":834904,"Uptime":1619,"ClientsConnected":2,"LastSyncedToMaster":9},{"IP":"10.11.12.121","Port":"6382","MemoryCapacity":200,"MemoryUsed":834904,"Uptime":1619,"ClientsConnected":2,"LastSyncedToMaster":9}]}`
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(200)
w.Header().Set("Content-Type", "application/json")
fmt.Fprintln(w, status)
}))
defer ts.Close()
MrRedisFW = ts.URL
set := flag.NewFlagSet("test", 0)
set.String("name", "TestInstance", "doc")
c := cli.NewContext(nil, set, nil)
StatusCmd(c)
}
//status with empty name
func TestStatusCmdWithEmptyName(T *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintln(w, "A-ok")
}))
defer ts.Close()
MrRedisFW = ts.URL
set := flag.NewFlagSet("test", 0)
set.String("name", "", "doc")
c := cli.NewContext(nil, set, nil)
StatusCmd(c)
}
//status with not found
func TestStatusCmdWithNotFound(T *testing.T) {
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(404)
fmt.Fprintln(w, "A-Ok")
}))
defer ts.Close()
MrRedisFW = ts.URL
set := flag.NewFlagSet("test", 0)
set.String("name", "Test", "doc")
c := cli.NewContext(nil, set, nil)
StatusCmd(c)
}