|
|
|
@ -4,7 +4,11 @@ import (
|
|
|
|
|
"context"
|
|
|
|
|
"crypto/tls"
|
|
|
|
|
"net"
|
|
|
|
|
"path/filepath"
|
|
|
|
|
"runtime"
|
|
|
|
|
"strconv"
|
|
|
|
|
"testing"
|
|
|
|
|
"time"
|
|
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
|
|
|
|
@ -23,9 +27,7 @@ func TestProxy_public(t *testing.T) {
|
|
|
|
|
t.Skip("too slow for testing.Short")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
require := require.New(t)
|
|
|
|
|
|
|
|
|
|
ports := freeport.MustTake(1)
|
|
|
|
|
ports := freeport.MustTake(2)
|
|
|
|
|
defer freeport.Return(ports)
|
|
|
|
|
|
|
|
|
|
a := agent.NewTestAgent(t, "")
|
|
|
|
@ -42,12 +44,31 @@ func TestProxy_public(t *testing.T) {
|
|
|
|
|
Service: "echo",
|
|
|
|
|
},
|
|
|
|
|
}, nil)
|
|
|
|
|
require.NoError(err)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
// Start the backend service that is being proxied
|
|
|
|
|
testApp := NewTestTCPServer(t)
|
|
|
|
|
defer testApp.Close()
|
|
|
|
|
|
|
|
|
|
upstreams := []UpstreamConfig{
|
|
|
|
|
{
|
|
|
|
|
DestinationName: "just-a-port",
|
|
|
|
|
LocalBindPort: ports[1],
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var unixSocket string
|
|
|
|
|
if runtime.GOOS != "windows" {
|
|
|
|
|
tempDir := testutil.TempDir(t, "consul")
|
|
|
|
|
unixSocket = filepath.Join(tempDir, "test.sock")
|
|
|
|
|
|
|
|
|
|
upstreams = append(upstreams, UpstreamConfig{
|
|
|
|
|
DestinationName: "just-a-unix-domain-socket",
|
|
|
|
|
LocalBindSocketPath: unixSocket,
|
|
|
|
|
LocalBindSocketMode: "0600",
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Start the proxy
|
|
|
|
|
p, err := New(client, NewStaticConfigWatcher(&Config{
|
|
|
|
|
ProxiedServiceName: "echo",
|
|
|
|
@ -56,8 +77,9 @@ func TestProxy_public(t *testing.T) {
|
|
|
|
|
BindPort: ports[0],
|
|
|
|
|
LocalServiceAddress: testApp.Addr().String(),
|
|
|
|
|
},
|
|
|
|
|
Upstreams: upstreams,
|
|
|
|
|
}), testutil.Logger(t))
|
|
|
|
|
require.NoError(err)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
defer p.Close()
|
|
|
|
|
go p.Serve()
|
|
|
|
|
|
|
|
|
@ -65,7 +87,7 @@ func TestProxy_public(t *testing.T) {
|
|
|
|
|
// if the proxy supports it. This is so we can verify below that the proxy _doesn't_
|
|
|
|
|
// advertise `h2` support as it's only a L4 proxy.
|
|
|
|
|
svc, err := connect.NewServiceWithConfig("echo", connect.Config{Client: client, ServerNextProtos: []string{"h2"}})
|
|
|
|
|
require.NoError(err)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
|
|
// Create a test connection to the proxy. We retry here a few times
|
|
|
|
|
// since this is dependent on the agent actually starting up and setting
|
|
|
|
@ -83,8 +105,25 @@ func TestProxy_public(t *testing.T) {
|
|
|
|
|
|
|
|
|
|
// Verify that we did not select h2 via ALPN since the proxy is layer 4 only
|
|
|
|
|
tlsConn := conn.(*tls.Conn)
|
|
|
|
|
require.Equal("", tlsConn.ConnectionState().NegotiatedProtocol)
|
|
|
|
|
require.Equal(t, "", tlsConn.ConnectionState().NegotiatedProtocol)
|
|
|
|
|
|
|
|
|
|
// Connection works, test it is the right one
|
|
|
|
|
TestEchoConn(t, conn, "")
|
|
|
|
|
|
|
|
|
|
t.Run("verify port upstream is configured", func(t *testing.T) {
|
|
|
|
|
// Verify that it is listening by doing a simple TCP dial.
|
|
|
|
|
addr := net.JoinHostPort("127.0.0.1", strconv.Itoa(ports[1]))
|
|
|
|
|
conn, err := net.DialTimeout("tcp", addr, 100*time.Millisecond)
|
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
_ = conn.Close()
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
t.Run("verify unix domain socket upstream will never work", func(t *testing.T) {
|
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
|
t.SkipNow()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Ensure the socket was not created
|
|
|
|
|
require.NoFileExists(t, unixSocket)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|