gitpod/components/ws-proxy/pkg/proxy/workspacerouter_test.go
2021-03-12 08:50:06 +01:00

261 lines
7.0 KiB
Go

// Copyright (c) 2020 Gitpod GmbH. All rights reserved.
// Licensed under the GNU Affero General Public License (AGPL).
// See License-AGPL.txt in the project root for license information.
package proxy
import (
"net/http"
"net/http/httptest"
"testing"
"github.com/google/go-cmp/cmp"
"github.com/gorilla/mux"
)
func TestWorkspaceRouter(t *testing.T) {
const wsHostSuffix = ".ws.gitpod.dev"
type Expectation struct {
WorkspaceID string
WorkspacePort string
Status int
URL string
AdditionalHitCount int
}
tests := []struct {
Name string
URL string
Headers map[string]string
WSHostSuffix string
Router WorkspaceRouter
Infos []WorkspaceInfo
Expected Expectation
}{
{
Name: "host-based workspace access",
URL: "http://amaranth-smelt-9ba20cc1.ws.gitpod.dev/",
Headers: map[string]string{
forwardedHostnameHeader: "amaranth-smelt-9ba20cc1.ws.gitpod.dev",
},
Router: HostBasedRouter(forwardedHostnameHeader, wsHostSuffix),
WSHostSuffix: wsHostSuffix,
Expected: Expectation{
WorkspaceID: "amaranth-smelt-9ba20cc1",
Status: http.StatusOK,
URL: "http://amaranth-smelt-9ba20cc1.ws.gitpod.dev/",
},
},
{
Name: "host-based port access",
URL: "http://1234-amaranth-smelt-9ba20cc1.ws.gitpod.dev/",
Headers: map[string]string{
forwardedHostnameHeader: "1234-amaranth-smelt-9ba20cc1.ws.gitpod.dev",
},
Router: HostBasedRouter(forwardedHostnameHeader, wsHostSuffix),
WSHostSuffix: wsHostSuffix,
Expected: Expectation{
WorkspaceID: "amaranth-smelt-9ba20cc1",
WorkspacePort: "1234",
Status: http.StatusOK,
URL: "http://1234-amaranth-smelt-9ba20cc1.ws.gitpod.dev/",
},
},
{
Name: "host-based blobserve access",
URL: "http://blobserve.ws.gitpod.dev/image:version:/foo/main.js",
Headers: map[string]string{
forwardedHostnameHeader: "blobserve.ws.gitpod.dev",
},
Router: HostBasedRouter(forwardedHostnameHeader, wsHostSuffix),
WSHostSuffix: wsHostSuffix,
Expected: Expectation{
Status: http.StatusOK,
URL: "http://blobserve.ws.gitpod.dev/image:version:/foo/main.js",
},
},
}
for _, test := range tests {
t.Run(test.Name, func(t *testing.T) {
r := mux.NewRouter()
theiaRouter, portRouter, blobserveRouter := test.Router(r, &fakeWsInfoProvider{infos: test.Infos})
var act Expectation
actRecorder := func(w http.ResponseWriter, req *http.Request) {
defer w.WriteHeader(200)
vars := mux.Vars(req)
if vars == nil {
return
}
act.WorkspaceID = vars[workspaceIDIdentifier]
act.WorkspacePort = vars[workspacePortIdentifier]
act.URL = req.URL.String()
act.AdditionalHitCount++
}
if theiaRouter != nil {
theiaRouter.HandleFunc("/", actRecorder)
theiaRouter.HandleFunc("/services", actRecorder)
}
if portRouter != nil {
portRouter.HandleFunc("/", actRecorder)
}
if blobserveRouter != nil {
blobserveRouter.HandleFunc("/", actRecorder)
blobserveRouter.HandleFunc("/image:version:/foo/main.js", actRecorder)
}
// build artificial request
req, err := http.NewRequest("GET", test.URL, nil)
if err != nil {
t.Fatal(err)
}
for key, value := range test.Headers {
req.Header.Add(key, value)
}
// "send" artificial request with response mock
rr := httptest.NewRecorder()
r.ServeHTTP(rr, req)
// we don't count the first hit to make the expectation structure easier.
act.AdditionalHitCount--
act.Status = rr.Code
if diff := cmp.Diff(test.Expected, act); diff != "" {
t.Errorf("unexpected response (-want +got):\n%s", diff)
}
})
}
}
func TestMatchWorkspaceHostHeader(t *testing.T) {
type matchResult struct {
MatchesWorkspace bool
MatchesPort bool
WorkspaceVars map[string]string
PortVars map[string]string
}
wsHostSuffix := ".gitpod.io"
tests := []struct {
Name string
HostHeader string
Expected matchResult
}{
{
Name: "no match",
HostHeader: "foobar.com",
},
{
Name: "no host",
HostHeader: "",
},
{
Name: "workspace match",
HostHeader: "amaranth-smelt-9ba20cc1" + wsHostSuffix,
Expected: matchResult{
MatchesWorkspace: true,
WorkspaceVars: map[string]string{
foreignOriginPrefix: "",
workspaceIDIdentifier: "amaranth-smelt-9ba20cc1",
},
},
},
{
Name: "webview workspace match",
HostHeader: "webview-amaranth-smelt-9ba20cc1" + wsHostSuffix,
Expected: matchResult{
MatchesWorkspace: true,
WorkspaceVars: map[string]string{
foreignOriginPrefix: "webview-",
workspaceIDIdentifier: "amaranth-smelt-9ba20cc1",
},
},
},
{
Name: "mini browser workspace match",
HostHeader: "browser-amaranth-smelt-9ba20cc1" + wsHostSuffix,
Expected: matchResult{
MatchesWorkspace: true,
WorkspaceVars: map[string]string{
foreignOriginPrefix: "browser-",
workspaceIDIdentifier: "amaranth-smelt-9ba20cc1",
},
},
},
{
Name: "port match",
HostHeader: "8080-amaranth-smelt-9ba20cc1" + wsHostSuffix,
Expected: matchResult{
MatchesPort: true,
PortVars: map[string]string{
foreignOriginPrefix: "",
workspaceIDIdentifier: "amaranth-smelt-9ba20cc1",
workspacePortIdentifier: "8080",
},
},
},
{
Name: "webview port match",
HostHeader: "webview-8080-amaranth-smelt-9ba20cc1" + wsHostSuffix,
Expected: matchResult{
MatchesPort: true,
PortVars: map[string]string{
foreignOriginPrefix: "webview-",
workspaceIDIdentifier: "amaranth-smelt-9ba20cc1",
workspacePortIdentifier: "8080",
},
},
},
{
Name: "mini browser port match",
HostHeader: "browser-8080-amaranth-smelt-9ba20cc1" + wsHostSuffix,
Expected: matchResult{
MatchesPort: true,
PortVars: map[string]string{
foreignOriginPrefix: "browser-",
workspaceIDIdentifier: "amaranth-smelt-9ba20cc1",
workspacePortIdentifier: "8080",
},
},
},
}
for _, test := range tests {
t.Run(test.Name, func(t *testing.T) {
req := &http.Request{
Host: test.HostHeader,
Method: http.MethodGet,
Header: http.Header{
forwardedHostnameHeader: []string{test.HostHeader},
},
}
prov := func(req *http.Request) string { return test.HostHeader }
wsMatch := mux.RouteMatch{Vars: make(map[string]string)}
matchesWS := matchWorkspaceHostHeader(wsHostSuffix, prov)(req, &wsMatch)
portMatch := mux.RouteMatch{Vars: make(map[string]string)}
matchesPort := matchWorkspacePortHostHeader(wsHostSuffix, prov)(req, &portMatch)
res := matchResult{
MatchesPort: matchesPort,
MatchesWorkspace: matchesWS,
PortVars: portMatch.Vars,
WorkspaceVars: wsMatch.Vars,
}
if len(res.PortVars) == 0 {
res.PortVars = nil
}
if len(res.WorkspaceVars) == 0 {
res.WorkspaceVars = nil
}
if diff := cmp.Diff(test.Expected, res); diff != "" {
t.Errorf("unexpected response (-want +got):\n%s", diff)
}
})
}
}