apiserver/pkg/util/webhook/client_test.go

92 lines
2.2 KiB
Go

/*
Copyright 2024 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 webhook
import (
"testing"
"golang.org/x/net/http2"
"k8s.io/apimachinery/pkg/runtime/schema"
)
func TestWebhookClientConfig(t *testing.T) {
cm, _ := NewClientManager([]schema.GroupVersion{})
authInfoResolver, err := NewDefaultAuthenticationInfoResolver("")
if err != nil {
t.Fatal(err)
}
cm.SetAuthenticationInfoResolver(authInfoResolver)
cm.SetServiceResolver(NewDefaultServiceResolver())
tests := []struct {
name string
url string
expectAllowHTTP2 bool
}{
{
name: "force http1",
url: "https://webhook.example.com",
expectAllowHTTP2: false,
},
{
name: "allow http2 for localhost",
url: "https://localhost",
expectAllowHTTP2: true,
},
{
name: "allow http2 for 127.0.0.1",
url: "https://127.0.0.1",
expectAllowHTTP2: true,
},
{
name: "allow http2 for [::1]:0",
url: "https://[::1]",
expectAllowHTTP2: true,
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
cc := ClientConfig{
URL: tc.url,
}
cfg, err := cm.hookClientConfig(cc)
if err != nil {
t.Fatal(err)
}
if tc.expectAllowHTTP2 && !allowHTTP2(cfg.NextProtos) {
t.Errorf("expected allow http/2, got: %v", cfg.NextProtos)
}
})
}
}
func allowHTTP2(nextProtos []string) bool {
if len(nextProtos) == 0 {
// the transport expressed no NextProto preference, allow
return true
}
for _, p := range nextProtos {
if p == http2.NextProtoTLS {
// the transport explicitly allowed http/2
return true
}
}
// the transport explicitly set NextProtos and excluded http/2
return false
}