~launchpad-pqm/launchpad/devel

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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
= Atom Feeds =

Atom feeds produce XML not HTML.  Therefore we must parse the output as XML
using BeautifulStoneSoup instead of BSS or the helper functions.

    >>> from BeautifulSoup import BeautifulStoneSoup as BSS
    >>> from BeautifulSoup import SoupStrainer
    >>> from canonical.launchpad.ftests.feeds_helper import (
    ...     parse_entries, parse_links, validate_feed)

Please note that when displaying the results of the feeds in a reader
the order of entries may not be the same as generated.  Some readers
will arrange the entries in a different sort order based on the update
time.


== Latest bugs for a product ==

This feed gets the latest bugs reported against a product. The feed
includes summary information about the bugs such as ID, title, author,
and a link to the bug itself. The alternate link for the feed points to
the bugs page for the product, while the alternate link for entries
point to the bugs themselves.

    >>> browser.open('http://feeds.launchpad.dev/jokosher/latest-bugs.atom')
    >>> validate_feed(browser.contents,
    ...              browser.headers['content-type'], browser.url)
    No Errors
    >>> BSS(browser.contents).title.contents
    [u'Bugs in Jokosher']
    >>> browser.url
    'http://feeds.launchpad.dev/jokosher/latest-bugs.atom'

    >>> soup = BSS(browser.contents, parseOnlyThese=SoupStrainer('id'))
    >>> print extract_text(soup.find('id'))
    tag:launchpad.net,2007-03-15:/bugs/jokosher
    >>> alternate_links = parse_links(browser.contents, 'alternate')
    >>> for link in alternate_links:
    ...     print link
    <link rel="alternate" href="http://bugs.launchpad.dev/jokosher" />
    <link rel="alternate" href="http://bugs.launchpad.dev/bugs/12" />
    <link rel="alternate" href="http://bugs.launchpad.dev/bugs/11" />

    >>> self_links = parse_links(browser.contents, 'self')
    >>> for link in self_links:
    ...     print link
    <link rel="self" href="http://feeds.launchpad.dev/jokosher/latest-bugs.atom" />

    >>> entries = parse_entries(browser.contents)
    >>> print len(entries)
    2
    >>> entry = entries[0]
    >>> print extract_text(entry.title)
    [12] Copy, Cut and Delete operations should work on selections
    >>> print extract_text(entry.author('name')[0])
    Foo Bar
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name16
    >>> print extract_text(entry.id)
    tag:launchpad.net,2007-03-15:/bugs/12

    >>> entry = entries[1]
    >>> print extract_text(entry.title)
    [11] Make Jokosher use autoaudiosink
    >>> print extract_text(entry.author('name')[0])
    Foo Bar
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name16
    >>> print extract_text(entry.id)
    tag:launchpad.net,2007-03-15:/bugs/11

The Atom feed must have the content-type of "application/atom+xml".

    >>> browser.headers['content-type']
    'application/atom+xml;charset=utf-8'

== Latest bugs for a project ==

This feed gets the latest bugs for a project, and has the same type of content
as the latest bugs feed for a product.

    >>> browser.open('http://feeds.launchpad.dev/mozilla/latest-bugs.atom')
    >>> validate_feed(browser.contents,
    ...              browser.headers['content-type'], browser.url)
    No Errors
    >>> BSS(browser.contents).title.contents
    [u'Bugs in The Mozilla Project']
    >>> browser.url
    'http://feeds.launchpad.dev/mozilla/latest-bugs.atom'

    >>> soup = BSS(browser.contents, parseOnlyThese=SoupStrainer('id'))
    >>> print extract_text(soup.find('id'))
    tag:launchpad.net,2004-09-24:/bugs/mozilla

    >>> self_links = parse_links(browser.contents, 'self')
    >>> for link in self_links:
    ...     print link
    <link rel="self" href="http://feeds.launchpad.dev/mozilla/latest-bugs.atom" />

    >>> entries = parse_entries(browser.contents)
    >>> print len(entries)
    5

    >>> entry = entries[0]
    >>> print extract_text(entry.title)
    [15] Nonsensical bugs are useless
    >>> print extract_text(entry.author('name')[0])
    Foo Bar
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name16

    >>> entry = entries[1]
    >>> print extract_text(entry.title)
    [9] Thunderbird crashes
    >>> print extract_text(entry.author('name')[0])
    Foo Bar
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name16

    >>> entry = entries[2]
    >>> print extract_text(entry.title)
    [5] Firefox install instructions should be complete
    >>> print extract_text(entry.author('name')[0])
    Sample Person
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name12

Ensure the entries are in reverse chronological order by published date.

    >>> def check_entries_order(entries):
    ...     dates = [extract_text(entry.published)
    ...              for entry in entries]
    ...     return dates == sorted(dates, reverse=True)

    >>> assert check_entries_order(entries), (
    ...     "Published dates are not sorted.")

== Latest bugs for a distro ==

This feed gets the latest bugs for a distribution, and has the same type
of content as the latest bugs feed for a product.

    >>> browser.open('http://feeds.launchpad.dev/ubuntu/latest-bugs.atom')
    >>> validate_feed(browser.contents,
    ...              browser.headers['content-type'], browser.url)
    No Errors
    >>> BSS(browser.contents).title.contents
    [u'Bugs in Ubuntu']
    >>> browser.url
    'http://feeds.launchpad.dev/ubuntu/latest-bugs.atom'

    >>> soup = BSS(browser.contents, parseOnlyThese=SoupStrainer('id'))
    >>> print extract_text(soup.find('id'))
    tag:launchpad.net,2006-10-16:/bugs/ubuntu

    >>> self_links = parse_links(browser.contents, 'self')
    >>> for link in self_links:
    ...     print link
    <link rel="self" href="http://feeds.launchpad.dev/ubuntu/latest-bugs.atom" />

    >>> entries = parse_entries(browser.contents)
    >>> print len(entries)
    4

    >>> entry = entries[1]
    >>> print extract_text(entry.title)
    [9] Thunderbird crashes
    >>> print extract_text(entry.author('name')[0])
    Foo Bar
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name16

    >>> assert check_entries_order(entries), (
    ...     "Published dates are not sorted.")


== Latest bugs for a source package ==

This feed gets the latest bugs for a source package, and has the same
type of content as the latest bugs feed for a product.

    >>> browser.open(
    ...     'http://feeds.launchpad.dev/ubuntu/+source/thunderbird'
    ...     '/latest-bugs.atom')
    >>> validate_feed(browser.contents,
    ...              browser.headers['content-type'], browser.url)
    No Errors
    >>> BSS(browser.contents).title.contents
    [u'Bugs in thunderbird in Ubuntu']
    >>> browser.url
    'http://feeds.launchpad.dev/ubuntu/+source/thunderbird/latest-bugs.atom'
    >>> soup = BSS(browser.contents, parseOnlyThese=SoupStrainer('id'))
    >>> print extract_text(soup.find('id'))
    tag:launchpad.net,2008:/bugs/ubuntu/+source/thunderbird
    >>> entries = parse_entries(browser.contents)
    >>> print len(entries)
    1
    >>> entry = entries[0]
    >>> print extract_text(entry.title)
    [9] Thunderbird crashes
    >>> print extract_text(entry.author('name')[0])
    Foo Bar
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name16

    >>> assert check_entries_order(entries), (
    ...     "Published dates are not sorted.")


== Latest bugs for a distroseries ==

This feed gets the latest bugs for a distribution series, and has the same
type of content as the latest bugs feed for a product.

    >>> browser.open(
    ...     'http://feeds.launchpad.dev/ubuntu/hoary/latest-bugs.atom')
    >>> validate_feed(browser.contents,
    ...              browser.headers['content-type'], browser.url)
    No Errors
    >>> BSS(browser.contents).title.contents
    [u'Bugs in Hoary']
    >>> browser.url
    'http://feeds.launchpad.dev/ubuntu/hoary/latest-bugs.atom'

    >>> soup = BSS(browser.contents, parseOnlyThese=SoupStrainer('id'))
    >>> print extract_text(soup.find('id'))
    tag:launchpad.net,2006-10-16:/bugs/ubuntu/hoary

    >>> self_links = parse_links(browser.contents, 'self')
    >>> for link in self_links:
    ...     print link
    <link rel="self" href="http://feeds.launchpad.dev/ubuntu/hoary/latest-bugs.atom" />

    >>> entries = parse_entries(browser.contents)
    >>> print len(entries)
    1

    >>> entry = entries[0]
    >>> print extract_text(entry.title)
    [2] Blackhole Trash folder
    >>> print extract_text(entry.author('name')[0])
    Sample Person
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name12

    >>> assert check_entries_order(entries), (
    ...     "Published dates are not sorted.")


== Latest bugs for a product series ==

This feed gets the latest bugs for a product series, and has the same
type of content as the latest bugs feed for a product.

    >>> browser.open(
    ...     'http://feeds.launchpad.dev/firefox/1.0/latest-bugs.atom')
    >>> validate_feed(browser.contents,
    ...              browser.headers['content-type'], browser.url)
    No Errors
    >>> BSS(browser.contents).title.contents
    [u'Bugs in 1.0']
    >>> browser.url
    'http://feeds.launchpad.dev/firefox/1.0/latest-bugs.atom'

    >>> soup = BSS(browser.contents, parseOnlyThese=SoupStrainer('id'))
    >>> print extract_text(soup.find('id'))
    tag:launchpad.net,2005-06-06:/bugs/firefox/1.0

    >>> self_links = parse_links(browser.contents, 'self')
    >>> for link in self_links:
    ...     print link
    <link rel="self" href="http://feeds.launchpad.dev/firefox/1.0/latest-bugs.atom" />

    >>> entries = parse_entries(browser.contents)
    >>> print len(entries)
    1

    >>> entry = entries[0]
    >>> print extract_text(entry.title)
    [5] Firefox install instructions should be complete
    >>> print extract_text(entry.author('name')[0])
    Sample Person
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name12

    >>> assert check_entries_order(entries), (
    ...     "Published dates are not sorted.")


== Latest bugs for a person ==

This feed gets the latest bugs for a person.

    >>> browser.open('http://feeds.launchpad.dev/~name16/latest-bugs.atom')
    >>> validate_feed(browser.contents,
    ...              browser.headers['content-type'], browser.url)
    No Errors
    >>> BSS(browser.contents).title.contents
    [u'Bugs for Foo Bar']
    >>> browser.url
    'http://feeds.launchpad.dev/~name16/latest-bugs.atom'

    >>> soup = BSS(browser.contents, parseOnlyThese=SoupStrainer('id'))
    >>> print extract_text(soup.find('id'))
    tag:launchpad.net,2005-06-06:/bugs/~name16

    >>> self_links = parse_links(browser.contents, 'self')
    >>> for link in self_links:
    ...     print link
    <link rel="self" href="http://feeds.launchpad.dev/~name16/latest-bugs.atom" />

    >>> entries = parse_entries(browser.contents)
    >>> print len(entries)
    7

    >>> entry = entries[0]
    >>> print extract_text(entry.title)
    [15] Nonsensical bugs are useless
    >>> print extract_text(entry.author('name')[0])
    Foo Bar
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name16

    >>> entry = entries[1]
    >>> print extract_text(entry.title)
    [12] Copy, Cut and Delete operations should work on selections
    >>> print extract_text(entry.author('name')[0])
    Foo Bar
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name16

    >>> assert check_entries_order(entries), (
    ...     "Published dates are not sorted.")


== Latest bugs for a team ==

This feed gets the latest bugs for a whole team.
First, make a team responsible for some bugs.

    >>> from zope.component import getUtility
    >>> from lp.registry.interfaces.person import IPersonSet
    >>> one_mem_browser = setupBrowser(
    ...    auth='Basic one-membership@test.com:test')
    >>> personset = getUtility(IPersonSet)

Subscribe simple-team to a number of bugs.

    >>> one_mem_browser.open('http://launchpad.dev/bugs/1')
    >>> one_mem_browser.getLink('Subscribe someone else').click()
    >>> one_mem_browser.getControl('Person').value = 'simple-team'
    >>> one_mem_browser.getControl('Subscribe user').click()

    >>> one_mem_browser.open('http://launchpad.dev/bugs/2')
    >>> one_mem_browser.getLink('Subscribe someone else').click()
    >>> one_mem_browser.getControl('Person').value = 'simple-team'
    >>> one_mem_browser.getControl('Subscribe user').click()

    >>> one_mem_browser.open('http://launchpad.dev/bugs/3')
    >>> one_mem_browser.getLink('Subscribe someone else').click()
    >>> one_mem_browser.getControl('Person').value = 'simple-team'
    >>> one_mem_browser.getControl('Subscribe user').click()


Now we can do a query on the lastest bugs for simple team and expect
some results.

    >>> browser.open(
    ...    'http://feeds.launchpad.dev/~simple-team/latest-bugs.atom')
    >>> validate_feed(browser.contents,
    ...              browser.headers['content-type'], browser.url)
    No Errors
    >>> BSS(browser.contents).title.contents
    [u'Bugs for Simple Team']

    >>> soup = BSS(browser.contents, parseOnlyThese=SoupStrainer('id'))
    >>> print extract_text(soup.find('id'))
    tag:launchpad.net,2007-02-21:/bugs/~simple-team

    >>> self_links = parse_links(browser.contents, 'self')
    >>> for link in self_links:
    ...     print link
    <link rel="self" href="http://feeds.launchpad.dev/~simple-team/latest-bugs.atom" />

    >>> entries = parse_entries(browser.contents)
    >>> print len(entries)
    3

    >>> assert check_entries_order(entries), (
    ...     "Published dates are not sorted.")


== General bug search ==

This feed is the most useful of them all. Any bug search can be turned into
a feed.

    >>> import cgi
    >>> url = ("http://feeds.launchpad.dev/bugs/+bugs.atom?"
    ...        "field.searchtext=&search=Search+Bug+Reports&"
    ...        "field.scope=all&field.scope.target=")

The bug search feed is not enabled by default since it may represent a
performance problem in production.

    >>> from zope.security.interfaces import Unauthorized
    >>> from canonical.config import config
    >>> config.launchpad.is_bug_search_feed_active
    True
    >>> bug_search_feed_data = """
    ...     [launchpad]
    ...     is_bug_search_feed_active: False
    ...     """
    >>> config.push('bug_search_feed_data', bug_search_feed_data)
    >>> browser.open(url)
    Traceback (most recent call last):
    ...
    Unauthorized: Bug search feed deactivated

    # Restore the config.
    >>> config_data = config.pop('bug_search_feed_data')

The bug search feed can be tested after setting is_bug_search_feed_active
to True.

    >>> browser.open(url)
    >>> BSS(browser.contents).title.contents
    [u'Bugs from custom search']

    >>> soup = BSS(browser.contents, parseOnlyThese=SoupStrainer('id'))
    >>> feed_id = extract_text(soup.find('id'))
    >>> print feed_id
    tag:launchpad.net,2008:/+bugs.atom?field.scope.target=&amp;field.scope=all&amp;field.searchtext=&amp;search=Search+Bug+Reports

    >>> print cgi.escape(browser.url)
    http://feeds.launchpad.dev/bugs/+bugs.atom?field.scope.target=&amp;field.scope=all&amp;field.searchtext=&amp;search=Search+Bug+Reports

    >>> self_links = parse_links(browser.contents, 'self')
    >>> for link in self_links:
    ...     print link
    <link rel="self" href="http://feeds.launchpad.dev/bugs/+bugs.atom?field.scope.target=&amp;field.scope=all&amp;field.searchtext=&amp;search=Search+Bug+Reports" />

    >>> entries = parse_entries(browser.contents)
    >>> print len(entries)
    12

    >>> entry = entries[0]
    >>> print extract_text(entry.title)
    [15] Nonsensical bugs are useless
    >>> print extract_text(entry.author('name')[0])
    Foo Bar
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name16

    >>> entry = entries[1]
    >>> print extract_text(entry.title)
    [13] Launchpad CSS and JS is not testible
    >>> print extract_text(entry.author('name')[0])
    Sample Person
    >>> print extract_text(entry.author('uri')[0])
    http://bugs.launchpad.dev/~name12


== Results for a single bug ==

This feed shows the status of a single bug.

    >>> browser.open('http://feeds.launchpad.dev/bugs/1/bug.atom')
    >>> validate_feed(browser.contents,
    ...              browser.headers['content-type'], browser.url)
    No Errors
    >>> BSS(browser.contents).title.contents
    [u'Bug 1']
    >>> entries = parse_entries(browser.contents)
    >>> print len(entries)
    1
    >>> entry = entries[0]
    >>> print extract_text(entry.title)
    [1] Firefox does not support SVG
    >>> self_links = parse_links(browser.contents, 'self')
    >>> for link in self_links:
    ...     print link
    <link rel="self" href="http://feeds.launchpad.dev/bugs/1/bug.atom" />

== Feeds Configuration Options ==

The max_bug_feed_cache_minutes configuration is provided to allow
overriding the Expires and Cache-Control headers so that the feeds
will be cached longer by browsers and the reverse-proxy in front
of the feeds servers.

    >>> import time
    >>> old_time = time.time
    >>> time.time = lambda: 17
    >>> browser.open('http://feeds.launchpad.dev/bugs/1/bug.atom')
    >>> config.launchpad.max_bug_feed_cache_minutes
    30
    >>> browser.headers['Expires']
    'Thu, 01 Jan 1970 00:30:17 GMT'
    >>> browser.headers['Cache-Control']
    'max-age=1800'
    >>> time.time = old_time