mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 05:40:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			189 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			189 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| Copyright 2017 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 auth
 | |
| 
 | |
| import (
 | |
| 	"bytes"
 | |
| 	"fmt"
 | |
| 	"io/ioutil"
 | |
| 	"net/http"
 | |
| 	"testing"
 | |
| 	"time"
 | |
| 
 | |
| 	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
 | |
| 	"k8s.io/apimachinery/pkg/labels"
 | |
| 	"k8s.io/apiserver/pkg/authentication/request/bearertoken"
 | |
| 	bootstrapapi "k8s.io/client-go/tools/bootstrap/token/api"
 | |
| 	api "k8s.io/kubernetes/pkg/apis/core"
 | |
| 	"k8s.io/kubernetes/plugin/pkg/admission/admit"
 | |
| 	"k8s.io/kubernetes/plugin/pkg/auth/authenticator/token/bootstrap"
 | |
| 	bootstraputil "k8s.io/kubernetes/test/e2e/lifecycle/bootstrap"
 | |
| 	"k8s.io/kubernetes/test/integration"
 | |
| 	"k8s.io/kubernetes/test/integration/framework"
 | |
| )
 | |
| 
 | |
| type bootstrapSecrets []*api.Secret
 | |
| 
 | |
| func (b bootstrapSecrets) List(selector labels.Selector) (ret []*api.Secret, err error) {
 | |
| 	return b, nil
 | |
| }
 | |
| 
 | |
| func (b bootstrapSecrets) Get(name string) (*api.Secret, error) {
 | |
| 	return b[0], nil
 | |
| }
 | |
| 
 | |
| // TestBootstrapTokenAuth tests the bootstrap token auth provider
 | |
| func TestBootstrapTokenAuth(t *testing.T) {
 | |
| 	tokenId, err := bootstraputil.GenerateTokenId()
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("unexpected error: %v", err)
 | |
| 	}
 | |
| 	secret, err := bootstraputil.GenerateTokenSecret()
 | |
| 	if err != nil {
 | |
| 		t.Fatalf("unexpected error: %v", err)
 | |
| 	}
 | |
| 	var bootstrapSecretValid = &api.Secret{
 | |
| 		ObjectMeta: metav1.ObjectMeta{
 | |
| 			Namespace: metav1.NamespaceSystem,
 | |
| 			Name:      bootstrapapi.BootstrapTokenSecretPrefix,
 | |
| 		},
 | |
| 		Type: api.SecretTypeBootstrapToken,
 | |
| 		Data: map[string][]byte{
 | |
| 			bootstrapapi.BootstrapTokenIDKey:               []byte(tokenId),
 | |
| 			bootstrapapi.BootstrapTokenSecretKey:           []byte(secret),
 | |
| 			bootstrapapi.BootstrapTokenUsageAuthentication: []byte("true"),
 | |
| 		},
 | |
| 	}
 | |
| 	var bootstrapSecretInvalid = &api.Secret{
 | |
| 		ObjectMeta: metav1.ObjectMeta{
 | |
| 			Namespace: metav1.NamespaceSystem,
 | |
| 			Name:      bootstrapapi.BootstrapTokenSecretPrefix,
 | |
| 		},
 | |
| 		Type: api.SecretTypeBootstrapToken,
 | |
| 		Data: map[string][]byte{
 | |
| 			bootstrapapi.BootstrapTokenIDKey:               []byte(tokenId),
 | |
| 			bootstrapapi.BootstrapTokenSecretKey:           []byte("invalid"),
 | |
| 			bootstrapapi.BootstrapTokenUsageAuthentication: []byte("true"),
 | |
| 		},
 | |
| 	}
 | |
| 	var expiredBootstrapToken = &api.Secret{
 | |
| 		ObjectMeta: metav1.ObjectMeta{
 | |
| 			Namespace: metav1.NamespaceSystem,
 | |
| 			Name:      bootstrapapi.BootstrapTokenSecretPrefix,
 | |
| 		},
 | |
| 		Type: api.SecretTypeBootstrapToken,
 | |
| 		Data: map[string][]byte{
 | |
| 			bootstrapapi.BootstrapTokenIDKey:               []byte(tokenId),
 | |
| 			bootstrapapi.BootstrapTokenSecretKey:           []byte("invalid"),
 | |
| 			bootstrapapi.BootstrapTokenUsageAuthentication: []byte("true"),
 | |
| 			bootstrapapi.BootstrapTokenExpirationKey:       []byte(bootstraputil.TimeStringFromNow(-time.Hour)),
 | |
| 		},
 | |
| 	}
 | |
| 	type request struct {
 | |
| 		verb        string
 | |
| 		URL         string
 | |
| 		body        string
 | |
| 		statusCodes map[int]bool // Set of expected resp.StatusCode if all goes well.
 | |
| 	}
 | |
| 	tests := []struct {
 | |
| 		name    string
 | |
| 		request request
 | |
| 		secret  *api.Secret
 | |
| 	}{
 | |
| 		{
 | |
| 			name:    "valid token",
 | |
| 			request: request{verb: "GET", URL: path("pods", "", ""), body: "", statusCodes: integration.Code200},
 | |
| 			secret:  bootstrapSecretValid,
 | |
| 		},
 | |
| 		{
 | |
| 			name:    "invalid token format",
 | |
| 			request: request{verb: "GET", URL: path("pods", "", ""), body: "", statusCodes: integration.Code401},
 | |
| 			secret:  bootstrapSecretInvalid,
 | |
| 		},
 | |
| 		{
 | |
| 			name:    "invalid token expired",
 | |
| 			request: request{verb: "GET", URL: path("pods", "", ""), body: "", statusCodes: integration.Code401},
 | |
| 			secret:  expiredBootstrapToken,
 | |
| 		},
 | |
| 	}
 | |
| 	for _, test := range tests {
 | |
| 
 | |
| 		authenticator := bearertoken.New(bootstrap.NewTokenAuthenticator(bootstrapSecrets{test.secret}))
 | |
| 		// Set up a master
 | |
| 		masterConfig := framework.NewIntegrationTestMasterConfig()
 | |
| 		masterConfig.GenericConfig.Authenticator = authenticator
 | |
| 		masterConfig.GenericConfig.AdmissionControl = admit.NewAlwaysAdmit()
 | |
| 		_, s, closeFn := framework.RunAMaster(masterConfig)
 | |
| 		defer closeFn()
 | |
| 
 | |
| 		ns := framework.CreateTestingNamespace("auth-bootstrap-token", s, t)
 | |
| 		defer framework.DeleteTestingNamespace(ns, s, t)
 | |
| 
 | |
| 		previousResourceVersion := make(map[string]float64)
 | |
| 		transport := http.DefaultTransport
 | |
| 
 | |
| 		token := tokenId + "." + secret
 | |
| 		var bodyStr string
 | |
| 		if test.request.body != "" {
 | |
| 			sub := ""
 | |
| 			if test.request.verb == "PUT" {
 | |
| 				// For update operations, insert previous resource version
 | |
| 				if resVersion := previousResourceVersion[getPreviousResourceVersionKey(test.request.URL, "")]; resVersion != 0 {
 | |
| 					sub += fmt.Sprintf(",\r\n\"resourceVersion\": \"%v\"", resVersion)
 | |
| 				}
 | |
| 				sub += fmt.Sprintf(",\r\n\"namespace\": %q", ns.Name)
 | |
| 			}
 | |
| 			bodyStr = fmt.Sprintf(test.request.body, sub)
 | |
| 		}
 | |
| 		test.request.body = bodyStr
 | |
| 		bodyBytes := bytes.NewReader([]byte(bodyStr))
 | |
| 		req, err := http.NewRequest(test.request.verb, s.URL+test.request.URL, bodyBytes)
 | |
| 		if err != nil {
 | |
| 			t.Fatalf("unexpected error: %v", err)
 | |
| 		}
 | |
| 		req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", token))
 | |
| 		if test.request.verb == "PATCH" {
 | |
| 			req.Header.Set("Content-Type", "application/merge-patch+json")
 | |
| 		}
 | |
| 
 | |
| 		func() {
 | |
| 			resp, err := transport.RoundTrip(req)
 | |
| 			defer resp.Body.Close()
 | |
| 			if err != nil {
 | |
| 				t.Logf("case %v", test.name)
 | |
| 				t.Fatalf("unexpected error: %v", err)
 | |
| 			}
 | |
| 			b, _ := ioutil.ReadAll(resp.Body)
 | |
| 			if _, ok := test.request.statusCodes[resp.StatusCode]; !ok {
 | |
| 				t.Logf("case %v", test.name)
 | |
| 				t.Errorf("Expected status one of %v, but got %v", test.request.statusCodes, resp.StatusCode)
 | |
| 				t.Errorf("Body: %v", string(b))
 | |
| 			} else {
 | |
| 				if test.request.verb == "POST" {
 | |
| 					// For successful create operations, extract resourceVersion
 | |
| 					id, currentResourceVersion, err := parseResourceVersion(b)
 | |
| 					if err == nil {
 | |
| 						key := getPreviousResourceVersionKey(test.request.URL, id)
 | |
| 						previousResourceVersion[key] = currentResourceVersion
 | |
| 					}
 | |
| 				}
 | |
| 			}
 | |
| 
 | |
| 		}()
 | |
| 	}
 | |
| }
 |