~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/check-newsbugs.py

  • Committer: Jelmer Vernooij
  • Date: 2010-12-20 11:57:14 UTC
  • mto: This revision was merged to the branch mainline in revision 5577.
  • Revision ID: jelmer@samba.org-20101220115714-2ru3hfappjweeg7q
Don't use no-plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
import getopt, re, sys
6
6
try:
7
7
    from launchpadlib.launchpad import Launchpad
 
8
    from lazr.restfulclient import errors
8
9
except ImportError:
9
10
    print "Please install launchpadlib from lp:launchpadlib"
10
11
    sys.exit(1)
 
12
try:
 
13
    import hydrazine
 
14
except ImportError:
 
15
    print "Please install hydrazine from lp:hydrazine"
 
16
    sys.exit(1)
 
17
 
11
18
 
12
19
options, args = getopt.gnu_getopt(sys.argv, "l", ["launchpad"])
13
20
options = dict(options)
21
28
 
22
29
 
23
30
def report_notmarked(bug, task, section):
24
 
    print 
 
31
    print
25
32
    print "Bug %d was mentioned in NEWS but is not marked fix released:" % (bug.id, )
26
33
    print "Launchpad title: %s" % bug.title
27
34
    print "NEWS summary: "
61
68
        f.close()
62
69
 
63
70
 
64
 
lp = Launchpad.login_anonymously('bzr-check-newsbugs', 'edge', version='1.0')
 
71
def print_bug_url(bugno):
 
72
    print '<URL:http://pad.lv/%s>' % (bugno,)
65
73
 
 
74
launchpad = hydrazine.create_session()
66
75
bugnos = read_news_bugnos(args[1])
67
76
for bugno, section in bugnos:
68
 
    bug = lp.bugs[bugno]
 
77
    try:
 
78
        bug = launchpad.bugs[bugno]
 
79
    except errors.HTTPError, e:
 
80
        if e.response.status == 401:
 
81
            print_bug_url(bugno)
 
82
            # Private, we can't access the bug content
 
83
            print '%s is private and cannot be accessed' % (bugno,)
 
84
            continue
 
85
        raise
 
86
 
69
87
    found_bzr = False
 
88
    fix_released = False
70
89
    for task in bug.bug_tasks:
71
 
        if task.bug_target_name == "bzr":
 
90
        parts = task.bug_target_name.split('/')
 
91
        if len(parts) == 1:
 
92
            project = parts[0]
 
93
            distribution = None
 
94
        else:
 
95
            project = parts[0]
 
96
            distribution = parts[1]
 
97
        if project == "bzr":
72
98
            found_bzr = True
73
 
            if task.status != "Fix Released":
74
 
                report_notmarked(bug, task, section)
 
99
            if not fix_released and task.status == "Fix Released":
 
100
                # We could check that the NEWS section and task_status are in
 
101
                # sync, but that would be overkill. (case at hand: bug #416732)
 
102
                fix_released = True
 
103
 
75
104
    if not found_bzr:
 
105
        print_bug_url(bugno)
76
106
        print "Bug %d was mentioned in NEWS but is not marked as affecting bzr" % bugno
 
107
    elif not fix_released:
 
108
        print_bug_url(bugno)
 
109
        report_notmarked(bug, task, section)