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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335
|
package whitelist
import (
"bytes"
"encoding/json"
"errors"
"io"
"log"
"net"
"net/http"
"testing"
"time"
)
type StringLookup struct{}
func (lu StringLookup) Address(args ...interface{}) (net.IP, error) {
if len(args) != 1 {
return nil, errors.New("whitelist: lookup requires a string")
}
var s string
switch arg := args[0].(type) {
case string:
s = arg
default:
return nil, errors.New("whitelist: lookup requires a string")
}
ip := net.ParseIP(s)
if ip == nil {
return nil, errors.New("whitelist: no address found")
}
return ip, nil
}
var slu StringLookup
func checkIPString(wl ACL, addr string, t *testing.T) bool {
ip, err := slu.Address(addr)
if err != nil {
t.Fatalf("%v", err)
}
return wl.Permitted(ip)
}
func addIPString(wl HostACL, addr string, t *testing.T) {
ip, err := slu.Address(addr)
if err != nil {
t.Fatalf("%v", err)
}
wl.Add(ip)
}
func delIPString(wl HostACL, addr string, t *testing.T) {
ip, err := slu.Address(addr)
if err != nil {
t.Fatalf("%v", err)
}
wl.Remove(ip)
}
func TestBasicWhitelist(t *testing.T) {
wl := NewBasic()
if checkIPString(wl, "127.0.0.1", t) {
t.Fatal("whitelist should have denied address")
}
addIPString(wl, "127.0.0.1", t)
if !checkIPString(wl, "127.0.0.1", t) {
t.Fatal("whitelist should have permitted address")
}
delIPString(wl, "127.0.0.1", t)
if checkIPString(wl, "127.0.0.1", t) {
t.Fatal("whitelist should have denied address")
}
addIPString(wl, "::1", t)
if checkIPString(wl, "127.0.0.1", t) {
t.Fatal("whitelist should have denied address")
}
wl.Add(nil)
wl.Remove(nil)
wl.Permitted(nil)
}
func TestStubWhitelist(t *testing.T) {
wl := NewHostStub()
if !checkIPString(wl, "127.0.0.1", t) {
t.Fatal("whitelist should have permitted address")
}
addIPString(wl, "127.0.0.1", t)
if !checkIPString(wl, "127.0.0.1", t) {
t.Fatal("whitelist should have permitted address")
}
delIPString(wl, "127.0.0.1", t)
if !checkIPString(wl, "127.0.0.1", t) {
t.Fatal("whitelist should have permitted address")
}
}
func TestMarshalHost(t *testing.T) {
tv := map[string]*Basic{
"test-a": NewBasic(),
"test-b": NewBasic(),
}
ip := net.ParseIP("192.168.3.1")
tv["test-a"].Add(ip)
ip = net.ParseIP("192.168.3.2")
tv["test-a"].Add(ip)
if len(tv["test-a"].whitelist) != 2 {
t.Fatalf("Expected whitelist to have 2 addresses, but have %d", len(tv["test-a"].whitelist))
}
out, err := json.Marshal(tv)
if err != nil {
t.Fatalf("%v", err)
}
var tvPrime map[string]*Basic
err = json.Unmarshal(out, &tvPrime)
if err != nil {
t.Fatalf("%v", err)
}
}
func TestMarshalHostFail(t *testing.T) {
wl := NewBasic()
badInput := `192.168.3.1/24,127.0.0.1/32`
if err := wl.UnmarshalJSON([]byte(badInput)); err == nil {
t.Fatal("Expected failure unmarshaling bad JSON input.")
}
badInput = `"192.168.3.1/32,127.0.0.252/32"`
if err := wl.UnmarshalJSON([]byte(badInput)); err == nil {
t.Fatal("Expected failure unmarshaling bad JSON input.")
}
}
var shutdown = make(chan struct{}, 1)
var proceed = make(chan struct{}, 0)
func setupTestServer(t *testing.T, wl ACL) {
ln, err := net.Listen("tcp", "127.0.0.1:4141")
if err != nil {
log.Fatalf("%v", err)
}
proceed <- struct{}{}
for {
select {
case _, ok := <-shutdown:
if !ok {
return
}
default:
conn, err := ln.Accept()
if err != nil {
log.Fatalf("%v", err)
}
go handleTestConnection(conn, wl, t)
}
}
}
func handleTestConnection(conn net.Conn, wl ACL, t *testing.T) {
defer conn.Close()
ip, err := NetConnLookup(conn)
if err != nil {
log.Fatalf("%v", err)
}
if wl.Permitted(ip) {
conn.Write([]byte("OK"))
} else {
conn.Write([]byte("NO"))
}
}
func TestNetConn(t *testing.T) {
wl := NewBasic()
defer close(shutdown)
go setupTestServer(t, wl)
<-proceed
conn, err := net.Dial("tcp", "127.0.0.1:4141")
if err != nil {
t.Fatalf("%v", err)
}
body, err := io.ReadAll(conn)
if err != nil {
t.Fatalf("%v", err)
}
if string(body) != "NO" {
t.Fatalf("Expected NO, but received %s", body)
}
conn.Close()
addIPString(wl, "127.0.0.1", t)
conn, err = net.Dial("tcp", "127.0.0.1:4141")
if err != nil {
t.Fatalf("%v", err)
}
body, err = io.ReadAll(conn)
if err != nil {
t.Fatalf("%v", err)
}
if string(body) != "OK" {
t.Fatalf("Expected OK, but received %s", body)
}
conn.Close()
}
func TestBasicDumpLoad(t *testing.T) {
wl := NewBasic()
addIPString(wl, "127.0.0.1", t)
addIPString(wl, "10.0.1.15", t)
addIPString(wl, "192.168.1.5", t)
out := DumpBasic(wl)
loaded, err := LoadBasic(out)
if err != nil {
t.Fatalf("%v", err)
}
dumped := DumpBasic(loaded)
if !bytes.Equal(out, dumped) {
t.Fatalf("dump -> load failed")
}
}
func TestBasicFailedLoad(t *testing.T) {
dump := []byte("192.168.1.5\n192.168.2.3\n192.168.2\n192.168.3.1")
if _, err := LoadBasic(dump); err == nil {
t.Fatalf("LoadBasic should fail on invalid IP address")
}
}
func TestNetConnChecks(t *testing.T) {
if _, err := NetConnLookup(nil); err == nil {
t.Fatal("Address should fail with an invalid argument")
}
}
func TestHTTPRequestLookup(t *testing.T) {
if _, err := HTTPRequestLookup(nil); err == nil {
t.Fatal("Address should fail with an invalid argument")
}
req := new(http.Request)
if _, err := HTTPRequestLookup(req); err == nil {
t.Fatal("Address should fail with an invalid argument")
}
}
type stubConn struct {
Fake bool
Global bool
}
func (conn *stubConn) Read(b []byte) (n int, err error) {
return 0, nil
}
func (conn *stubConn) Write(b []byte) (n int, err error) {
return 0, nil
}
func (conn *stubConn) Close() error {
return nil
}
func (conn *stubConn) LocalAddr() net.Addr {
return nil
}
func (conn *stubConn) RemoteAddr() net.Addr {
if !conn.Fake {
return nil
}
return &net.IPAddr{
IP: net.IP{},
}
}
func (conn *stubConn) SetDeadline(t time.Time) error {
return nil
}
func (conn *stubConn) SetReadDeadline(t time.Time) error {
return nil
}
func (conn *stubConn) SetWriteDeadline(t time.Time) error {
return nil
}
func TestStubConn(t *testing.T) {
var conn = new(stubConn)
_, err := NetConnLookup(conn)
if err == nil {
t.Fatal("Address should fail to return an address")
}
conn.Fake = true
_, err = NetConnLookup(conn)
if err == nil {
t.Fatal("Address should fail to return an address")
}
}
func TestValidIP(t *testing.T) {
ip4 := []byte{127, 0, 0, 1}
ip6 := make([]byte, 16)
ip6[15] = 1
if !validIP(ip4) || !validIP(ip6) {
t.Fatal("Failed to validate an IPv4 or an IPv6 address")
}
}
|