@@ -88,10 +88,13 @@ describe('RoleBindingsService', function() {
88
88
it ( 'should update the rolebinding by removing the subject from the subject list' , function ( ) {
89
89
var bindings = [ {
90
90
roleRef : { name : 'admin' } ,
91
- subjects : [ { name : 'jane' , kind : 'user' } , { name : 'jack' , kind : 'user' } ]
91
+ subjects : [
92
+ { name : 'jane' , kind : 'user' } ,
93
+ { name : 'jack' , kind : 'user' }
94
+ ]
92
95
} ] ;
93
96
RoleBindingsService
94
- . removeSubject ( 'jane' , 'admin' , bindings )
97
+ . removeSubject ( 'jane' , 'admin' , null , bindings )
95
98
. then ( function ( resp ) {
96
99
expect ( resp [ 0 ] . subjects ) . toEqual ( [ {
97
100
name : 'jack' ,
@@ -102,13 +105,62 @@ describe('RoleBindingsService', function() {
102
105
$rootScope . $digest ( ) ;
103
106
} ) ;
104
107
108
+ // TODO: cover this case
109
+ it ( 'should honor the namespace of a subject if provided' , function ( ) {
110
+ var bindings = [ {
111
+ roleRef : { name : 'admin' } ,
112
+ subjects : [
113
+ // multiple jim, only one should be removed in test 1
114
+ { name : 'jim' , kind : 'user' } ,
115
+ { name : 'jim' , kind : 'user' , namespace : 'yourproject' } ,
116
+ { name : 'jim' , kind : 'user' , namespace : 'myproject' } ,
117
+ { name : 'jack' , kind : 'user' }
118
+ ]
119
+ } , {
120
+ roleRef : { name : 'view' } ,
121
+ subjects : [
122
+ // multiple jane, only one should be removed in test 2
123
+ { name : 'jane' , kind : 'user' , namespace : 'myproject' } ,
124
+ { name : 'jack' , kind : 'user' , namespace : 'yourproject' } ,
125
+ { name : 'jane' , kind : 'user' , namespace : 'herproject' } ,
126
+ { name : 'jack' , kind : 'user' , namespace : 'hisproject' }
127
+ ]
128
+ } ] ;
129
+
130
+ // test 1
131
+ RoleBindingsService
132
+ . removeSubject ( 'jim' , 'admin' , 'myproject' , bindings )
133
+ . then ( function ( resp ) {
134
+ expect ( resp [ 0 ] . subjects ) . toEqual ( [
135
+ { name : 'jim' , kind : 'user' } ,
136
+ { name : 'jim' , kind : 'user' , namespace : 'yourproject' } ,
137
+ { name : 'jack' , kind : 'user' }
138
+ ] ) ;
139
+
140
+ } ) ;
141
+
142
+ // test 2
143
+ RoleBindingsService
144
+ . removeSubject ( 'jane' , 'view' , 'herproject' , bindings )
145
+ . then ( function ( resp ) {
146
+ expect ( resp [ 0 ] . subjects ) . toEqual ( [
147
+ { name : 'jane' , kind : 'user' , namespace : 'myproject' } ,
148
+ { name : 'jack' , kind : 'user' , namespace : 'yourproject' } ,
149
+ { name : 'jack' , kind : 'user' , namespace : 'hisproject' }
150
+ ] ) ;
151
+ } ) ;
152
+ // resolve $q.all() via digest loop
153
+ $rootScope . $digest ( ) ;
154
+
155
+ } ) ;
156
+
105
157
it ( 'should delete the rolebinding if the removed subject was the only subject' , function ( ) {
106
158
var bindings = [ {
107
159
roleRef : { name : 'admin' } ,
108
160
subjects : [ { name : 'jane' , kind : 'user' } ]
109
161
} ] ;
110
162
RoleBindingsService
111
- . removeSubject ( 'jane' , 'admin' , bindings )
163
+ . removeSubject ( 'jane' , 'admin' , null , bindings )
112
164
. then ( function ( resp ) {
113
165
expect ( resp [ 0 ] ) . toBe ( undefined ) ;
114
166
} ) ;
@@ -130,7 +182,7 @@ describe('RoleBindingsService', function() {
130
182
subjects : [ { name : 'jane' , kind : 'user' } , { name : 'jack' , kind : 'user' } ]
131
183
} ] ;
132
184
RoleBindingsService
133
- . removeSubject ( 'jane' , 'admin' , bindings )
185
+ . removeSubject ( 'jane' , 'admin' , null , bindings )
134
186
. then ( function ( resp ) {
135
187
_ . each ( resp , function ( roleBinding ) {
136
188
expect ( roleBinding . subjects ) . toEqual ( [ { name : 'jack' , kind : 'user' } ] ) ;
@@ -154,7 +206,7 @@ describe('RoleBindingsService', function() {
154
206
subjects : [ { name : 'jane' , kind : 'user' } ]
155
207
} ] ;
156
208
RoleBindingsService
157
- . removeSubject ( 'jane' , 'admin' , bindings )
209
+ . removeSubject ( 'jane' , 'admin' , null , bindings )
158
210
. then ( function ( resp ) {
159
211
expect ( resp [ 0 ] ) . toBe ( undefined ) ;
160
212
expect ( resp [ 1 ] . subjects ) . toEqual ( [ { name : 'jack' , kind : 'user' } ] ) ;
0 commit comments