Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GEP-1911] websocket backend protocol conformance #2495

Merged
merged 4 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions conformance/base/manifests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ spec:
appProtocol: kubernetes.io/h2c
port: 8081
targetPort: 3001
- name: third-port
dprotaso marked this conversation as resolved.
Show resolved Hide resolved
protocol: TCP
appProtocol: kubernetes.io/ws
port: 8082
targetPort: 3000
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we really want to use the same targetPort for both TCP and WS traffic?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is your concern about using the same targetPort?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have no real concern, I was just wondering if this choice was backed by a specific reason. If not, I think we should prefer not to use the same back-side port for multiple front-side ports.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have no real concern, I was just wondering if this choice was backed by a specific reason. I think we should prefer not to use the same back-side port for multiple front-side ports.

Multiplexing HTTP/Websockets on the same port is really common. The only reason why I created a separate ServicePort with a unique port # is because of the following K8s limitation that's being tracked here - kubernetes/kubernetes#118407

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok, sounds good to me 👍

---
apiVersion: apps/v1
kind: Deployment
Expand Down
10 changes: 10 additions & 0 deletions conformance/echo-basic/echo-basic.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import (
"encoding/json"
"encoding/pem"
"fmt"
"io"
"net/http"
"os"
"regexp"
Expand All @@ -31,6 +32,7 @@ import (

"golang.org/x/net/http2"
"golang.org/x/net/http2/h2c"
"golang.org/x/net/websocket"
)

// RequestAssertions contains information about the request and the Ingress
Expand Down Expand Up @@ -100,6 +102,7 @@ func main() {
httpMux.HandleFunc("/health", healthHandler)
httpMux.HandleFunc("/status/", statusHandler)
httpMux.HandleFunc("/", echoHandler)
httpMux.Handle("/ws", websocket.Handler(wsHandler))
httpHandler := &preserveSlashes{httpMux}

errchan := make(chan error)
Expand Down Expand Up @@ -130,6 +133,13 @@ func main() {
}
}

func wsHandler(ws *websocket.Conn) {
fmt.Println("established websocket connection", ws.RemoteAddr())
// Echo websocket frames from the connection back to the client
// until io.EOF
io.Copy(ws, ws)
dprotaso marked this conversation as resolved.
Show resolved Hide resolved
}

func healthHandler(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(200)
w.Write([]byte(`OK`))
Expand Down
109 changes: 109 additions & 0 deletions conformance/tests/httproute-backend-protocol-ws.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
/*
Copyright 2023 The Kubernetes Authors.

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 tests

import (
"bytes"
"fmt"
"testing"
"time"

"golang.org/x/net/websocket"
"k8s.io/apimachinery/pkg/types"

"sigs.k8s.io/gateway-api/conformance/utils/http"
"sigs.k8s.io/gateway-api/conformance/utils/kubernetes"
"sigs.k8s.io/gateway-api/conformance/utils/suite"
)

func init() {
ConformanceTests = append(ConformanceTests,
HTTPRouteBackendProtocolWebSocket,
)
}

var HTTPRouteBackendProtocolWebSocket = suite.ConformanceTest{
ShortName: "HTTPRouteBackendProtocolWebSocket",
Description: "A HTTPRoute with a BackendRef that has an appProtocol kubernetes.io/ws should be functional",
Features: []suite.SupportedFeature{
suite.SupportGateway,
suite.SupportHTTPRoute,
suite.SupportHTTPRouteBackendProtocolWebSocket,
},
Manifests: []string{
"tests/httproute-backend-protocol-ws.yaml",
},
Test: func(t *testing.T, suite *suite.ConformanceTestSuite) {
ns := "gateway-conformance-infra"
routeNN := types.NamespacedName{Name: "backend-protocol-ws", Namespace: ns}
gwNN := types.NamespacedName{Name: "same-namespace", Namespace: ns}
gwAddr := kubernetes.GatewayAndHTTPRoutesMustBeAccepted(t, suite.Client, suite.TimeoutConfig, suite.ControllerName, kubernetes.NewGatewayRef(gwNN), routeNN)

threshold := suite.TimeoutConfig.RequiredConsecutiveSuccesses
maxTimeToConsistency := suite.TimeoutConfig.MaxTimeToConsistency

t.Run("websocket connection should reach backend", func(t *testing.T) {
http.AwaitConvergence(t, threshold, maxTimeToConsistency, func(elapsed time.Duration) bool {
origin := fmt.Sprintf("ws://gateway/%s", t.Name())
remote := fmt.Sprintf("ws://%s/ws", gwAddr)

ws, err := websocket.Dial(remote, "", origin)
if err != nil {
t.Log("failed to dial", err)
return false
}
defer ws.Close()

// Send text frame
var (
textMessage = "Websocket Support!"
textReply string
)
if err := websocket.Message.Send(ws, textMessage); err != nil {
t.Log("failed to send text frame", err)
return false
}
if err := websocket.Message.Receive(ws, &textReply); err != nil {
t.Log("failed to receive text frame", err)
return false
}
if textMessage != textReply {
t.Logf("unexpected reply - want: %s got: %s", textMessage, textReply)
return false
}

// Send byte frame
var (
binaryMessage = []byte{1, 2, 3, 4, 5, 6, 7}
binaryReply []byte
)
if err := websocket.Message.Send(ws, binaryMessage); err != nil {
t.Log("failed to send binary frame", err)
return false
}
if err := websocket.Message.Receive(ws, &binaryReply); err != nil {
t.Log("failed to receive binary frame", err)
}
if !bytes.Equal(binaryMessage, binaryReply) {
t.Logf("unexpected reply - want: %#v got: %#v", binaryMessage, binaryReply)
return false
}
return true
})
})
},
}
18 changes: 18 additions & 0 deletions conformance/tests/httproute-backend-protocol-ws.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: backend-protocol-ws
namespace: gateway-conformance-infra
spec:
parentRefs:
- name: same-namespace
rules:
- backendRefs:
# This points to a Service with the following ServicePort
# - name: third-port
# appProtocol: kubernetes.io/ws
# protocol: TCP
# port: 8082
# targetPort: 3000
- name: infra-backend-v1
port: 8082
4 changes: 4 additions & 0 deletions conformance/utils/suite/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ const (

// This option indicates support for HTTPRoute with a backendref with an appProtocol 'kubernetes.io/h2c'
SupportHTTPRouteBackendProtocolH2C SupportedFeature = "HTTPRouteBackendProtocolH2C"

// This option indicates support for HTTPRoute with a backendref with an appProtoocol 'kubernetes.io/ws'
SupportHTTPRouteBackendProtocolWebSocket SupportedFeature = "HTTPRouteBackendProtocolWebSocket"
)

// HTTPRouteExtendedFeatures includes all the supported features for HTTPRoute
Expand Down Expand Up @@ -171,6 +174,7 @@ const (
var HTTPRouteExperimentalFeatures = sets.New(
SupportHTTPRouteDestinationPortMatching,
SupportHTTPRouteBackendProtocolH2C,
SupportHTTPRouteBackendProtocolWebSocket,
)

// -----------------------------------------------------------------------------
Expand Down