-
Notifications
You must be signed in to change notification settings - Fork 0
/
handlers_test.go
211 lines (175 loc) · 5 KB
/
handlers_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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
package main
import (
"bytes"
"encoding/json"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/Vadim-Karpenko/golang-json-sync-service/handlers"
"github.com/Vadim-Karpenko/golang-json-sync-service/utils"
"github.com/gin-gonic/gin"
"github.com/gorilla/websocket"
"github.com/redis/go-redis/v9"
"github.com/stretchr/testify/assert"
)
var rdb *redis.Client
func setupRouter() *gin.Engine {
r := gin.Default()
// Initialize Redis
rdb := utils.InitializeRedis()
// Routes
r.POST("/upload", func(c *gin.Context) {
handlers.UploadJSON(c, rdb)
})
r.GET("/ws/:uuid", func(c *gin.Context) {
handlers.HandleWebSocket(c, rdb)
})
r.GET("/json/:uuid", func(c *gin.Context) {
handlers.GetJSON(c, rdb)
})
return r
}
func TestUploadAndGetJSON(t *testing.T) {
router := setupRouter()
// Test JSON data
testData := map[string]interface{}{
"character": map[string]interface{}{
"name": "Aragorn",
"age": 87.0,
},
}
jsonData, _ := json.Marshal(testData)
// Upload the JSON
w := httptest.NewRecorder()
req, _ := http.NewRequest("POST", "/upload", bytes.NewBuffer(jsonData))
router.ServeHTTP(w, req)
assert.Equal(t, http.StatusOK, w.Code)
var response map[string]string
json.Unmarshal(w.Body.Bytes(), &response)
uuid := response["uuid"]
// Retrieve the JSON using the UUID
w = httptest.NewRecorder()
req, _ = http.NewRequest("GET", "/json/"+uuid, nil)
router.ServeHTTP(w, req)
assert.Equal(t, http.StatusOK, w.Code)
var retrievedData map[string]interface{}
json.Unmarshal(w.Body.Bytes(), &retrievedData)
assert.Equal(t, testData, retrievedData)
}
func TestWebSocketSync(t *testing.T) {
router := setupRouter()
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
router.ServeHTTP(w, r)
}))
defer server.Close()
// Start by uploading a JSON
testData := map[string]interface{}{
"character": map[string]interface{}{
"name": "Frodo",
"age": 50.0,
},
}
jsonData, _ := json.Marshal(testData)
w := httptest.NewRecorder()
req, _ := http.NewRequest("POST", "/upload", bytes.NewBuffer(jsonData))
router.ServeHTTP(w, req)
var response map[string]string
json.Unmarshal(w.Body.Bytes(), &response)
uuid := response["uuid"]
// Establish a WebSocket connection
wsURL := "ws" + server.URL[4:] + "/ws/" + uuid
ws, _, err := websocket.DefaultDialer.Dial(wsURL, nil)
if err != nil {
t.Fatalf("WebSocket connection failed: %v", err)
}
defer ws.Close()
// Function to send updates and verify results
sendAndVerifyUpdate := func(updateMessage handlers.Message, expectedData map[string]interface{}) {
// Send an update via WebSocket
updateData, _ := json.Marshal(updateMessage)
ws.WriteMessage(websocket.TextMessage, updateData)
// Wait a moment for the update to propagate
time.Sleep(500 * time.Millisecond)
// Check if the update was applied by retrieving the JSON
w = httptest.NewRecorder()
req, _ = http.NewRequest("GET", "/json/"+uuid, nil)
router.ServeHTTP(w, req)
assert.Equal(t, http.StatusOK, w.Code)
var updatedData map[string]interface{}
json.Unmarshal(w.Body.Bytes(), &updatedData)
assert.Equal(t, expectedData, updatedData)
}
// Test the first update
sendAndVerifyUpdate(
handlers.Message{
Path: "character.age",
Value: 51,
},
map[string]interface{}{
"character": map[string]interface{}{
"name": "Frodo",
"age": 51.0,
},
},
)
// Update the JSON with list data
testDataList := map[string]interface{}{
"character": map[string]interface{}{
"name": "Frodo",
"age": 51.0,
"items": []interface{}{
"ring",
"cloak",
},
},
}
jsonDataList, _ := json.Marshal(testDataList)
w = httptest.NewRecorder()
req, _ = http.NewRequest("POST", "/upload", bytes.NewBuffer(jsonDataList))
router.ServeHTTP(w, req)
json.Unmarshal(w.Body.Bytes(), &response)
uuid = response["uuid"]
// Reuse the WebSocket connection for the new UUID
wsURL = "ws" + server.URL[4:] + "/ws/" + uuid
ws, _, err = websocket.DefaultDialer.Dial(wsURL, nil)
if err != nil {
t.Fatalf("WebSocket connection failed: %v", err)
}
defer ws.Close()
// Test the second update with list modification
sendAndVerifyUpdate(
handlers.Message{
Path: "character.items.1",
Value: "sword",
},
map[string]interface{}{
"character": map[string]interface{}{
"name": "Frodo",
"age": 51.0,
"items": []interface{}{
"ring",
"sword",
},
},
},
)
}
func TestInvalidUUID(t *testing.T) {
router := setupRouter()
w := httptest.NewRecorder()
req, _ := http.NewRequest("GET", "/json/invalid-uuid", nil)
router.ServeHTTP(w, req)
assert.Equal(t, http.StatusNotFound, w.Code)
}
func TestWebSocketInvalidUUID(t *testing.T) {
router := setupRouter()
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
router.ServeHTTP(w, r)
}))
defer server.Close()
// Attempt to establish a WebSocket connection with an invalid UUID
wsURL := "ws" + server.URL[4:] + "/ws/invalid-uuid"
_, _, err := websocket.DefaultDialer.Dial(wsURL, nil)
assert.Error(t, err)
}