2019-09-18 08:44:27 -07:00
|
|
|
package home
|
|
|
|
|
|
|
|
import (
|
2021-01-26 09:44:19 -07:00
|
|
|
"context"
|
2021-04-22 03:38:24 -07:00
|
|
|
"io"
|
|
|
|
"net"
|
2019-09-18 08:44:27 -07:00
|
|
|
"testing"
|
2021-04-22 03:38:24 -07:00
|
|
|
"time"
|
2019-09-18 08:44:27 -07:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2021-03-25 06:00:27 -07:00
|
|
|
"github.com/stretchr/testify/require"
|
2019-09-18 08:44:27 -07:00
|
|
|
)
|
|
|
|
|
2021-04-22 03:38:24 -07:00
|
|
|
// fakeConn is a mock implementation of net.Conn to simplify testing.
|
|
|
|
//
|
|
|
|
// TODO(e.burkov): Search for other places in code where it may be used. Move
|
|
|
|
// into aghtest then.
|
|
|
|
type fakeConn struct {
|
|
|
|
// Conn is embedded here simply to make *fakeConn a net.Conn without
|
|
|
|
// actually implementing all methods.
|
|
|
|
net.Conn
|
|
|
|
data []byte
|
|
|
|
}
|
2021-03-25 06:00:27 -07:00
|
|
|
|
2021-04-22 03:38:24 -07:00
|
|
|
// Write implements net.Conn interface for *fakeConn. It always returns 0 and a
|
|
|
|
// nil error without mutating the slice.
|
|
|
|
func (c *fakeConn) Write(_ []byte) (n int, err error) {
|
|
|
|
return 0, nil
|
|
|
|
}
|
2021-03-25 06:00:27 -07:00
|
|
|
|
2021-04-22 03:38:24 -07:00
|
|
|
// Read implements net.Conn interface for *fakeConn. It puts the content of
|
|
|
|
// c.data field into b up to the b's capacity.
|
|
|
|
func (c *fakeConn) Read(b []byte) (n int, err error) {
|
|
|
|
return copy(b, c.data), io.EOF
|
|
|
|
}
|
2021-03-25 06:00:27 -07:00
|
|
|
|
2021-04-22 03:38:24 -07:00
|
|
|
// Close implements net.Conn interface for *fakeConn. It always returns nil.
|
|
|
|
func (c *fakeConn) Close() (err error) {
|
|
|
|
return nil
|
|
|
|
}
|
2021-02-04 10:35:13 -07:00
|
|
|
|
2021-04-22 03:38:24 -07:00
|
|
|
// SetReadDeadline implements net.Conn interface for *fakeConn. It always
|
|
|
|
// returns nil.
|
|
|
|
func (c *fakeConn) SetReadDeadline(_ time.Time) (err error) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// fakeDial is a mock implementation of customDialContext to simplify testing.
|
|
|
|
func (c *fakeConn) fakeDial(ctx context.Context, network, addr string) (conn net.Conn, err error) {
|
|
|
|
return c, nil
|
2020-05-27 04:54:31 -07:00
|
|
|
}
|
|
|
|
|
2019-09-18 08:44:27 -07:00
|
|
|
func TestWhois(t *testing.T) {
|
2021-04-22 03:38:24 -07:00
|
|
|
const (
|
|
|
|
nl = "\n"
|
|
|
|
data = `OrgName: FakeOrg LLC` + nl +
|
|
|
|
`City: Nonreal` + nl +
|
|
|
|
`Country: Imagiland` + nl
|
|
|
|
)
|
|
|
|
|
|
|
|
fc := &fakeConn{
|
|
|
|
data: []byte(data),
|
|
|
|
}
|
2020-05-27 04:54:31 -07:00
|
|
|
|
2021-04-22 03:38:24 -07:00
|
|
|
w := Whois{
|
|
|
|
timeoutMsec: 5000,
|
|
|
|
dialContext: fc.fakeDial,
|
|
|
|
}
|
|
|
|
resp, err := w.queryAll(context.Background(), "1.2.3.4")
|
2021-03-25 06:00:27 -07:00
|
|
|
assert.NoError(t, err)
|
|
|
|
|
2019-09-18 08:44:27 -07:00
|
|
|
m := whoisParse(resp)
|
2021-03-25 06:00:27 -07:00
|
|
|
require.NotEmpty(t, m)
|
|
|
|
|
2021-04-22 03:38:24 -07:00
|
|
|
assert.Equal(t, "FakeOrg LLC", m["orgname"])
|
|
|
|
assert.Equal(t, "Imagiland", m["country"])
|
|
|
|
assert.Equal(t, "Nonreal", m["city"])
|
2019-09-18 08:44:27 -07:00
|
|
|
}
|