-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain_test.go
More file actions
487 lines (412 loc) · 14.8 KB
/
main_test.go
File metadata and controls
487 lines (412 loc) · 14.8 KB
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
package main
import (
"context"
"io"
"net/http"
"net/http/httptest"
"path/filepath"
"strings"
"sync"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"zombiezen.com/go/sqlite"
"zombiezen.com/go/sqlite/sqlitex"
)
func testApp(t *testing.T) *app {
app := &app{
config: &config{
DBPath: filepath.Join(t.TempDir(), "data.db"),
},
}
err := app.openDatabase()
require.NoError(t, err)
return app
}
func closeTestApp(_ *testing.T, app *app) {
app.shutdown.ShutdownAndWait()
}
func Test_slugExists(t *testing.T) {
t.Run("Test slugs", func(t *testing.T) {
app := testApp(t)
exists, err := app.slugExists("source")
assert.NoError(t, err)
assert.True(t, exists)
exists, err = app.slugExists("test")
assert.NoError(t, err)
assert.False(t, exists)
closeTestApp(t, app)
})
}
func Test_generateSlug(t *testing.T) {
t.Run("Test slug generation", func(t *testing.T) {
assert.Len(t, generateSlug(), 6)
})
}
func TestShortenedUrlHandler(t *testing.T) {
t.Run("Test ShortenedUrlHandler", func(t *testing.T) {
app := testApp(t)
app.config.DefaultUrl = "http://long.example.com"
router := app.initRouter()
t.Run("Test redirect code", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/source", nil)
w := httptest.NewRecorder()
router.ServeHTTP(w, req)
resp := w.Result()
assert.Equal(t, http.StatusTemporaryRedirect, resp.StatusCode)
})
t.Run("Test default redirect location header", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/source", nil)
w := httptest.NewRecorder()
router.ServeHTTP(w, req)
resp := w.Result()
assert.Equal(t, "https://github.com/jlelse/GoShort", resp.Header.Get("Location"))
})
t.Run("Test missing slug redirect code", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/test", nil)
w := httptest.NewRecorder()
router.ServeHTTP(w, req)
resp := w.Result()
assert.Equal(t, http.StatusNotFound, resp.StatusCode)
})
t.Run("Test no slug mux var", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/", nil)
w := httptest.NewRecorder()
router.ServeHTTP(w, req)
resp := w.Result()
assert.Equal(t, http.StatusTemporaryRedirect, resp.StatusCode)
assert.Equal(t, "http://long.example.com", resp.Header.Get("Location"))
})
t.Run("Test custom url redirect", func(t *testing.T) {
err := app.insertRedirect("customurl", "https://example.net", typUrl)
require.NoError(t, err)
req := httptest.NewRequest("GET", "http://example.com/customurl", nil)
w := httptest.NewRecorder()
router.ServeHTTP(w, req)
resp := w.Result()
assert.Equal(t, "https://example.net", resp.Header.Get("Location"))
})
t.Run("Test custom text", func(t *testing.T) {
err := app.insertRedirect("customtext", "Hello!", typText)
require.NoError(t, err)
req := httptest.NewRequest("GET", "http://example.com/customtext", nil)
w := httptest.NewRecorder()
router.ServeHTTP(w, req)
resp := w.Result()
respBody, err := io.ReadAll(resp.Body)
require.NoError(t, err)
_ = resp.Body.Close()
assert.Equal(t, "Hello!", string(respBody))
})
closeTestApp(t, app)
})
}
func Test_checkPassword(t *testing.T) {
app := testApp(t)
app.config.Password = "abc"
t.Run("No password", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/test", nil)
assert.False(t, app.checkPassword(httptest.NewRecorder(), req))
})
t.Run("Password via query", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/test?password=abc", nil)
assert.True(t, app.checkPassword(httptest.NewRecorder(), req))
})
t.Run("Wrong password via query", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/test?password=wrong", nil)
assert.False(t, app.checkPassword(httptest.NewRecorder(), req))
})
t.Run("Password via BasicAuth", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/test", nil)
req.SetBasicAuth("username", "abc")
assert.True(t, app.checkPassword(httptest.NewRecorder(), req))
})
t.Run("Wrong password via BasicAuth", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/test", nil)
req.SetBasicAuth("username", "wrong")
assert.False(t, app.checkPassword(httptest.NewRecorder(), req))
})
t.Run("Test login middleware success", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/test", nil)
req.SetBasicAuth("username", "abc")
w := httptest.NewRecorder()
app.loginMiddleware(http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
rw.WriteHeader(http.StatusNotModified)
})).ServeHTTP(w, req)
resp := w.Result()
assert.Equal(t, http.StatusNotModified, resp.StatusCode)
})
t.Run("Test login middleware fail", func(t *testing.T) {
req := httptest.NewRequest("GET", "http://example.com/test", nil)
req.SetBasicAuth("username", "xyz")
w := httptest.NewRecorder()
app.loginMiddleware(http.HandlerFunc(func(rw http.ResponseWriter, r *http.Request) {
rw.WriteHeader(http.StatusNotModified)
})).ServeHTTP(w, req)
resp := w.Result()
assert.Equal(t, http.StatusUnauthorized, resp.StatusCode)
})
closeTestApp(t, app)
}
func TestListSorting(t *testing.T) {
t.Run("Test list sorting", func(t *testing.T) {
app := testApp(t)
defer closeTestApp(t, app)
app.config.Password = "abc"
require.NoError(t, app.insertRedirect("a", "https://a.example", typUrl))
require.NoError(t, app.insertRedirect("m", "https://m.example", typUrl))
require.NoError(t, app.insertRedirect("z", "https://z.example", typUrl))
// set created timestamps
conn, err := app.dbpool.Take(context.Background())
require.NoError(t, err)
err = sqlitex.Execute(conn, "UPDATE redirect SET created = ? WHERE slug = ?", &sqlitex.ExecOptions{Args: []any{time.Now().Unix() - 300, "a"}})
require.NoError(t, err)
err = sqlitex.Execute(conn, "UPDATE redirect SET created = ? WHERE slug = ?", &sqlitex.ExecOptions{Args: []any{time.Now().Unix() - 100, "m"}})
require.NoError(t, err)
err = sqlitex.Execute(conn, "UPDATE redirect SET created = ? WHERE slug = ?", &sqlitex.ExecOptions{Args: []any{time.Now().Unix() - 10, "z"}})
require.NoError(t, err)
app.dbpool.Put(conn)
router := app.initRouter()
// default sort (created desc): z, m, a
req := httptest.NewRequest("GET", "http://example.com/l?password=abc", nil)
w := httptest.NewRecorder()
router.ServeHTTP(w, req)
resp := w.Result()
body, _ := io.ReadAll(resp.Body)
_ = resp.Body.Close()
s := string(body)
idxZ := strings.Index(s, "title=\"z\">z</td>")
idxM := strings.Index(s, "title=\"m\">m</td>")
idxA := strings.Index(s, "title=\"a\">a</td>")
assert.True(t, idxZ < idxM && idxM < idxA)
// sort by slug: a, m, z
req = httptest.NewRequest("GET", "http://example.com/l?password=abc&sort=slug", nil)
w = httptest.NewRecorder()
router.ServeHTTP(w, req)
resp = w.Result()
body, _ = io.ReadAll(resp.Body)
_ = resp.Body.Close()
s = string(body)
idxA = strings.Index(s, "title=\"a\">a</td>")
idxM = strings.Index(s, "title=\"m\">m</td>")
idxZ = strings.Index(s, "title=\"z\">z</td>")
assert.True(t, idxA < idxM && idxM < idxZ)
// set hits and test hits sort (desc)
conn, err = app.dbpool.Take(context.Background())
require.NoError(t, err)
err = sqlitex.Execute(conn, "UPDATE redirect SET hits = ? WHERE slug = ?", &sqlitex.ExecOptions{Args: []any{10, "a"}})
require.NoError(t, err)
err = sqlitex.Execute(conn, "UPDATE redirect SET hits = ? WHERE slug = ?", &sqlitex.ExecOptions{Args: []any{5, "m"}})
require.NoError(t, err)
err = sqlitex.Execute(conn, "UPDATE redirect SET hits = ? WHERE slug = ?", &sqlitex.ExecOptions{Args: []any{50, "z"}})
require.NoError(t, err)
app.dbpool.Put(conn)
req = httptest.NewRequest("GET", "http://example.com/l?password=abc&sort=hits", nil)
w = httptest.NewRecorder()
router.ServeHTTP(w, req)
resp = w.Result()
body, _ = io.ReadAll(resp.Body)
_ = resp.Body.Close()
s = string(body)
idxZ = strings.Index(s, "title=\"z\">z</td>")
idxA = strings.Index(s, "title=\"a\">a</td>")
idxM = strings.Index(s, "title=\"m\">m</td>")
assert.True(t, idxZ < idxA && idxA < idxM)
// sort by url: alphabetical a,m,z
req = httptest.NewRequest("GET", "http://example.com/l?password=abc&sort=url", nil)
w = httptest.NewRecorder()
router.ServeHTTP(w, req)
resp = w.Result()
body, _ = io.ReadAll(resp.Body)
_ = resp.Body.Close()
s = string(body)
idxA = strings.Index(s, "title=\"https://a.example\">https://a.example</td>")
idxM = strings.Index(s, "title=\"https://m.example\">https://m.example</td>")
idxZ = strings.Index(s, "title=\"https://z.example\">https://z.example</td>")
assert.True(t, idxA < idxM && idxM < idxZ)
// sort by slug desc (toggle dir)
req = httptest.NewRequest("GET", "http://example.com/l?password=abc&sort=slug&dir=desc", nil)
w = httptest.NewRecorder()
router.ServeHTTP(w, req)
resp = w.Result()
body, _ = io.ReadAll(resp.Body)
_ = resp.Body.Close()
s = string(body)
idxZ = strings.Index(s, "title=\"z\">z</td>")
idxM = strings.Index(s, "title=\"m\">m</td>")
idxA = strings.Index(s, "title=\"a\">a</td>")
assert.True(t, idxZ < idxM && idxM < idxA)
// sort by hits asc (toggle direction)
req = httptest.NewRequest("GET", "http://example.com/l?password=abc&sort=hits&dir=asc", nil)
w = httptest.NewRecorder()
router.ServeHTTP(w, req)
resp = w.Result()
body, _ = io.ReadAll(resp.Body)
_ = resp.Body.Close()
s = string(body)
idxA = strings.Index(s, "title=\"a\">a</td>")
idxM = strings.Index(s, "title=\"m\">m</td>")
idxZ = strings.Index(s, "title=\"z\">z</td>")
// hits ascending: m (5), a (10), z (50)
assert.True(t, idxM < idxA && idxA < idxZ)
})
}
func TestListUI(t *testing.T) {
t.Run("List UI elements", func(t *testing.T) {
app := testApp(t)
defer closeTestApp(t, app)
app.config.Password = "abc"
app.config.ShortUrl = "https://short.example.com"
require.NoError(t, app.insertRedirect("x", "https://x.example", typUrl))
router := app.initRouter()
// default page
req := httptest.NewRequest("GET", "http://example.com/l?password=abc", nil)
w := httptest.NewRecorder()
router.ServeHTTP(w, req)
resp := w.Result()
body, _ := io.ReadAll(resp.Body)
_ = resp.Body.Close()
s := string(body)
// full short url present in copy link (slashes are escaped in HTML attribute)
assert.Contains(t, s, "short.example.com\\/x")
assert.Contains(t, s, "onclick=\"copyText('")
assert.Contains(t, s, "short.example.com\\/x")
// delete link present
assert.Contains(t, s, "href=\"/d?slug=x\"")
// headers capitalized and actions header
assert.Contains(t, s, "<th>Actions</th>")
assert.Contains(t, s, "<a href=\"/l?sort=slug&dir=asc\">Slug")
assert.Contains(t, s, "<a href=\"/l?sort=hits&dir=desc\">Hits")
assert.Contains(t, s, "<a href=\"/l?sort=url&dir=asc\">URL")
// clicking sort=slug shows indicator and toggles to desc
req = httptest.NewRequest("GET", "http://example.com/l?password=abc&sort=slug", nil)
w = httptest.NewRecorder()
router.ServeHTTP(w, req)
resp = w.Result()
body, _ = io.ReadAll(resp.Body)
_ = resp.Body.Close()
s = string(body)
assert.Contains(t, s, "Slug ↑")
assert.Contains(t, s, "href=\"/l?sort=slug&dir=desc\"")
// hits active shows down arrow and toggles to asc
req = httptest.NewRequest("GET", "http://example.com/l?password=abc&sort=hits", nil)
w = httptest.NewRecorder()
router.ServeHTTP(w, req)
resp = w.Result()
body, _ = io.ReadAll(resp.Body)
_ = resp.Body.Close()
s = string(body)
assert.Contains(t, s, "Hits ↓")
assert.Contains(t, s, "href=\"/l?sort=hits&dir=asc\"")
})
}
func TestHitsAggregator(t *testing.T) {
t.Run("Hit aggregation", func(t *testing.T) {
app := testApp(t)
defer closeTestApp(t, app)
router := app.initRouter()
// initial hits
conn, err := app.dbpool.Take(context.Background())
require.NoError(t, err)
var initial int
err = sqlitex.Execute(conn, "SELECT hits FROM redirect WHERE slug = ?", &sqlitex.ExecOptions{Args: []any{"source"}, ResultFunc: func(stmt *sqlite.Stmt) error {
initial = stmt.ColumnInt(0)
return nil
}})
require.NoError(t, err)
app.dbpool.Put(conn)
// send many hits quickly
count := 200
for range count {
req := httptest.NewRequest("GET", "http://example.com/source", nil)
w := httptest.NewRecorder()
router.ServeHTTP(w, req)
}
// wait for aggregator flush
time.Sleep(700 * time.Millisecond)
// check hits increased
conn, err = app.dbpool.Take(context.Background())
require.NoError(t, err)
var after int
err = sqlitex.Execute(conn, "SELECT hits FROM redirect WHERE slug = ?", &sqlitex.ExecOptions{Args: []any{"source"}, ResultFunc: func(stmt *sqlite.Stmt) error {
after = stmt.ColumnInt(0)
return nil
}})
require.NoError(t, err)
app.dbpool.Put(conn)
assert.True(t, after-initial >= count)
})
}
func TestHitsNoDrop(t *testing.T) {
t.Run("No hits dropped under concurrent load", func(t *testing.T) {
app := testApp(t)
defer closeTestApp(t, app)
router := app.initRouter()
conn, err := app.dbpool.Take(context.Background())
require.NoError(t, err)
var initial int
err = sqlitex.Execute(conn, "SELECT hits FROM redirect WHERE slug = ?", &sqlitex.ExecOptions{Args: []any{"source"}, ResultFunc: func(stmt *sqlite.Stmt) error {
initial = stmt.ColumnInt(0)
return nil
}})
require.NoError(t, err)
app.dbpool.Put(conn)
// concurrent requests
count := 1500
var wg sync.WaitGroup
wg.Add(count)
for range count {
go func() {
defer wg.Done()
req := httptest.NewRequest("GET", "http://example.com/source", nil)
w := httptest.NewRecorder()
router.ServeHTTP(w, req)
}()
}
wg.Wait()
// wait for aggregator flush
time.Sleep(1 * time.Second)
conn, err = app.dbpool.Take(context.Background())
require.NoError(t, err)
var after int
err = sqlitex.Execute(conn, "SELECT hits FROM redirect WHERE slug = ?", &sqlitex.ExecOptions{Args: []any{"source"}, ResultFunc: func(stmt *sqlite.Stmt) error {
after = stmt.ColumnInt(0)
return nil
}})
require.NoError(t, err)
app.dbpool.Put(conn)
assert.Equal(t, initial+count, after)
})
}
func TestShutdownNoDeadlock(t *testing.T) {
t.Run("Shutdown does not deadlock while flushing hits", func(t *testing.T) {
app := testApp(t)
router := app.initRouter()
// spawn some concurrent requests
count := 500
var wg sync.WaitGroup
wg.Add(count)
for range count {
go func() {
defer wg.Done()
req := httptest.NewRequest("GET", "http://example.com/source", nil)
w := httptest.NewRecorder()
router.ServeHTTP(w, req)
}()
}
wg.Wait()
// call shutdown and ensure it returns within timeout
done := make(chan struct{})
go func() {
app.shutdown.ShutdownAndWait()
close(done)
}()
select {
case <-done:
// success
case <-time.After(3 * time.Second):
t.Fatal("shutdown did not complete in time (possible deadlock)")
}
})
}