echoip/api/api_test.go

154 lines
3.9 KiB
Go
Raw Normal View History

2015-09-17 20:57:27 +02:00
package api
import (
"io/ioutil"
2015-09-18 17:13:14 +02:00
"log"
2015-09-17 20:57:27 +02:00
"net"
"net/http"
"net/http/httptest"
"testing"
)
2016-04-17 11:09:56 +02:00
type mockOracle struct{}
func (r *mockOracle) LookupAddr(string) ([]string, error) { return []string{"localhost"}, nil }
func (r *mockOracle) LookupCountry(net.IP) (string, error) { return "Elbonia", nil }
2016-04-17 11:28:47 +02:00
func (r *mockOracle) LookupCity(net.IP) (string, error) { return "Bornyasherk", nil }
2016-04-17 11:09:56 +02:00
func (r *mockOracle) LookupPort(net.IP, uint64) error { return nil }
func (r *mockOracle) IsLookupAddrEnabled() bool { return true }
func (r *mockOracle) IsLookupCountryEnabled() bool { return true }
2016-04-17 11:28:47 +02:00
func (r *mockOracle) IsLookupCityEnabled() bool { return true }
2016-04-17 11:09:56 +02:00
func (r *mockOracle) IsLookupPortEnabled() bool { return true }
2015-09-29 20:39:21 +02:00
func newTestAPI() *API {
return &API{
2016-04-17 11:09:56 +02:00
oracle: &mockOracle{},
2015-09-29 20:39:21 +02:00
ipFromRequest: func(*http.Request) (net.IP, error) {
return net.ParseIP("127.0.0.1"), nil
},
}
}
2015-09-18 17:13:14 +02:00
func httpGet(url string, json bool, userAgent string) (string, int, error) {
2015-09-17 20:57:27 +02:00
r, err := http.NewRequest("GET", url, nil)
if err != nil {
2015-09-18 17:13:14 +02:00
return "", 0, err
2015-09-17 20:57:27 +02:00
}
if json {
r.Header.Set("Accept", "application/json")
}
r.Header.Set("User-Agent", userAgent)
res, err := http.DefaultClient.Do(r)
if err != nil {
2015-09-18 17:13:14 +02:00
return "", 0, err
2015-09-17 20:57:27 +02:00
}
defer res.Body.Close()
data, err := ioutil.ReadAll(res.Body)
if err != nil {
2015-09-18 17:13:14 +02:00
return "", 0, err
2015-09-17 20:57:27 +02:00
}
2015-09-18 17:13:14 +02:00
return string(data), res.StatusCode, nil
2015-09-17 20:57:27 +02:00
}
2016-04-16 09:52:43 +02:00
func TestClIHandlers(t *testing.T) {
2016-04-16 09:18:21 +02:00
log.SetOutput(ioutil.Discard)
2015-09-29 20:39:21 +02:00
s := httptest.NewServer(newTestAPI().Handlers())
2016-04-16 09:52:43 +02:00
2015-09-17 20:57:27 +02:00
var tests = []struct {
2016-04-16 09:52:43 +02:00
url string
out string
status int
2015-09-17 20:57:27 +02:00
}{
2016-04-16 09:52:43 +02:00
{s.URL, "127.0.0.1\n", 200},
{s.URL + "/ip", "127.0.0.1\n", 200},
{s.URL + "/country", "Elbonia\n", 200},
2016-04-17 11:28:47 +02:00
{s.URL + "/city", "Bornyasherk\n", 200},
2016-04-16 09:52:43 +02:00
{s.URL + "/foo", "404 page not found", 404},
2015-09-17 20:57:27 +02:00
}
2015-09-18 17:42:43 +02:00
2015-09-17 20:57:27 +02:00
for _, tt := range tests {
2016-04-16 09:52:43 +02:00
out, status, err := httpGet(tt.url /* json = */, false, "curl/7.2.6.0")
2015-09-17 20:57:27 +02:00
if err != nil {
t.Fatal(err)
}
2015-09-18 17:13:14 +02:00
if status != tt.status {
t.Errorf("Expected %d, got %d", tt.status, status)
}
2015-09-17 20:57:27 +02:00
if out != tt.out {
t.Errorf("Expected %q, got %q", tt.out, out)
}
}
}
2016-04-16 09:52:43 +02:00
func TestJSONHandlers(t *testing.T) {
2015-09-29 20:39:21 +02:00
log.SetOutput(ioutil.Discard)
2016-04-16 09:52:43 +02:00
s := httptest.NewServer(newTestAPI().Handlers())
2015-09-29 20:39:21 +02:00
2016-04-16 09:52:43 +02:00
var tests = []struct {
url string
out string
status int
}{
2016-04-17 11:28:47 +02:00
{s.URL, `{"ip":"127.0.0.1","country":"Elbonia","city":"Bornyasherk","hostname":"localhost"}`, 200},
2016-04-16 10:53:08 +02:00
{s.URL + "/port/31337", `{"ip":"127.0.0.1","port":31337,"reachable":true}`, 200},
2016-04-16 09:52:43 +02:00
{s.URL + "/foo", `{"error":"404 page not found"}`, 404},
2015-09-29 20:39:21 +02:00
}
2016-04-16 09:52:43 +02:00
for _, tt := range tests {
out, status, err := httpGet(tt.url /* json = */, true, "curl/7.2.6.0")
if err != nil {
t.Fatal(err)
}
if status != tt.status {
t.Errorf("Expected %d, got %d", tt.status, status)
}
if out != tt.out {
t.Errorf("Expected %q, got %q", tt.out, out)
}
2015-09-29 20:39:21 +02:00
}
}
2015-09-17 20:57:27 +02:00
func TestIPFromRequest(t *testing.T) {
var tests = []struct {
in *http.Request
out net.IP
}{
{&http.Request{RemoteAddr: "1.3.3.7:9999"}, net.ParseIP("1.3.3.7")},
{&http.Request{Header: http.Header{"X-Real-Ip": []string{"1.3.3.7"}}}, net.ParseIP("1.3.3.7")},
}
for _, tt := range tests {
ip, err := ipFromRequest(tt.in)
if err != nil {
t.Fatal(err)
}
if !ip.Equal(tt.out) {
t.Errorf("Expected %s, got %s", tt.out, ip)
}
}
}
func TestCLIMatcher(t *testing.T) {
browserUserAgent := "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) " +
"AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.28 " +
"Safari/537.36"
var tests = []struct {
in string
out bool
}{
{"curl/7.26.0", true},
{"Wget/1.13.4 (linux-gnu)", true},
{"fetch libfetch/2.0", true},
2016-04-15 20:19:14 +02:00
{"HTTPie/0.9.3", true},
2016-04-16 09:52:43 +02:00
{"Go 1.1 package http", true},
{"Go-http-client/1.1", true},
{"Go-http-client/2.0", true},
2015-09-17 20:57:27 +02:00
{browserUserAgent, false},
}
for _, tt := range tests {
r := &http.Request{Header: http.Header{"User-Agent": []string{tt.in}}}
if got := cliMatcher(r, nil); got != tt.out {
t.Errorf("Expected %t, got %t for %q", tt.out, got, tt.in)
}
}
}