-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlivereload_test.go
190 lines (151 loc) · 3.51 KB
/
livereload_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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
package livereload
import (
"errors"
"fmt"
"io/ioutil"
"net/http"
"os"
"testing"
"time"
"github.com/go-playground/log"
"github.com/gorilla/websocket"
)
// NOTES:
// - Run "go test" to run tests
// - Run "gocov test | gocov report" to report on test converage by file
// - Run "gocov test | gocov annotate -" to report on all code and functions, those ,marked with "MISS" were never called
//
// or
//
// -- may be a good idea to change to output path to somewherelike /tmp
// go test -coverprofile cover.out && go tool cover -html=cover.out -o cover.html
//
const (
port = 35729
)
var (
cssFile = `body {
background-color:#000;
}`
jsFile = `function(test){}`
txtFile = "test"
clientHello = struct {
Command string `json:"command"`
Protocols []string `json:"protocols"`
}{
"hello",
[]string{
"http://livereload.com/protocols/official-7",
"http://livereload.com/protocols/official-8",
"http://livereload.com/protocols/2.x-origin-version-negotiation",
},
}
)
func testFnOK(name string) (bool, error) {
return true, nil
}
func testFnBAD(name string) (bool, error) {
return true, errors.New("Bad Error")
}
func testFnOKNoReload(name string) (bool, error) {
return true, nil
}
func TestMain(m *testing.M) {
paths := []string{
"testfiles",
}
mappings := ReloadMapping{
".css": testFnOK,
".js": testFnBAD,
".txt": testFnOKNoReload,
}
done, err := ListenAndServe(port, paths, mappings)
defer close(done)
if err != nil {
log.Fatal("could not setup server")
}
os.Exit(m.Run())
}
func TestLivereload(t *testing.T) {
dialer := new(websocket.Dialer)
conn, resp, err := dialer.Dial(
fmt.Sprintf("ws://%s:%d/livereload", "127.0.0.1", port),
http.Header{},
)
if err != nil {
t.Fatal(err)
}
defer conn.Close()
if resp.StatusCode != http.StatusSwitchingProtocols {
t.Fatal("Bad status code, expected 101")
}
m := make(map[string]interface{})
err = conn.ReadJSON(&m)
if err != nil {
t.Fatal(err)
}
if m["command"] != "hello" {
log.Fatal("command should have been 'hello'")
}
err = conn.WriteJSON(clientHello)
if err != nil {
t.Fatal(err)
}
// CSS Test
go func() {
time.Sleep(time.Second * 1)
err = ioutil.WriteFile("testfiles/test.css", []byte(cssFile), os.FileMode(0777))
if err != nil {
t.Fatal(err)
}
}()
// don't care about error
defer os.Remove("testfiles/test.css")
m = make(map[string]interface{})
err = conn.ReadJSON(&m)
if err != nil {
t.Fatal(err)
}
expected := "reload"
if m["command"] != expected {
log.Fatalf("command should have been '%s'\n", expected)
}
expected = "testfiles/test.css"
if m["path"] != expected {
log.Fatalf("path should have been '%s'\n", expected)
}
// JS Test
go func() {
time.Sleep(time.Second * 1)
err = ioutil.WriteFile("testfiles/test.js", []byte(jsFile), os.FileMode(0777))
if err != nil {
t.Fatal(err)
}
}()
// don't care about error
defer os.Remove("testfiles/test.js")
// there will be no response for JS
// .txt Test
go func() {
time.Sleep(time.Second * 1)
err = ioutil.WriteFile("testfiles/test.txt", []byte(jsFile), os.FileMode(0777))
if err != nil {
t.Fatal(err)
}
}()
// don't care about error
defer os.Remove("testfiles/test.txt")
m = make(map[string]interface{})
err = conn.ReadJSON(&m)
if err != nil {
t.Fatal(err)
}
expected = "reload"
if m["command"] != expected {
log.Fatalf("command should have been '%s'\n", expected)
}
expected = "testfiles/test.txt"
if m["path"] != expected {
log.Fatalf("path should have been '%s'\n", expected)
}
}