1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
/*
Copyright 2014 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 filters
import (
"errors"
"github.com/stretchr/testify/assert"
"k8s.io/apiserver/pkg/authentication/authenticator"
"k8s.io/apiserver/pkg/authentication/user"
genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
"net/http"
"net/http/httptest"
"testing"
)
func TestAuthenticateRequestWithAud(t *testing.T) {
success, failed := 0, 0
testcases := []struct {
name string
apiAuds []string
respAuds []string
expectSuccess bool
}{
{
name: "no api audience and no audience in response",
apiAuds: nil,
respAuds: nil,
expectSuccess: true,
},
{
name: "audience in response",
apiAuds: nil,
respAuds: []string{"other"},
expectSuccess: true,
},
{
name: "with api audience",
apiAuds: authenticator.Audiences([]string{"other"}),
respAuds: nil,
expectSuccess: true,
},
{
name: "api audience matching response audience",
apiAuds: authenticator.Audiences([]string{"other"}),
respAuds: []string{"other"},
expectSuccess: true,
},
{
name: "api audience non-matching response audience",
apiAuds: authenticator.Audiences([]string{"other"}),
respAuds: []string{"some"},
expectSuccess: false,
},
}
for _, tc := range testcases {
t.Run(tc.name, func(t *testing.T) {
success, failed = 0, 0
auth := WithAuthentication(
http.HandlerFunc(func(_ http.ResponseWriter, req *http.Request) {
if tc.expectSuccess {
success = 1
} else {
t.Errorf("unexpected call to handler")
}
}),
authenticator.RequestFunc(func(req *http.Request) (*authenticator.Response, bool, error) {
if req.Header.Get("Authorization") == "Something" {
return &authenticator.Response{User: &user.DefaultInfo{Name: "user"}, Audiences: authenticator.Audiences(tc.respAuds)}, true, nil
}
return nil, false, errors.New("Authorization header is missing.")
}),
http.HandlerFunc(func(_ http.ResponseWriter, _ *http.Request) {
if tc.expectSuccess {
t.Errorf("unexpected call to failed")
} else {
failed = 1
}
}),
tc.apiAuds,
)
auth.ServeHTTP(httptest.NewRecorder(), &http.Request{Header: map[string][]string{"Authorization": {"Something"}}})
if tc.expectSuccess {
assert.Equal(t, 1, success)
assert.Equal(t, 0, failed)
} else {
assert.Equal(t, 0, success)
assert.Equal(t, 1, failed)
}
})
}
}
func TestAuthenticateRequest(t *testing.T) {
success := make(chan struct{})
auth := WithAuthentication(
http.HandlerFunc(func(_ http.ResponseWriter, req *http.Request) {
ctx := req.Context()
user, ok := genericapirequest.UserFrom(ctx)
if user == nil || !ok {
t.Errorf("no user stored in context: %#v", ctx)
}
if req.Header.Get("Authorization") != "" {
t.Errorf("Authorization header should be removed from request on success: %#v", req)
}
close(success)
}),
authenticator.RequestFunc(func(req *http.Request) (*authenticator.Response, bool, error) {
if req.Header.Get("Authorization") == "Something" {
return &authenticator.Response{User: &user.DefaultInfo{Name: "user"}}, true, nil
}
return nil, false, errors.New("Authorization header is missing.")
}),
http.HandlerFunc(func(_ http.ResponseWriter, _ *http.Request) {
t.Errorf("unexpected call to failed")
}),
nil,
)
auth.ServeHTTP(httptest.NewRecorder(), &http.Request{Header: map[string][]string{"Authorization": {"Something"}}})
<-success
}
func TestAuthenticateRequestFailed(t *testing.T) {
failed := make(chan struct{})
auth := WithAuthentication(
http.HandlerFunc(func(_ http.ResponseWriter, req *http.Request) {
t.Errorf("unexpected call to handler")
}),
authenticator.RequestFunc(func(req *http.Request) (*authenticator.Response, bool, error) {
return nil, false, nil
}),
http.HandlerFunc(func(_ http.ResponseWriter, _ *http.Request) {
close(failed)
}),
nil,
)
auth.ServeHTTP(httptest.NewRecorder(), &http.Request{})
<-failed
}
func TestAuthenticateRequestError(t *testing.T) {
failed := make(chan struct{})
auth := WithAuthentication(
http.HandlerFunc(func(_ http.ResponseWriter, req *http.Request) {
t.Errorf("unexpected call to handler")
}),
authenticator.RequestFunc(func(req *http.Request) (*authenticator.Response, bool, error) {
return nil, false, errors.New("failure")
}),
http.HandlerFunc(func(_ http.ResponseWriter, _ *http.Request) {
close(failed)
}),
nil,
)
auth.ServeHTTP(httptest.NewRecorder(), &http.Request{})
<-failed
}
|