forked from googleapis/google-cloud-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_acl.py
More file actions
440 lines (374 loc) · 13.8 KB
/
Copy pathtest_acl.py
File metadata and controls
440 lines (374 loc) · 13.8 KB
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
import unittest2
class Test_ACL_Entity(unittest2.TestCase):
def _getTargetClass(self):
from gcloud.storage.acl import ACL
return ACL.Entity
def _makeOne(self, *args, **kw):
return self._getTargetClass()(*args, **kw)
def test_ctor_default_identifier(self):
TYPE = 'type'
entity = self._makeOne(TYPE)
self.assertEqual(entity.type, TYPE)
self.assertEqual(entity.identifier, None)
self.assertEqual(entity.get_roles(), set())
def test_ctor_explicit_identifier(self):
TYPE = 'type'
ID = 'id'
entity = self._makeOne(TYPE, ID)
self.assertEqual(entity.type, TYPE)
self.assertEqual(entity.identifier, ID)
self.assertEqual(entity.get_roles(), set())
def test___str__no_identifier(self):
TYPE = 'type'
entity = self._makeOne(TYPE)
self.assertEqual(str(entity), TYPE)
def test___str__w_identifier(self):
TYPE = 'type'
ID = 'id'
entity = self._makeOne(TYPE, ID)
self.assertEqual(str(entity), '%s-%s' % (TYPE, ID))
def test_grant_simple(self):
TYPE = 'type'
ROLE = 'role'
entity = self._makeOne(TYPE)
found = entity.grant(ROLE)
self.assertTrue(found is entity)
self.assertEqual(entity.get_roles(), set([ROLE]))
def test_grant_duplicate(self):
TYPE = 'type'
ROLE1 = 'role1'
ROLE2 = 'role2'
entity = self._makeOne(TYPE)
entity.grant(ROLE1)
entity.grant(ROLE2)
entity.grant(ROLE1)
self.assertEqual(entity.get_roles(), set([ROLE1, ROLE2]))
def test_revoke_miss(self):
TYPE = 'type'
ROLE = 'nonesuch'
entity = self._makeOne(TYPE)
found = entity.revoke(ROLE)
self.assertTrue(found is entity)
self.assertEqual(entity.get_roles(), set())
def test_revoke_hit(self):
TYPE = 'type'
ROLE1 = 'role1'
ROLE2 = 'role2'
entity = self._makeOne(TYPE)
entity.grant(ROLE1)
entity.grant(ROLE2)
entity.revoke(ROLE1)
self.assertEqual(entity.get_roles(), set([ROLE2]))
def test_grant_read(self):
from gcloud.storage.acl import ACL
TYPE = 'type'
entity = self._makeOne(TYPE)
entity.grant_read()
self.assertEqual(entity.get_roles(), set([ACL.Role.Reader]))
def test_grant_write(self):
from gcloud.storage.acl import ACL
TYPE = 'type'
entity = self._makeOne(TYPE)
entity.grant_write()
self.assertEqual(entity.get_roles(), set([ACL.Role.Writer]))
def test_grant_owner(self):
from gcloud.storage.acl import ACL
TYPE = 'type'
entity = self._makeOne(TYPE)
entity.grant_owner()
self.assertEqual(entity.get_roles(), set([ACL.Role.Owner]))
def test_revoke_read(self):
from gcloud.storage.acl import ACL
TYPE = 'type'
entity = self._makeOne(TYPE)
entity.grant(ACL.Role.Reader)
entity.revoke_read()
self.assertEqual(entity.get_roles(), set())
def test_revoke_write(self):
from gcloud.storage.acl import ACL
TYPE = 'type'
entity = self._makeOne(TYPE)
entity.grant(ACL.Role.Writer)
entity.revoke_write()
self.assertEqual(entity.get_roles(), set())
def test_revoke_owner(self):
from gcloud.storage.acl import ACL
TYPE = 'type'
entity = self._makeOne(TYPE)
entity.grant(ACL.Role.Owner)
entity.revoke_owner()
self.assertEqual(entity.get_roles(), set())
class Test_ACL(unittest2.TestCase):
def _getTargetClass(self):
from gcloud.storage.acl import ACL
return ACL
def _makeOne(self, *args, **kw):
return self._getTargetClass()(*args, **kw)
def test_ctor(self):
acl = self._makeOne()
self.assertEqual(acl.entities, {})
self.assertEqual(list(acl.get_entities()), [])
def test___iter___empty(self):
acl = self._makeOne()
self.assertEqual(list(acl), [])
def test___iter___non_empty_no_roles(self):
TYPE = 'type'
ID = 'id'
acl = self._makeOne()
acl.entity(TYPE, ID)
self.assertEqual(list(acl), [])
def test___iter___non_empty_w_roles(self):
TYPE = 'type'
ID = 'id'
ROLE = 'role'
acl = self._makeOne()
entity = acl.entity(TYPE, ID)
entity.grant(ROLE)
self.assertEqual(list(acl),
[{'entity': '%s-%s' % (TYPE, ID), 'role': ROLE}])
def test_entity_from_dict_allUsers(self):
ROLE = 'role'
acl = self._makeOne()
entity = acl.entity_from_dict({'entity': 'allUsers', 'role': ROLE})
self.assertEqual(entity.type, 'allUsers')
self.assertEqual(entity.identifier, None)
self.assertEqual(entity.get_roles(), set([ROLE]))
self.assertEqual(list(acl),
[{'entity': 'allUsers', 'role': ROLE}])
self.assertEqual(list(acl.get_entities()), [entity])
def test_entity_from_dict_allAuthenticatedUsers(self):
ROLE = 'role'
acl = self._makeOne()
entity = acl.entity_from_dict({'entity': 'allAuthenticatedUsers',
'role': ROLE})
self.assertEqual(entity.type, 'allAuthenticatedUsers')
self.assertEqual(entity.identifier, None)
self.assertEqual(entity.get_roles(), set([ROLE]))
self.assertEqual(list(acl),
[{'entity': 'allAuthenticatedUsers', 'role': ROLE}])
self.assertEqual(list(acl.get_entities()), [entity])
def test_entity_from_dict_string_w_hyphen(self):
ROLE = 'role'
acl = self._makeOne()
entity = acl.entity_from_dict({'entity': 'type-id', 'role': ROLE})
self.assertEqual(entity.type, 'type')
self.assertEqual(entity.identifier, 'id')
self.assertEqual(entity.get_roles(), set([ROLE]))
self.assertEqual(list(acl),
[{'entity': 'type-id', 'role': ROLE}])
self.assertEqual(list(acl.get_entities()), [entity])
def test_entity_from_dict_string_wo_hyphen(self):
ROLE = 'role'
acl = self._makeOne()
self.assertRaises(ValueError,
acl.entity_from_dict,
{'entity': 'bogus', 'role': ROLE})
self.assertEqual(list(acl.get_entities()), [])
def test_has_entity_miss_str(self):
acl = self._makeOne()
self.assertFalse(acl.has_entity('nonesuch'))
def test_has_entity_miss_entity(self):
from gcloud.storage.acl import ACL
TYPE = 'type'
ID = 'id'
entity = ACL.Entity(TYPE, ID)
acl = self._makeOne()
self.assertFalse(acl.has_entity(entity))
def test_has_entity_hit_str(self):
TYPE = 'type'
ID = 'id'
acl = self._makeOne()
acl.entity(TYPE, ID)
self.assertTrue(acl.has_entity('%s-%s' % (TYPE, ID)))
def test_has_entity_hit_entity(self):
TYPE = 'type'
ID = 'id'
acl = self._makeOne()
entity = acl.entity(TYPE, ID)
self.assertTrue(acl.has_entity(entity))
def test_get_entity_miss_str_no_default(self):
acl = self._makeOne()
self.assertEqual(acl.get_entity('nonesuch'), None)
def test_get_entity_miss_entity_no_default(self):
from gcloud.storage.acl import ACL
TYPE = 'type'
ID = 'id'
entity = ACL.Entity(TYPE, ID)
acl = self._makeOne()
self.assertEqual(acl.get_entity(entity), None)
def test_get_entity_miss_str_w_default(self):
DEFAULT = object()
acl = self._makeOne()
self.assertTrue(acl.get_entity('nonesuch', DEFAULT) is DEFAULT)
def test_get_entity_miss_entity_w_default(self):
from gcloud.storage.acl import ACL
DEFAULT = object()
TYPE = 'type'
ID = 'id'
entity = ACL.Entity(TYPE, ID)
acl = self._makeOne()
self.assertTrue(acl.get_entity(entity, DEFAULT) is DEFAULT)
def test_get_entity_hit_str(self):
TYPE = 'type'
ID = 'id'
acl = self._makeOne()
acl.entity(TYPE, ID)
self.assertTrue(acl.has_entity('%s-%s' % (TYPE, ID)))
def test_get_entity_hit_entity(self):
TYPE = 'type'
ID = 'id'
acl = self._makeOne()
entity = acl.entity(TYPE, ID)
self.assertTrue(acl.has_entity(entity))
def test_add_entity_miss(self):
from gcloud.storage.acl import ACL
TYPE = 'type'
ID = 'id'
ROLE = 'role'
entity = ACL.Entity(TYPE, ID)
entity.grant(ROLE)
acl = self._makeOne()
acl.add_entity(entity)
self.assertEqual(list(acl),
[{'entity': 'type-id', 'role': ROLE}])
self.assertEqual(list(acl.get_entities()), [entity])
def test_add_entity_hit(self):
from gcloud.storage.acl import ACL
TYPE = 'type'
ID = 'id'
KEY = '%s-%s' % (TYPE, ID)
ROLE = 'role'
entity = ACL.Entity(TYPE, ID)
entity.grant(ROLE)
acl = self._makeOne()
before = acl.entity(TYPE, ID)
acl.add_entity(entity)
self.assertFalse(acl.get_entity(KEY) is before)
self.assertTrue(acl.get_entity(KEY) is entity)
self.assertEqual(list(acl),
[{'entity': 'type-id', 'role': ROLE}])
self.assertEqual(list(acl.get_entities()), [entity])
def test_entity_miss(self):
TYPE = 'type'
ID = 'id'
ROLE = 'role'
acl = self._makeOne()
entity = acl.entity(TYPE, ID)
entity.grant(ROLE)
self.assertEqual(list(acl),
[{'entity': 'type-id', 'role': ROLE}])
self.assertEqual(list(acl.get_entities()), [entity])
def test_entity_hit(self):
TYPE = 'type'
ID = 'id'
ROLE = 'role'
acl = self._makeOne()
before = acl.entity(TYPE, ID)
before.grant(ROLE)
entity = acl.entity(TYPE, ID)
self.assertTrue(entity is before)
self.assertEqual(list(acl),
[{'entity': 'type-id', 'role': ROLE}])
self.assertEqual(list(acl.get_entities()), [entity])
def test_user(self):
ID = 'id'
ROLE = 'role'
acl = self._makeOne()
entity = acl.user(ID)
entity.grant(ROLE)
self.assertEqual(entity.type, 'user')
self.assertEqual(entity.identifier, ID)
self.assertEqual(list(acl),
[{'entity': 'user-%s' % ID, 'role': ROLE}])
def test_group(self):
ID = 'id'
ROLE = 'role'
acl = self._makeOne()
entity = acl.group(ID)
entity.grant(ROLE)
self.assertEqual(entity.type, 'group')
self.assertEqual(entity.identifier, ID)
self.assertEqual(list(acl),
[{'entity': 'group-%s' % ID, 'role': ROLE}])
def test_domain(self):
ID = 'id'
ROLE = 'role'
acl = self._makeOne()
entity = acl.domain(ID)
entity.grant(ROLE)
self.assertEqual(entity.type, 'domain')
self.assertEqual(entity.identifier, ID)
self.assertEqual(list(acl),
[{'entity': 'domain-%s' % ID, 'role': ROLE}])
def test_all(self):
ROLE = 'role'
acl = self._makeOne()
entity = acl.all()
entity.grant(ROLE)
self.assertEqual(entity.type, 'allUsers')
self.assertEqual(entity.identifier, None)
self.assertEqual(list(acl),
[{'entity': 'allUsers', 'role': ROLE}])
def test_all_authenticated(self):
ROLE = 'role'
acl = self._makeOne()
entity = acl.all_authenticated()
entity.grant(ROLE)
self.assertEqual(entity.type, 'allAuthenticatedUsers')
self.assertEqual(entity.identifier, None)
self.assertEqual(list(acl),
[{'entity': 'allAuthenticatedUsers', 'role': ROLE}])
class Test_BucketACL(unittest2.TestCase):
def _getTargetClass(self):
from gcloud.storage.acl import BucketACL
return BucketACL
def _makeOne(self, *args, **kw):
return self._getTargetClass()(*args, **kw)
def test_ctor(self):
bucket = object()
acl = self._makeOne(bucket)
self.assertEqual(acl.entities, {})
self.assertEqual(list(acl.get_entities()), [])
self.assertTrue(acl.bucket is bucket)
def test_save(self):
class _Bucket(object):
def save_acl(self, acl):
self._saved = acl
bucket = _Bucket()
acl = self._makeOne(bucket)
acl.save()
self.assertTrue(bucket._saved is acl)
class Test_DefaultObjectACL(unittest2.TestCase):
def _getTargetClass(self):
from gcloud.storage.acl import DefaultObjectACL
return DefaultObjectACL
def _makeOne(self, *args, **kw):
return self._getTargetClass()(*args, **kw)
def test_save(self):
class _Bucket(object):
def save_default_object_acl(self, acl):
self._saved = acl
bucket = _Bucket()
acl = self._makeOne(bucket)
acl.save()
self.assertTrue(bucket._saved is acl)
class Test_ObjectACL(unittest2.TestCase):
def _getTargetClass(self):
from gcloud.storage.acl import ObjectACL
return ObjectACL
def _makeOne(self, *args, **kw):
return self._getTargetClass()(*args, **kw)
def test_ctor(self):
key = object()
acl = self._makeOne(key)
self.assertEqual(acl.entities, {})
self.assertEqual(list(acl.get_entities()), [])
self.assertTrue(acl.key is key)
def test_save(self):
class _Key(object):
def save_acl(self, acl):
self._saved = acl
key = _Key()
acl = self._makeOne(key)
acl.save()
self.assertTrue(key._saved is acl)