-
Notifications
You must be signed in to change notification settings - Fork 1
/
adjunct_test.go
71 lines (59 loc) · 1.24 KB
/
adjunct_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
package brewerydb
import (
"io"
"net/http"
"strconv"
"testing"
)
func TestAdjunctGet(t *testing.T) {
setup()
defer teardown()
data := loadTestData("adjunct.get.json", t)
defer data.Close()
const id = 923
mux.HandleFunc("/adjunct/", func(w http.ResponseWriter, r *http.Request) {
checkMethod(t, r, "GET")
checkURLSuffix(t, r, strconv.Itoa(id))
io.Copy(w, data)
})
a, err := client.Adjunct.Get(id)
if err != nil {
t.Fatal(err)
}
if a.ID != id {
t.Fatalf("Adjunct ID = %v, want %v", a.ID, id)
}
testBadURL(t, func() error {
_, err := client.Adjunct.Get(id)
return err
})
}
func TestAdjunctList(t *testing.T) {
setup()
defer teardown()
data := loadTestData("adjunct.list.json", t)
defer data.Close()
const page = 1
mux.HandleFunc("/adjuncts", func(w http.ResponseWriter, r *http.Request) {
checkMethod(t, r, "GET")
checkPage(t, r, page)
io.Copy(w, data)
})
al, err := client.Adjunct.List(1)
if err != nil {
t.Fatal(err)
}
if len(al.Adjuncts) <= 0 {
t.Fatal("Expected >0 adjuncts")
}
c := "misc"
for _, a := range al.Adjuncts {
if c != a.Category {
t.Fatalf("Adjunct Category = %s, wanted %s", a.Category, c)
}
}
testBadURL(t, func() error {
_, err := client.Adjunct.List(1)
return err
})
}