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
|
= Private Team Creation =
Private teams may only be created by commercial admins
(launchpad.Commercial permission). This permission is controlled in
the UI by only displaying the 'visibility' control to commercial
admins.
Unprivileged users do not see the visibility widget.
>>> from lp.registry.interfaces.person import (
... IPersonSet,
... PersonVisibility,
... )
>>> personset = getUtility(IPersonSet)
>>> nopriv = personset.getByEmail('no-priv@canonical.com')
>>> login('no-priv@canonical.com')
>>> view = create_initialized_view(
... personset, '+newteam',
... form={}, principal=nopriv)
>>> 'visibility' in [field.__name__ for field in view.form_fields]
False
Members of the commercial team who are not admins do see the
visibility widget.
>>> login('commercial-member@canonical.com')
>>> commercial_member = (
... personset.getByEmail('commercial-member@canonical.com'))
>>> view = create_initialized_view(
... personset, '+newteam',
... form={}, principal=commercial_member)
>>> 'visibility' in [field.__name__ for field in view.form_fields]
True
And real admins see the visibility widget too.
>>> login('foo.bar@canonical.com')
>>> foo_bar = personset.getByEmail('foo.bar@canonical.com')
>>> view = create_initialized_view(
... personset, '+newteam',
... form={}, principal=foo_bar)
>>> 'visibility' in [field.__name__ for field in view.form_fields]
True
When creating a private team, the team subscription policy must be
'Restricted.'
>>> login('foo.bar@canonical.com')
>>> foo_bar = personset.getByEmail('foo.bar@canonical.com')
>>> form = {
... 'field.name': 'super-secret',
... 'field.displayname': 'Shhhh',
... 'field.description': 'my own team description',
... 'field.defaultmembershipperiod': '365',
... 'field.defaultrenewalperiod': '365',
... 'field.subscriptionpolicy': 'OPEN',
... 'field.renewal_policy': 'NONE',
... 'field.visibility': 'PRIVATE',
... 'field.actions.create': 'Create',
... }
>>> view = create_initialized_view(
... personset, '+newteam',
... form=form, principal=foo_bar)
>>> print len(view.request.notifications)
0
>>> for error in view.errors:
... print error
Private teams must have a Restricted subscription policy.
When the inputs are correct the admin can successfully create the team.
>>> form = {
... 'field.name': 'super-secret2',
... 'field.displayname': 'Shhhh',
... 'field.description': 'my own team description',
... 'field.defaultmembershipperiod': '365',
... 'field.defaultrenewalperiod': '365',
... 'field.subscriptionpolicy': 'RESTRICTED',
... 'field.renewal_policy': 'NONE',
... 'field.visibility': 'PRIVATE',
... 'field.actions.create': 'Create',
... }
>>> view = create_initialized_view(
... personset, '+newteam',
... form=form, principal=foo_bar)
>>> print len(view.request.notifications)
0
>>> print len(view.errors)
0
Commercial admins can create a team too.
>>> login('commercial-member@canonical.com')
>>> form = {
... 'field.name': 'secret-team',
... 'field.displayname': 'Shhhh',
... 'field.description': 'my own team description',
... 'field.defaultmembershipperiod': '365',
... 'field.defaultrenewalperiod': '365',
... 'field.subscriptionpolicy': 'RESTRICTED',
... 'field.renewal_policy': 'NONE',
... 'field.visibility': 'PRIVATE',
... 'field.actions.create': 'Create',
... }
>>> view = create_initialized_view(
... personset, '+newteam',
... form=form, principal=commercial_member)
>>> print len(view.request.notifications)
0
>>> print len(view.errors)
0
>>> import transaction
>>> transaction.commit()
>>> secret_team = personset.getByName('secret-team')
>>> print secret_team.visibility.name
PRIVATE
Admins who attempt to create a new team with the name of an existing
team get the normal error message.
>>> login('foo.bar@canonical.com')
>>> form = {
... 'field.name': 'secret-team',
... 'field.displayname': 'Shhhh',
... 'field.description': 'my own team description',
... 'field.defaultmembershipperiod': '365',
... 'field.defaultrenewalperiod': '365',
... 'field.subscriptionpolicy': 'RESTRICTED',
... 'field.renewal_policy': 'NONE',
... 'field.visibility': 'PRIVATE',
... 'field.actions.create': 'Create',
... }
>>> view = create_initialized_view(
... personset, '+newteam',
... form=form, principal=foo_bar)
>>> print len(view.request.notifications)
0
>>> for error in view.errors:
... print view.getFieldError(error.field_name)
secret-team is already in use by another person or team.
Regular users who try to create a team with a name that is already
taken by a private team get the blacklist message.
>>> login('no-priv@canonical.com')
>>> form = {
... 'field.name': 'secret-team',
... 'field.displayname': 'Shhhh',
... 'field.description': 'my own team description',
... 'field.defaultmembershipperiod': '365',
... 'field.defaultrenewalperiod': '365',
... 'field.subscriptionpolicy': 'RESTRICTED',
... 'field.renewal_policy': 'NONE',
... 'field.actions.create': 'Create',
... }
>>> view = create_initialized_view(
... personset, '+newteam',
... form=form, principal=nopriv)
>>> print len(view.request.notifications)
0
>>> for error in view.errors:
... print view.getFieldError(error.field_name)
The name 'secret-team' has been blocked by the Launchpad administrators.
= Private Team Editing =
The same as when creating a new team, only commercial admins are given
the option of changing a team's visibility.
>>> launchpad = personset.getByName('launchpad')
>>> view = create_initialized_view(
... launchpad, '+edit',
... form={}, principal=nopriv)
>>> 'visibility' in [field.__name__ for field in view.form_fields]
False
>>> login('foo.bar@canonical.com')
>>> foo_bar = personset.getByEmail('foo.bar@canonical.com')
>>> view = create_initialized_view(
... launchpad, '+edit',
... form={}, principal=foo_bar)
>>> 'visibility' in [field.__name__ for field in view.form_fields]
True
And a private team must have restricted membership.
>>> login('foo.bar@canonical.com')
>>> foo_bar = personset.getByEmail('foo.bar@canonical.com')
>>> form = {
... 'field.name': 'super-secret3',
... 'field.displayname': 'Shhhh',
... 'field.description': 'my own team description',
... 'field.defaultmembershipperiod': '365',
... 'field.defaultrenewalperiod': '365',
... 'field.subscriptionpolicy': 'OPEN',
... 'field.renewal_policy': 'NONE',
... 'field.visibility': 'PRIVATE',
... 'field.actions.save': 'Save',
... }
>>> view = create_initialized_view(
... secret_team, '+edit',
... form=form, principal=foo_bar)
>>> print len(view.request.notifications)
0
>>> for error in view.errors:
... print error
Private teams must have a Restricted subscription policy.
= Visibility transitions =
A team can only change visibility if the new state will not leak any
data or put the team into an inconsistent state. The rules are:
Private -> Public: Fail
Public -> Private : OK, if the team only has the permitted artifacts
Public -> Private : Fail, if the team has a restricted artifact
Private teams cannot be made public.
>>> super_secret2 = personset.getByName('super-secret2')
>>> form = {
... 'field.name': 'super-secret-two',
... 'field.displayname': 'New Display Name',
... 'field.description': 'my own team description',
... 'field.defaultmembershipperiod': '365',
... 'field.defaultrenewalperiod': '365',
... 'field.subscriptionpolicy': 'OPEN',
... 'field.renewal_policy': 'NONE',
... 'field.visibility': 'PUBLIC',
... 'field.actions.save': 'Save',
... }
>>> view = create_initialized_view(
... super_secret2, '+edit',
... form=form, principal=foo_bar)
>>> for notification in view.request.notifications:
... print notification.message
A private team cannot change visibility.
>>> print len(view.errors)
0
All changes are aborted when a data validation error occurs. The
displayname for the team is the old value.
>>> transaction.commit()
>>> super_secret2 = personset.getByName('super-secret2')
>>> print super_secret2.name
super-secret2
>>> print super_secret2.displayname
Shhhh
Public teams can be made private if the only artifacts they have are
those permitted by private teams.
>>> def createTeamArtifacts(team, team_owner):
... # A bug subscription.
... bug = factory.makeBug()
... bug.subscribe(team, team_owner)
... bugtask = bug.default_bugtask
... bugtask.transitionToAssignee(team)
... # A branch.
... branch = factory.makeBranch(owner=team, registrant=team_owner)
... # A branch subscription.
... from lp.code.enums import (
... BranchSubscriptionDiffSize,
... BranchSubscriptionNotificationLevel,
... CodeReviewNotificationLevel)
... branch = factory.makeBranch()
... subscription = branch.subscribe(
... team,
... BranchSubscriptionNotificationLevel.DIFFSONLY,
... BranchSubscriptionDiffSize.WHOLEDIFF,
... CodeReviewNotificationLevel.STATUS, team_owner)
... # A branch visibility rule.
... from lp.code.enums import BranchVisibilityRule
... from lp.registry.interfaces.product import IProductSet
... evolution = getUtility(IProductSet).getByName('evolution')
... evolution.setBranchVisibilityTeamPolicy(
... team, BranchVisibilityRule.PRIVATE)
... # A PPA.
... from lp.soyuz.enums import ArchivePurpose
... from lp.soyuz.interfaces.archive import IArchiveSet
... from lp.registry.interfaces.distribution import (
... IDistributionSet)
... ubuntu = getUtility(IDistributionSet)['ubuntu']
... archive_set = getUtility(IArchiveSet)
... private_archive = archive_set.new(
... owner=team, purpose=ArchivePurpose.PPA,
... distribution=ubuntu, name=team.name+'-archive',
... require_virtualized=False)
... private_archive.buildd_secret = 'my secret'
... private_archive.private = True
... # A private PPA subscription.
... login('foo.bar@canonical.com')
... another_team = factory.makeTeam(
... owner=team_owner,
... visibility=PersonVisibility.PRIVATE)
... # We must login as the archive owner to add the subscription.
... login_person(team_owner)
... private_archive.newSubscription(
... subscriber=another_team,
... registrant=team_owner)
>>> login('foo.bar@canonical.com')
>>> team = factory.makeTeam(
... owner=foo_bar,
... visibility=PersonVisibility.PUBLIC)
>>> # Now let's create a bunch of allowable artifacts.
>>> createTeamArtifacts(team, foo_bar)
>>> # With all of those artifacts in place we can still transition to private.
>>> form = {
... 'field.visibility': 'PRIVATE',
... 'field.subscriptionpolicy': 'RESTRICTED',
... 'field.actions.save': 'Save',
... }
>>> view = create_initialized_view(
... team, '+edit',
... form=form, principal=foo_bar)
>>> print len(view.request.notifications)
0
>>> print len(view.errors)
0
If the team has any other artifacts then it will not be allowed to
change to Private.
>>> team = factory.makeTeam(
... owner=foo_bar,
... visibility=PersonVisibility.PUBLIC)
>>> # Now let's create a bunch of allowable artifacts.
>>> createTeamArtifacts(team, foo_bar)
>>> # Create a forbidden artifact. Private teams cannot own bug trackers.
>>> bug_tracker = factory.makeBugTracker()
>>> bug_tracker.owner = team
>>> # With the addtion of hte bug tracker artifact the team will not
>>> # be allowed to transition to Private.
>>> form = {
... 'field.visibility': 'PRIVATE',
... 'field.subscriptionpolicy': 'RESTRICTED',
... 'field.actions.save': 'Save',
... }
>>> view = create_initialized_view(
... team, '+edit',
... form=form, principal=foo_bar)
>>> print len(view.request.notifications)
0
>>> for error in view.errors:
... print error
This team cannot be converted to Private since it is referenced by a
bugtracker.
= Use of 'private-' prefix =
Commercial admins can create private projects with the 'private-' prefix.
>>> login('foo.bar@canonical.com')
>>> form = {
... 'field.name': 'private-super-secret',
... 'field.displayname': 'Shhhh',
... 'field.description': 'my own team description',
... 'field.defaultmembershipperiod': '365',
... 'field.defaultrenewalperiod': '365',
... 'field.subscriptionpolicy': 'RESTRICTED',
... 'field.renewal_policy': 'NONE',
... 'field.visibility': 'PRIVATE',
... 'field.actions.create': 'Create',
... }
>>> view = create_initialized_view(
... personset, '+newteam',
... form=form, principal=foo_bar)
>>> print len(view.request.notifications)
0
>>> print len(view.errors)
0
When trying to register a project with a 'private-' prefix, regular
users will get a blacklist message.
>>> login('no-priv@canonical.com')
>>> form = {
... 'field.name': 'private-top-secret',
... 'field.displayname': 'Shhhh',
... 'field.description': 'my own team description',
... 'field.defaultmembershipperiod': '365',
... 'field.defaultrenewalperiod': '365',
... 'field.subscriptionpolicy': 'RESTRICTED',
... 'field.renewal_policy': 'NONE',
... 'field.visibility': 'PRIVATE',
... 'field.actions.create': 'Create',
... }
>>> view = create_initialized_view(
... personset, '+newteam',
... form=form, principal=nopriv)
>>> print len(view.request.notifications)
0
>>> for error in view.errors:
... print view.getFieldError(error.field_name)
The name 'private-top-secret' has been blocked by the Launchpad
administrators.
|