-
Notifications
You must be signed in to change notification settings - Fork 1
/
main_test.go
89 lines (69 loc) · 1.53 KB
/
main_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
package main
import (
"encoding/json"
"testing"
"github.com/go-resty/resty/v2"
"github.com/gorilla/websocket"
"github.com/stretchr/testify/assert"
)
var (
linkCode string
testProgram = `
// You can edit this code!
// Click here and start typing.
package main
import "fmt"
func main() {
fmt.Println("Hello, PlayGO")
}`
)
type Code string
func TestRun(t *testing.T) {
ws, _, err := websocket.DefaultDialer.Dial("ws://localhost:8080/run", nil)
if err != nil {
t.Fatalf("%v", err)
}
defer ws.Close()
if err := ws.WriteMessage(websocket.TextMessage, []byte(testProgram)); err != nil {
t.Fatalf("%v", err)
}
_, p, err := ws.ReadMessage()
if err != nil {
t.Fatalf("%v", err)
}
assertions := assert.New(t)
assertions.Equal("Hello, PlayGO", string(p))
}
func TestShare(t *testing.T) {
ws, _, err := websocket.DefaultDialer.Dial("ws://localhost:8080/share", nil)
if err != nil {
t.Fatalf("%v", err)
}
defer ws.Close()
if err := ws.WriteMessage(websocket.TextMessage, []byte(testProgram)); err != nil {
t.Fatalf("%v", err)
}
_, p, err := ws.ReadMessage()
if err != nil {
t.Fatalf("%v", err)
}
linkCode = string(p)
}
func TestGetCode(t *testing.T) {
client := resty.New()
r, err := client.R().Get("http://localhost:8080/pp/" + linkCode)
if err != nil {
t.Error(err)
}
var code Code
json.Unmarshal(r.Body(), &code)
assertions := assert.New(t)
assertions.EqualValues(code, testProgram)
}
func TestMain(t *testing.T) {
cnf := "config/config.yml"
go Run(&cnf)
TestShare(t)
TestGetCode(t)
TestRun(t)
}