-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_test.go
154 lines (126 loc) · 3.32 KB
/
api_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
package votesmart_test
import (
"context"
"net/http"
"net/http/httptest"
"net/url"
"os"
"testing"
"dev.freespoke.com/go-votesmart"
"dev.freespoke.com/go-votesmart/votesmarttypes"
)
func TestAPI(t *testing.T) {
dummyKey := "apiKey"
b, err := os.ReadFile("testdata/state_get_state_ids.json")
if err != nil {
t.Fatal(err)
}
svr := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Query().Get("key") != dummyKey {
t.Fatal("missing or incorrect api key")
return
}
if r.URL.Query().Get("o") != "JSON" {
t.Fatal("missing output set to json")
return
}
_, err = w.Write(b)
if err != nil {
t.Fatal(err)
}
}))
c, err := votesmart.New(dummyKey, votesmart.WithBaseURL(svr.URL), votesmart.WithClient(svr.Client()))
if err != nil {
t.Fatal(err)
}
var a votesmarttypes.StateGetStateIDs
if err := c.Invoke(context.Background(), nil, &a); err != nil {
t.Fatal("err not nil", err)
}
if len(a.StateList.List.State) == 0 {
t.Fatal("response was empty")
}
if a.StateList.List.State[0].StateID != "NA" {
t.Fatal("unexpected value in first state")
}
}
func TestWithParams(t *testing.T) {
dummyKey := "apiKey"
b, err := os.ReadFile("testdata/candidates_get_by_levenshtein.json")
if err != nil {
t.Fatal(err)
}
svr := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Query().Get("key") == "" {
t.Fatal("missing api key")
return
}
if r.URL.Query().Get("o") != "JSON" {
t.Fatal("missing output set to json")
return
}
if r.URL.Query().Get("lastName") != "Trump" {
t.Fatal("missing or incorrect lastName param")
}
_, err = w.Write(b)
if err != nil {
t.Fatal(err)
}
}))
c, err := votesmart.New(dummyKey, votesmart.WithBaseURL(svr.URL), votesmart.WithClient(svr.Client()))
if err != nil {
t.Fatal(err)
}
var a votesmarttypes.CandidatesGetByLevenshtein
v := url.Values{}
v.Add("lastName", "Trump")
if err := c.Invoke(context.Background(), &v, &a); err != nil {
t.Fatal("err not nil", err)
}
if len(a.CandidateList.Candidate) == 0 {
t.Fatal("response was empty")
}
if a.CandidateList.Candidate[0].FirstName != "Donald" {
t.Fatal("unexpected value in first candidate")
}
}
func TestElectionID(t *testing.T) {
dummyKey := "apiKey"
b, err := os.ReadFile("testdata/candidates_get_by_electionid.json")
if err != nil {
t.Fatal(err)
}
svr := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if r.URL.Query().Get("key") == "" {
t.Fatal("missing api key")
return
}
if r.URL.Query().Get("o") != "JSON" {
t.Fatal("missing output set to json")
return
}
if r.URL.Query().Get("electionId") != "4823" {
t.Fatal("missing or incorrect electionId param")
}
_, err = w.Write(b)
if err != nil {
t.Fatal(err)
}
}))
c, err := votesmart.New(dummyKey, votesmart.WithBaseURL(svr.URL), votesmart.WithClient(svr.Client()))
if err != nil {
t.Fatal(err)
}
var a votesmarttypes.CandidatesGetByElection
v := url.Values{}
v.Add("electionId", "4823")
if err := c.Invoke(context.Background(), &v, &a); err != nil {
t.Fatal("err not nil", err)
}
if len(a.CandidateList.Candidate) == 0 {
t.Fatal("response was empty")
}
if a.CandidateList.Candidate[0].FirstName != "Dustin" {
t.Fatal("unexpected value in first candidate")
}
}