-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgoip_test.go
222 lines (193 loc) · 5.2 KB
/
goip_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
212
213
214
215
216
217
218
219
220
221
222
package goip
import (
"encoding/json"
"errors"
"fmt"
"net/http"
"net/http/httptest"
"net/url"
"testing"
)
func getMockSuccessResponse() string {
l := Location{
As: "500 North Pole",
City: "Timbuktu",
Country: "Fairy Tale Land",
CountryCode: "FT",
Isp: "Acme ISP Service",
Lat: 55.555,
Lon: 33.333,
Org: "Who Knows?",
Query: "123.123.123.4",
Region: "CM",
RegionName: "Chocolate Mountain",
Status: "success",
Timezone: "America/Chicago",
Zip: "12312",
}
result, _ := json.Marshal(l)
return string(result)
}
func getMockFailureResponse() string {
l := Location{
As: "",
City: "",
Country: "",
CountryCode: "",
Region: "",
RegionName: "",
Status: "fail",
Timezone: "",
Zip: "",
}
result, _ := json.Marshal(l)
return string(result)
}
func getMockServer(status int, responsePayload string) (*httptest.Server, *http.Client) {
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(status)
w.Header().Set("Content-Type", "application/json")
fmt.Fprintln(w, responsePayload)
}))
transport := &http.Transport{
Proxy: func(req *http.Request) (*url.URL, error) {
return url.Parse(server.URL)
},
}
httpClient := &http.Client{Transport: transport}
return server, httpClient
}
func TestGetLocationSuccess(t *testing.T) {
server, httpClient := getMockServer(200, getMockSuccessResponse())
client := StandardClient{server.URL, httpClient}
location, err := client.GetLocation()
if err != nil {
t.Error(err)
}
if location.Status != "success" {
t.Error(errors.New("Expected success"))
}
if location.City != "Timbuktu" {
t.Error(errors.New("Expected Timbuktu"))
}
}
func TestGetLocationFailure(t *testing.T) {
// A failure response still returns a 200
server, httpClient := getMockServer(200, getMockFailureResponse())
client := StandardClient{server.URL, httpClient}
location, err := client.GetLocation()
if location != nil {
t.Error("Location should be nil")
}
if err == nil {
t.Error("Should have returned an error")
}
if err.Error() != "Failed to find location data" {
t.Error("Expected 'failed to find location data' error")
}
}
func TestGetLocationMaxApiCallsError(t *testing.T) {
server, httpClient := getMockServer(403, "")
client := StandardClient{server.URL, httpClient}
location, err := client.GetLocation()
if location != nil {
t.Error("Location should be nil")
}
if err.Error() != "Exceeded maximum number of API calls" {
t.Error("Expected correct error message")
}
}
func TestGetLocationHttpError(t *testing.T) {
server, httpClient := getMockServer(500, "")
client := StandardClient{server.URL, httpClient}
location, err := client.GetLocation()
if location != nil {
t.Error("Location should be nil")
}
if err == nil {
t.Error("Should have returned an error")
}
}
func TestGetLocationForIp(t *testing.T) {
server, httpClient := getMockServer(200, getMockSuccessResponse())
client := StandardClient{server.URL, httpClient}
location, err := client.GetLocationForIp("127.0.0.1")
if err != nil {
t.Error(err.Error())
}
if location == nil {
t.Error("Expected location")
}
}
func TestProGetLocation(t *testing.T) {
server, httpClient := getMockServer(200, getMockSuccessResponse())
client := ProClient{server.URL, httpClient, "abc123"}
location, err := client.GetLocation()
if err != nil {
t.Error(err.Error())
}
if location == nil {
t.Error("Expected location")
}
}
func TestProGetLocationForIp(t *testing.T) {
server, httpClient := getMockServer(200, getMockSuccessResponse())
client := ProClient{server.URL, httpClient, "abc123"}
location, err := client.GetLocationForIp("127.0.0.1")
if err != nil {
t.Error(err.Error())
}
if location == nil {
t.Error("Expected location")
}
}
func TestInvalidApiKeyResponse(t *testing.T) {
server, httpClient := getMockServer(403, getMockFailureResponse())
client := ProClient{server.URL, httpClient, "abc123"}
location, err := client.GetLocation()
if err == nil {
t.Error("Expected error")
}
if err.Error() != "Invalid API key" {
t.Error("Expected invalid API key error")
}
if location != nil {
t.Error("Location should be nil")
}
}
func TestBuildStandardApi(t *testing.T) {
result := buildStandardUri("")
if result != STANDARD_URI {
t.Error("Should return the standard plan's URI")
}
}
func TestBuildStandardApiWithIp(t *testing.T) {
result := buildStandardUri("127.0.0.1")
if result != STANDARD_URI+"127.0.0.1" {
t.Error("Should return standard plan's URI with the supplied IP")
}
}
func TestBuildProUri(t *testing.T) {
result := buildProUri("", "abc123")
if result != "http://pro.ip-api.com/json/?key=abc123" {
t.Error("Incorrect url")
}
}
func TestBuildProUriWithIp(t *testing.T) {
result := buildProUri("127.0.0.1", "abc123")
if result != "http://pro.ip-api.com/json/127.0.0.1?key=abc123" {
t.Error("Incorrect url")
}
}
func TestNewClient(t *testing.T) {
client := NewClient()
if client == nil {
t.Error("Should return a client")
}
}
func TestNewClientWithApiKey(t *testing.T) {
client := NewClientWithApiKey("abc123")
if client == nil {
t.Error("Should return a client")
}
}