@@ -13,6 +13,7 @@ func TestBrowserSafeAuthorizer(t *testing.T) {
13
13
14
14
expectedVerb string
15
15
expectedSubresource string
16
+ expectedReason string
16
17
}{
17
18
"non-resource" : {
18
19
attributes : authorizer.AttributesRecord {ResourceRequest : false , Verb : "GET" },
@@ -29,15 +30,18 @@ func TestBrowserSafeAuthorizer(t *testing.T) {
29
30
attributes : authorizer.AttributesRecord {ResourceRequest : true , Verb : "get" , Resource : "pods" , Subresource : "proxy" },
30
31
expectedVerb : "get" ,
31
32
expectedSubresource : "unsafeproxy" ,
33
+ expectedReason : "proxy subresource changed to unsafeproxy" ,
32
34
},
33
35
"unsafe proxy verb" : {
34
- attributes : authorizer.AttributesRecord {ResourceRequest : true , Verb : "proxy" , Resource : "nodes" },
35
- expectedVerb : "unsafeproxy" ,
36
+ attributes : authorizer.AttributesRecord {ResourceRequest : true , Verb : "proxy" , Resource : "nodes" },
37
+ expectedVerb : "unsafeproxy" ,
38
+ expectedReason : "proxy verb changed to unsafeproxy" ,
36
39
},
37
40
"unsafe proxy verb anonymous" : {
38
41
attributes : authorizer.AttributesRecord {ResourceRequest : true , Verb : "proxy" , Resource : "nodes" ,
39
42
User : & user.DefaultInfo {Name : "system:anonymous" , Groups : []string {"system:unauthenticated" }}},
40
- expectedVerb : "unsafeproxy" ,
43
+ expectedVerb : "unsafeproxy" ,
44
+ expectedReason : "proxy verb changed to unsafeproxy" ,
41
45
},
42
46
43
47
"proxy subresource authenticated" : {
@@ -51,7 +55,7 @@ func TestBrowserSafeAuthorizer(t *testing.T) {
51
55
safeAuthorizer := NewBrowserSafeAuthorizer (delegateAuthorizer , "system:authenticated" )
52
56
53
57
authorized , reason , err := safeAuthorizer .Authorize (tc .attributes )
54
- if authorized == authorizer .DecisionAllow || len ( reason ) != 0 || err != nil {
58
+ if authorized == authorizer .DecisionAllow || reason != tc . expectedReason || err != nil {
55
59
t .Errorf ("%s: unexpected output: %v %s %v" , name , authorized , reason , err )
56
60
continue
57
61
}
0 commit comments