forked from gmazoyer/peeringdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_test.go
224 lines (194 loc) · 6.61 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
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
package peeringdb
import "testing"
func TestFormatSearchParameters(t *testing.T) {
var searchMap map[string]interface{}
var expected string
var searchParameters string
// Test for nil map
expected = ""
searchParameters = formatSearchParameters(nil)
if searchParameters != expected {
t.Errorf("formatSearchParameters, want '%s' got '%s'", expected,
searchParameters)
}
// Test for empty map
searchMap = make(map[string]interface{})
expected = ""
searchParameters = formatSearchParameters(searchMap)
if searchParameters != expected {
t.Errorf("formatSearchParameters, want '%s' got '%s'", expected,
searchParameters)
}
// Test one value
searchMap = make(map[string]interface{})
searchMap["id"] = 10
expected = "&id=10"
searchParameters = formatSearchParameters(searchMap)
if searchParameters != expected {
t.Errorf("formatSearchParameters, want '%s' got '%s'", expected,
searchParameters)
}
// Test two values
searchMap = make(map[string]interface{})
searchMap["id"] = 10
searchMap["asn"] = 65536
expected = "&asn=65536&id=10"
searchParameters = formatSearchParameters(searchMap)
if searchParameters != expected {
t.Errorf("formatSearchParameters, want '%s' got '%s'", expected,
searchParameters)
}
}
func TestFormatURL(t *testing.T) {
var expected string
var url string
base := "https://peeringdb.com/api/"
searchMap := make(map[string]interface{})
searchMap["id"] = 10
// Test fac namespace with search parameter
expected = "https://peeringdb.com/api/fac?depth=1&id=10"
url = formatURL(base, facilityNamespace, searchMap)
if url != expected {
t.Errorf("formatURL, want '%s' got '%s'", expected, url)
}
// Test ix namespace with search parameter
expected = "https://peeringdb.com/api/ix?depth=1&id=10"
url = formatURL(base, internetExchangeNamespace, searchMap)
if url != expected {
t.Errorf("formatURL, want '%s' got '%s'", expected, url)
}
// Test ixfac namespace with search parameter
expected = "https://peeringdb.com/api/ixfac?depth=1&id=10"
url = formatURL(base, internetExchangeFacilityNamespace, searchMap)
if url != expected {
t.Errorf("formatURL, want '%s' got '%s'", expected, url)
}
// Test ixlan namespace with search parameter
expected = "https://peeringdb.com/api/ixlan?depth=1&id=10"
url = formatURL(base, internetExchangeLANNamespace, searchMap)
if url != expected {
t.Errorf("formatURL, want '%s' got '%s'", expected, url)
}
// Test ixpfx namespace with search parameter
expected = "https://peeringdb.com/api/ixpfx?depth=1&id=10"
url = formatURL(base, internetExchangePrefixNamespace, searchMap)
if url != expected {
t.Errorf("formatURL, want '%s' got '%s'", expected, url)
}
// Test net namespace with search parameter
expected = "https://peeringdb.com/api/net?depth=1&id=10"
url = formatURL(base, networkNamespace, searchMap)
if url != expected {
t.Errorf("formatURL, want '%s' got '%s'", expected, url)
}
// Test netfac namespace with search parameter
expected = "https://peeringdb.com/api/netfac?depth=1&id=10"
url = formatURL(base, networkFacilityNamespace, searchMap)
if url != expected {
t.Errorf("formatURL, want '%s' got '%s'", expected, url)
}
// Test netixlan namespace with search parameter
expected = "https://peeringdb.com/api/netixlan?depth=1&id=10"
url = formatURL(base, networkInternetExchangeLANNamepsace, searchMap)
if url != expected {
t.Errorf("formatURL, want '%s' got '%s'", expected, url)
}
// Test org namespace with search parameter
expected = "https://peeringdb.com/api/org?depth=1&id=10"
url = formatURL(base, organizationNamespace, searchMap)
if url != expected {
t.Errorf("formatURL, want '%s' got '%s'", expected, url)
}
// Test poc namespace with search parameter
expected = "https://peeringdb.com/api/poc?depth=1&id=10"
url = formatURL(base, networkContactNamespace, searchMap)
if url != expected {
t.Errorf("formatURL, want '%s' got '%s'", expected, url)
}
}
func TestNewAPI(t *testing.T) {
var expectedURL string
var api *API
// Test to use the public PeeringDB API
api = NewAPI()
expectedURL = "https://peeringdb.com/api/"
if api.url != expectedURL {
t.Errorf("formatURL, want '%s' got '%s'", expectedURL, api.url)
}
}
func TestNewAPIWithAuth(t *testing.T) {
var expectedURL, expectedLogin, expectedPassword string
var api *API
// Test to use the public PeeringDB API with authentication
api = NewAPIWithAuth("test", "123")
expectedURL = "https://peeringdb.com/api/"
expectedLogin = "test"
expectedPassword = "123"
if api.url != expectedURL {
t.Errorf("formatURL, want '%s' got '%s'", expectedURL, api.url)
}
if api.login != expectedLogin {
t.Errorf("formatURL, want '%s' got '%s'", expectedLogin, api.login)
}
if api.password != expectedPassword {
t.Errorf("formatURL, want '%s' got '%s'", expectedPassword, api.password)
}
}
func TestNewAPIFromURL(t *testing.T) {
var expectedURL string
var api *API
// Test to see if an empty string parameter will force to use the public
// PeeringDB API.
api = NewAPIFromURL("")
expectedURL = "https://peeringdb.com/api/"
if api.url != expectedURL {
t.Errorf("formatURL, want '%s' got '%s'", expectedURL, api.url)
}
// Test with
api = NewAPIFromURL("http://localhost/api/")
expectedURL = "http://localhost/api/"
if api.url != expectedURL {
t.Errorf("formatURL, want '%s' got '%s'", expectedURL, api.url)
}
}
func TestNewAPIFromURLWithAuth(t *testing.T) {
var expectedURL, expectedLogin, expectedPassword string
var api *API
// Test to see if an empty string parameter will force to use the public
// PeeringDB API.
api = NewAPIFromURLWithAuth("", "test", "123")
expectedURL = "https://peeringdb.com/api/"
expectedLogin = "test"
expectedPassword = "123"
if api.url != expectedURL {
t.Errorf("formatURL, want '%s' got '%s'", expectedURL, api.url)
}
if api.login != expectedLogin {
t.Errorf("formatURL, want '%s' got '%s'", expectedLogin, api.login)
}
if api.password != expectedPassword {
t.Errorf("formatURL, want '%s' got '%s'", expectedPassword, api.password)
}
// Test with
api = NewAPIFromURLWithAuth("http://localhost/api/", "test", "123")
expectedURL = "http://localhost/api/"
expectedLogin = "test"
expectedPassword = "123"
if api.url != expectedURL {
t.Errorf("formatURL, want '%s' got '%s'", expectedURL, api.url)
}
if api.login != expectedLogin {
t.Errorf("formatURL, want '%s' got '%s'", expectedLogin, api.login)
}
if api.password != expectedPassword {
t.Errorf("formatURL, want '%s' got '%s'", expectedPassword, api.password)
}
}
func TestGetASN(t *testing.T) {
api := NewAPI()
expectedASN := 29467
net := api.GetASN(expectedASN)
if net.ASN != expectedASN {
t.Errorf("GetASN, want ASN '%d' got '%d'", expectedASN, net.ASN)
}
}