2015-01-08 20:41:38 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 Google Inc. All rights reserved.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package portforward
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"reflect"
|
|
|
|
"sync"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/client"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/httpstream"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestParsePortsAndNew(t *testing.T) {
|
|
|
|
tests := []struct {
|
|
|
|
input []string
|
|
|
|
expected []ForwardedPort
|
|
|
|
expectParseError bool
|
|
|
|
expectNewError bool
|
|
|
|
}{
|
|
|
|
{input: []string{}, expectNewError: true},
|
|
|
|
{input: []string{"a"}, expectParseError: true, expectNewError: true},
|
|
|
|
{input: []string{":a"}, expectParseError: true, expectNewError: true},
|
|
|
|
{input: []string{"-1"}, expectParseError: true, expectNewError: true},
|
|
|
|
{input: []string{"65536"}, expectParseError: true, expectNewError: true},
|
|
|
|
{input: []string{"0"}, expectParseError: true, expectNewError: true},
|
|
|
|
{input: []string{"0:0"}, expectParseError: true, expectNewError: true},
|
|
|
|
{input: []string{"a:5000"}, expectParseError: true, expectNewError: true},
|
|
|
|
{input: []string{"5000:a"}, expectParseError: true, expectNewError: true},
|
|
|
|
{
|
|
|
|
input: []string{"5000", "5000:5000", "8888:5000", "5000:8888", ":5000", "0:5000"},
|
|
|
|
expected: []ForwardedPort{
|
|
|
|
{5000, 5000},
|
|
|
|
{5000, 5000},
|
|
|
|
{8888, 5000},
|
|
|
|
{5000, 8888},
|
|
|
|
{0, 5000},
|
|
|
|
{0, 5000},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, test := range tests {
|
|
|
|
parsed, err := parsePorts(test.input)
|
|
|
|
haveError := err != nil
|
|
|
|
if e, a := test.expectParseError, haveError; e != a {
|
|
|
|
t.Fatalf("%d: parsePorts: error expected=%t, got %t: %s", i, e, a, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedRequest := &client.Request{}
|
|
|
|
expectedConfig := &client.Config{}
|
|
|
|
expectedStopChan := make(chan struct{})
|
|
|
|
pf, err := New(expectedRequest, expectedConfig, test.input, expectedStopChan)
|
|
|
|
haveError = err != nil
|
|
|
|
if e, a := test.expectNewError, haveError; e != a {
|
|
|
|
t.Fatalf("%d: New: error expected=%t, got %t: %s", i, e, a, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if test.expectParseError || test.expectNewError {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
for pi, expectedPort := range test.expected {
|
|
|
|
if e, a := expectedPort.Local, parsed[pi].Local; e != a {
|
|
|
|
t.Fatalf("%d: local expected: %d, got: %d", i, e, a)
|
|
|
|
}
|
|
|
|
if e, a := expectedPort.Remote, parsed[pi].Remote; e != a {
|
|
|
|
t.Fatalf("%d: remote expected: %d, got: %d", i, e, a)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if e, a := expectedRequest, pf.req; e != a {
|
|
|
|
t.Fatalf("%d: req: expected %#v, got %#v", i, e, a)
|
|
|
|
}
|
|
|
|
if e, a := expectedConfig, pf.config; e != a {
|
|
|
|
t.Fatalf("%d: config: expected %#v, got %#v", i, e, a)
|
|
|
|
}
|
|
|
|
if e, a := test.expected, pf.ports; !reflect.DeepEqual(e, a) {
|
|
|
|
t.Fatalf("%d: ports: expected %#v, got %#v", i, e, a)
|
|
|
|
}
|
|
|
|
if e, a := expectedStopChan, pf.stopChan; e != a {
|
|
|
|
t.Fatalf("%d: stopChan: expected %#v, got %#v", i, e, a)
|
|
|
|
}
|
|
|
|
if pf.Ready == nil {
|
|
|
|
t.Fatalf("%d: Ready should be non-nil", i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type fakeUpgrader struct {
|
|
|
|
conn *fakeUpgradeConnection
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *fakeUpgrader) upgrade(req *client.Request, config *client.Config) (httpstream.Connection, error) {
|
|
|
|
return u.conn, u.err
|
|
|
|
}
|
|
|
|
|
|
|
|
type fakeUpgradeConnection struct {
|
|
|
|
closeCalled bool
|
|
|
|
lock sync.Mutex
|
|
|
|
streams map[string]*fakeUpgradeStream
|
|
|
|
portData map[string]string
|
|
|
|
}
|
|
|
|
|
|
|
|
func newFakeUpgradeConnection() *fakeUpgradeConnection {
|
|
|
|
return &fakeUpgradeConnection{
|
|
|
|
streams: make(map[string]*fakeUpgradeStream),
|
|
|
|
portData: make(map[string]string),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *fakeUpgradeConnection) CreateStream(headers http.Header) (httpstream.Stream, error) {
|
|
|
|
c.lock.Lock()
|
|
|
|
defer c.lock.Unlock()
|
|
|
|
|
|
|
|
stream := &fakeUpgradeStream{}
|
|
|
|
c.streams[headers.Get(api.PortHeader)] = stream
|
2015-04-09 17:18:09 +00:00
|
|
|
// only simulate data on the data stream for now, not the error stream
|
|
|
|
if headers.Get(api.StreamType) == api.StreamTypeData {
|
|
|
|
stream.data = c.portData[headers.Get(api.PortHeader)]
|
|
|
|
}
|
2015-01-08 20:41:38 +00:00
|
|
|
|
|
|
|
return stream, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *fakeUpgradeConnection) Close() error {
|
|
|
|
c.lock.Lock()
|
|
|
|
defer c.lock.Unlock()
|
|
|
|
|
|
|
|
c.closeCalled = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *fakeUpgradeConnection) CloseChan() <-chan bool {
|
|
|
|
return make(chan bool)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *fakeUpgradeConnection) SetIdleTimeout(timeout time.Duration) {
|
|
|
|
}
|
|
|
|
|
|
|
|
type fakeUpgradeStream struct {
|
|
|
|
readCalled bool
|
|
|
|
writeCalled bool
|
|
|
|
dataWritten []byte
|
|
|
|
closeCalled bool
|
|
|
|
resetCalled bool
|
|
|
|
data string
|
|
|
|
lock sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *fakeUpgradeStream) Read(p []byte) (int, error) {
|
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
|
|
|
s.readCalled = true
|
|
|
|
b := []byte(s.data)
|
|
|
|
n := copy(p, b)
|
|
|
|
return n, io.EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *fakeUpgradeStream) Write(p []byte) (int, error) {
|
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
|
|
|
s.writeCalled = true
|
|
|
|
s.dataWritten = make([]byte, len(p))
|
|
|
|
copy(s.dataWritten, p)
|
|
|
|
return len(p), io.EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *fakeUpgradeStream) Close() error {
|
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
|
|
|
s.closeCalled = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *fakeUpgradeStream) Reset() error {
|
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
|
|
|
s.resetCalled = true
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *fakeUpgradeStream) Headers() http.Header {
|
|
|
|
s.lock.Lock()
|
|
|
|
defer s.lock.Unlock()
|
|
|
|
return http.Header{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestForwardPorts(t *testing.T) {
|
|
|
|
testCases := []struct {
|
|
|
|
Upgrader *fakeUpgrader
|
|
|
|
Ports []string
|
|
|
|
Send map[uint16]string
|
|
|
|
Receive map[uint16]string
|
|
|
|
Err bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Upgrader: &fakeUpgrader{err: errors.New("bail")},
|
|
|
|
Err: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Upgrader: &fakeUpgrader{conn: newFakeUpgradeConnection()},
|
|
|
|
Ports: []string{"5000"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Upgrader: &fakeUpgrader{conn: newFakeUpgradeConnection()},
|
|
|
|
Ports: []string{"5000", "6000"},
|
|
|
|
Send: map[uint16]string{
|
|
|
|
5000: "abcd",
|
|
|
|
6000: "ghij",
|
|
|
|
},
|
|
|
|
Receive: map[uint16]string{
|
|
|
|
5000: "1234",
|
|
|
|
6000: "5678",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, testCase := range testCases {
|
|
|
|
stopChan := make(chan struct{}, 1)
|
|
|
|
|
|
|
|
pf, err := New(&client.Request{}, &client.Config{}, testCase.Ports, stopChan)
|
|
|
|
hasErr := err != nil
|
|
|
|
if hasErr != testCase.Err {
|
|
|
|
t.Fatalf("%d: New: expected %t, got %t: %v", i, testCase.Err, hasErr, err)
|
|
|
|
}
|
|
|
|
if pf == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
pf.upgrader = testCase.Upgrader
|
|
|
|
if testCase.Upgrader.err != nil {
|
|
|
|
err := pf.ForwardPorts()
|
|
|
|
hasErr := err != nil
|
|
|
|
if hasErr != testCase.Err {
|
|
|
|
t.Fatalf("%d: ForwardPorts: expected %t, got %t: %v", i, testCase.Err, hasErr, err)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
doneChan := make(chan error)
|
|
|
|
go func() {
|
|
|
|
doneChan <- pf.ForwardPorts()
|
|
|
|
}()
|
2015-02-20 21:29:42 +00:00
|
|
|
<-pf.Ready
|
2015-01-08 20:41:38 +00:00
|
|
|
|
|
|
|
conn := testCase.Upgrader.conn
|
|
|
|
|
|
|
|
for port, data := range testCase.Send {
|
|
|
|
conn.lock.Lock()
|
|
|
|
conn.portData[fmt.Sprintf("%d", port)] = testCase.Receive[port]
|
|
|
|
conn.lock.Unlock()
|
|
|
|
|
|
|
|
clientConn, err := net.Dial("tcp", fmt.Sprintf("localhost:%d", port))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("%d: error dialing %d: %s", i, port, err)
|
|
|
|
}
|
|
|
|
defer clientConn.Close()
|
|
|
|
|
|
|
|
n, err := clientConn.Write([]byte(data))
|
|
|
|
if err != nil && err != io.EOF {
|
|
|
|
t.Fatalf("%d: Error sending data '%s': %s", i, data, err)
|
|
|
|
}
|
|
|
|
if n == 0 {
|
|
|
|
t.Fatalf("%d: unexpected write of 0 bytes", i)
|
|
|
|
}
|
|
|
|
b := make([]byte, 4)
|
|
|
|
n, err = clientConn.Read(b)
|
|
|
|
if err != nil && err != io.EOF {
|
|
|
|
t.Fatalf("%d: Error reading data: %s", i, err)
|
|
|
|
}
|
|
|
|
if !bytes.Equal([]byte(testCase.Receive[port]), b) {
|
|
|
|
t.Fatalf("%d: expected to read '%s', got '%s'", i, testCase.Receive[port], b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// tell r.ForwardPorts to stop
|
|
|
|
close(stopChan)
|
|
|
|
|
|
|
|
// wait for r.ForwardPorts to actually return
|
2015-02-20 21:29:42 +00:00
|
|
|
err = <-doneChan
|
|
|
|
if err != nil {
|
2015-03-31 22:32:02 +00:00
|
|
|
t.Fatalf("%d: unexpected error: %s", i, err)
|
2015-01-08 20:41:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if e, a := len(testCase.Send), len(conn.streams); e != a {
|
2015-03-31 22:32:02 +00:00
|
|
|
t.Fatalf("%d: expected %d streams to be created, got %d", i, e, a)
|
2015-01-08 20:41:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if !conn.closeCalled {
|
|
|
|
t.Fatalf("%d: expected conn closure", i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|