-
Notifications
You must be signed in to change notification settings - Fork 38
/
bookmarks_test.go
81 lines (65 loc) · 1.63 KB
/
bookmarks_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
package main
import (
"fmt"
"net/http"
"net/http/httptest"
"testing"
"github.com/stretchr/testify/assert"
)
func TestZeroBookmark(t *testing.T) {
assert := assert.New(t)
bookmark := Bookmark{}
assert.Equal(bookmark.Name(), "")
assert.Equal(bookmark.URL(), "")
r, _ := http.NewRequest("GET", "", nil)
w := httptest.NewRecorder()
bookmark.Exec(w, r, "")
assert.Condition(func() bool {
return w.Code >= http.StatusMultipleChoices &&
w.Code <= http.StatusTemporaryRedirect
})
}
func TestBookmarkWithQuery(t *testing.T) {
assert := assert.New(t)
bookmark := Bookmark{
name: "g",
url: "https://www.google.com/search?q=%s&btnK",
}
assert.Equal(bookmark.Name(), "g")
assert.Equal(bookmark.URL(), "https://www.google.com/search?q=%s&btnK")
r, _ := http.NewRequest("GET", "", nil)
w := httptest.NewRecorder()
q := "foo bar"
bookmark.Exec(w, r, q)
assert.Condition(func() bool {
return w.Code >= http.StatusMultipleChoices &&
w.Code <= http.StatusTemporaryRedirect
})
assert.Equal(
w.Header().Get("Location"),
fmt.Sprintf(
"https://www.google.com/search?q=%s&btnK",
q,
),
)
}
func TestBookmarkWithoutQuery(t *testing.T) {
assert := assert.New(t)
bookmark := Bookmark{
name: "g",
url: "https://www.google.com/",
}
assert.Equal(bookmark.Name(), "g")
assert.Equal(bookmark.URL(), "https://www.google.com/")
r, _ := http.NewRequest("GET", "", nil)
w := httptest.NewRecorder()
bookmark.Exec(w, r, "")
assert.Condition(func() bool {
return w.Code >= http.StatusMultipleChoices &&
w.Code <= http.StatusTemporaryRedirect
})
assert.Equal(
w.Header().Get("Location"),
"https://www.google.com/",
)
}