summaryrefslogtreecommitdiff
path: root/qa/createWeeklyReport.py
blob: b446f08df11055a486850b0229f9d5113c5cc144 (plain)
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
#!/usr/bin/env python3
#
# This file is part of the LibreOffice project.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
#

import common
import datetime

reportPeriodDays = 7

def util_create_statList_weeklyReport():
    return {
        'created': {'id': [], 'author': []},
        'still_unconfirmed': [],
        'unconfirmed': [],
        'newUsers': {},
        'comments_count': {},
        'status_changed': {},
        'keyword_added': {k: {'id':[], 'author': []} for k in common.keywords_list},
        'keyword_removed': {k: {'id':[], 'author': []} for k in common.keywords_list},
        'whiteboard_added': {},
        'whiteboard_removed': {},
        'severity_changed': {s: {'id':[], 'author': []} for s in common.severities_list},
        'priority_changed': {p: {'id':[], 'author': []} for p in common.priorities_list},
        'system_changed': {p: {'id':[], 'author': []} for p in common.system_list},
        'metabug_added': {},
        'metabug_removed': {},
        'people': {},
        'metabugAlias': {},
        'stat': {'oldest': datetime.datetime.now(), 'newest': datetime.datetime(2001, 1, 1)}
    }

def analyze_bugzilla_weeklyReport(statList, bugzillaData, cfg):
    print("Analyzing Bugzilla\n", end="", flush=True)
    statNewDate = statList['stat']['newest']
    statOldDate = statList['stat']['oldest']

    for key, row in bugzillaData['bugs'].items():
        rowId = row['id']

        #Ignore META bugs and deletionrequest bugs.
        if not row['summary'].lower().startswith('[meta]') and row['component'].lower() != 'deletionrequest':
            creationDate = datetime.datetime.strptime(row['creation_time'], "%Y-%m-%dT%H:%M:%SZ")
            if creationDate < statOldDate:
                statOldDate = creationDate
            if creationDate > statNewDate:
                statNewDate = creationDate

            rowStatus = row['status']

            if rowStatus == 'UNCONFIRMED':
                statList['unconfirmed'].append(rowId)

            creatorMail = row['creator']

            common.util_check_bugzilla_mail(statList, creatorMail, row['creator_detail']['real_name'], creationDate, rowId)

            if creationDate >= cfg['reportPeriod']:
                statList['created']['id'].append(rowId)
                statList['created']['author'].append(creatorMail)
                if rowStatus == 'UNCONFIRMED':
                    statList['still_unconfirmed'].append(rowId)

            rowKeywords = row['keywords']

            crashSignature = row['cf_crashreport']

            for action in row['history']:
                actionMail = action['who']
                actionDate = datetime.datetime.strptime(action['when'], "%Y-%m-%dT%H:%M:%SZ")
                common.util_check_bugzilla_mail(statList, actionMail, '', actionDate, rowId)

                # Use these variables in case the status is set before the resolution or viceversa
                newStatus = None
                newResolution = None
                oldStatus = None
                oldResolution = None
                for change in action['changes']:
                    if change['field_name'] == 'blocks':
                        if change['added']:
                            for metabug in change['added'].split(', '):

                                if actionDate >= cfg['reportPeriod'] and int(metabug) in row['blocks']:
                                    if metabug not in statList['metabug_added']:
                                        statList['metabug_added'][metabug] = {'id':[], 'author':[]}

                                    statList['metabug_added'][metabug]['id'].append(rowId)
                                    statList['metabug_added'][metabug]['author'].append(actionMail)

                        if change['removed']:
                            for metabug in change['removed'].split(', '):

                                if actionDate >= cfg['reportPeriod'] and int(metabug) not in row['blocks']:
                                    if metabug not in statList['metabug_removed']:
                                        statList['metabug_removed'][metabug] = {'id':[], 'author':[]}

                                    statList['metabug_removed'][metabug]['id'].append(rowId)
                                    statList['metabug_removed'][metabug]['author'].append(actionMail)

                    if change['field_name'] == 'status':
                        addedStatus = change['added']
                        removedStatus = change['removed']

                        if removedStatus == 'RESOLVED' or removedStatus == 'VERIFIED':
                            if oldResolution:
                                removedStatus = removedStatus + "_" + oldResolution
                                oldResolution = None
                            else:
                                oldStatus = removedStatus

                        if  addedStatus == 'RESOLVED' or addedStatus == 'VERIFIED':
                            if newResolution:
                                addedStatus = addedStatus + "_" + newResolution
                                if actionDate >= cfg['reportPeriod']:
                                    keyValue = removedStatus + '-' + addedStatus
                                    if keyValue not in statList['status_changed']:
                                        statList['status_changed'][keyValue] = {'id':[], 'author':[]}
                                    statList['status_changed'][keyValue]['id'].append(rowId)
                                    statList['status_changed'][keyValue]['author'].append(actionMail)

                                newResolution = None
                            else:
                                newStatus = addedStatus
                        else:
                            if removedStatus == 'RESOLVED' or removedStatus == 'VERIFIED':
                                newStatus = addedStatus
                            else:
                                if actionDate >= cfg['reportPeriod']:
                                    keyValue = removedStatus + '-' + addedStatus
                                    if keyValue not in statList['status_changed']:
                                        statList['status_changed'][keyValue] = {'id':[], 'author':[]}
                                    statList['status_changed'][keyValue]['id'].append(rowId)
                                    statList['status_changed'][keyValue]['author'].append(actionMail)

                    elif change['field_name'] == 'resolution':
                        addedResolution = change['added']
                        removedResolution = change['removed']

                        if oldStatus:
                            removedStatus = oldStatus + "_" + removedResolution
                            oldStatus = None
                        else:
                            oldResolution = removedResolution

                        if newStatus:
                            addedStatus = newStatus + "_" + addedResolution

                            if actionDate >= cfg['reportPeriod']:
                                keyValue = removedStatus + '-' + addedStatus
                                if keyValue not in statList['status_changed']:
                                    statList['status_changed'][keyValue] = {'id':[], 'author':[]}
                                statList['status_changed'][keyValue]['id'].append(rowId)
                                statList['status_changed'][keyValue]['author'].append(actionMail)

                            newStatus = None
                        else:
                            newResolution = addedResolution

                    elif change['field_name'] == 'priority':
                        newPriority = change['added']
                        if actionDate >= cfg['reportPeriod'] and newPriority == row['priority']:
                            statList['priority_changed'][newPriority]['id'].append(rowId)
                            statList['priority_changed'][newPriority]['author'].append(actionMail)


                    elif change['field_name'] == 'severity':
                        newSeverity = change['added']
                        if actionDate >= cfg['reportPeriod'] and newSeverity == row['severity']:
                            statList['severity_changed'][newSeverity]['id'].append(rowId)
                            statList['severity_changed'][newSeverity]['author'].append(actionMail)

                    elif change['field_name'] == 'keywords':
                        keywordsAdded = change['added'].split(", ")
                        for keyword in keywordsAdded:
                            if keyword in common.keywords_list:

                                if actionDate >= cfg['reportPeriod'] and keyword in rowKeywords:
                                    statList['keyword_added'][keyword]['id'].append(rowId)
                                    statList['keyword_added'][keyword]['author'].append(actionMail)

                        keywordsRemoved = change['removed'].split(", ")
                        for keyword in keywordsRemoved:
                            if keyword in common.keywords_list:

                                if actionDate >= cfg['reportPeriod'] and keyword not in rowKeywords:
                                    statList['keyword_removed'][keyword]['id'].append(rowId)
                                    statList['keyword_removed'][keyword]['author'].append(actionMail)

                    elif change['field_name'] == 'whiteboard':
                        for whiteboard in change['added'].split(' '):
                            if 'backportrequest' in whiteboard.lower():

                                if actionDate >= cfg['reportPeriod'] and whiteboard in row['whiteboard']:
                                    if whiteboard not in statList['whiteboard_added']:
                                        statList['whiteboard_added'][whiteboard] = {'id':[], 'author':[]}

                                    statList['whiteboard_added'][whiteboard]['id'].append(rowId)
                                    statList['whiteboard_added'][whiteboard]['author'].append(actionMail)


                        for whiteboard in change['removed'].split(' '):
                            if 'backportrequest' in whiteboard.lower():

                                if actionDate >= cfg['reportPeriod'] and whiteboard not in row['whiteboard']:
                                    if whiteboard not in statList['whiteboard_removed']:
                                        statList['whiteboard_removed'][whiteboard] = {'id':[], 'author':[]}

                                    statList['whiteboard_removed'][whiteboard]['id'].append(rowId)
                                    statList['whiteboard_removed'][whiteboard]['author'].append(actionMail)

                    elif change['field_name'] == 'op_sys':
                        newSystem = change['added']

                        if actionDate >= cfg['reportPeriod'] and newSystem in row['op_sys']:
                            statList['system_changed'][newSystem]['id'].append(rowId)
                            statList['system_changed'][newSystem]['author'].append(actionMail)

            commentMail = None
            comments = row['comments'][1:]
            for idx, comment in enumerate(comments):
                commentMail = comment['creator']
                commentDate = datetime.datetime.strptime(comment['time'], "%Y-%m-%dT%H:%M:%SZ")

                common.util_check_bugzilla_mail(statList, commentMail, '', commentDate, rowId)

                if commentDate >= cfg['reportPeriod'] and \
                       commentMail != "libreoffice-commits@lists.freedesktop.org" and\
                       commentMail != "qa-admin@libreoffice.org" and\
                       comment['text'] != 'A polite ping, still working on this bug?':
                    if commentMail not in statList['comments_count']:
                        statList['comments_count'][commentMail] = 0
                    statList['comments_count'][commentMail] += 1

            for person in row['cc_detail']:
                email = person['email']
                if commentMail == email or actionMail == email:
                    common.util_check_bugzilla_mail(statList, email, person['real_name'])

        elif row['summary'].lower().startswith('[meta]'):
            statList['metabugAlias'][rowId] = row['alias']

    for k, v in statList['people'].items():
        if not statList['people'][k]['name']:
            statList['people'][k]['name'] = statList['people'][k]['email'].split('@')[0]

        if statList['people'][k]['oldest'] >= cfg['reportPeriod']:
            statList['newUsers'][k] = statList['people'][k]

        statList['people'][k]['oldest'] = statList['people'][k]['oldest'].strftime("%Y-%m-%d")
        statList['people'][k]['newest'] = statList['people'][k]['newest'].strftime("%Y-%m-%d")

    statList['stat']['newest'] = statNewDate.strftime("%Y-%m-%d")
    statList['stat']['oldest'] = statOldDate.strftime("%Y-%m-%d")
    print(" from " + statList['stat']['oldest'] + " to " + statList['stat']['newest'])

def util_print_QA_line_weekly(fp, statList, dValue, action, isMetabug=False):

    #Replace metabugs keys by aliases
    if isMetabug:
        dValueAux = {}
        for key, value in dValue.items():
            if int(key) in statList['metabugAlias'] and \
                    statList['metabugAlias'][int(key)]:
                dValueAux[statList['metabugAlias'][int(key)][0]] = dValue[key]
        dValue = dValueAux

    for key, value in sorted(dValue.items()):
        if value['id']:
            nBugs = len(value['id'])
            if nBugs == 1:
                aux1 = 'bug has'
                aux2 = 'bug'
            else:
                aux1 = "bugs have"
                aux2 = 'bugs'

            if action == 'added' or action == 'removed':
                aux3 = 'to'
                if action == 'removed':
                    aux3 = 'from'
                print(('  * \'{}\' has been {} {} {} {}.').format(key, action, aux3, nBugs, aux2), file=fp)
            elif action == 'changedStatus':
                statuses = key.replace('_', ' ').split('-')
                print(('  * {} {} been changed from \'{}\' to \'{}\'.').format(nBugs, aux1, statuses[0], statuses[1]), file=fp)
            else:
                print(('  * {} {} been changed to \'{}\'.').format(nBugs, aux1, key.replace('_', ' ')), file=fp)

            common.util_create_short_url(fp, value['id'])
            #Count the number of reps
            my_dict = {i: value['author'].count(i) for i in value['author']}

            d_view = [(v, k) for k, v in my_dict.items()]

            d_view.sort(reverse=True)
            print('\t\t+ Done by:', file=fp)

            text = "          "
            for i1,i2 in d_view:
                personString = statList['people'][i2]['name'] + ' (' + str(i1) + ')'
                # Reduce lines to 72 characters, for some reason the emails are cut otherwise
                if len( text + " " + personString ) < 72:
                    text += personString + ", "
                else:
                    print(text, file=fp)
                    text = "          " + personString + ", "
            if text != "          ":
                print(text[:-2], file=fp)

            print(file=fp)

def create_weekly_Report(statList) :
    print('QA report from {} to {}'.format(cfg['reportPeriod'].strftime("%Y-%m-%d"), statList['stat']['newest']))
    fp = open('/tmp/weekly_report.txt', 'w', encoding='utf-8')

    print('Hello,', file=fp)
    print(file=fp)
    print('What have happened in QA in the last {} days?'.format(reportPeriodDays), file=fp)
    print(file=fp)

    #Count the number of reps
    my_dict = {i: statList['created']['author'].count(i) for i in statList['created']['author']}

    d_view = [(v, k) for k, v in my_dict.items()]

    print('  * {} bugs have been reported by {} people.'.format(\
            len(statList['created']['id']),
            len(d_view)), file=fp)

    common.util_create_short_url(fp, statList['created']['id'])
    print(file=fp)

    d_view.sort(reverse=True)
    print('  * Top 10 reporters:', file=fp)

    it = 0
    for i1,i2 in d_view:
        if it >= 10:
            break
        print('\t\t+ ' + statList['people'][i2]['name'] + ' (' + str(i1) + ')', file=fp)
        it += 1

    print(file=fp)

    d_view = sorted(statList['comments_count'].items(), key=lambda kv: kv[1], reverse=True)

    print('  * Top 10 commenters:', file=fp)

    it = 0
    for i in d_view:
        if it >= 10:
            break
        print('\t\t+ ' + statList['people'][i[0]]['name'] + ' (' + str(i[1]) + ')', file=fp)
        it += 1

    print(file=fp)
    print("  * {} bugs reported haven't been triaged yet.".format(\
            len(statList['still_unconfirmed'])), file=fp)

    common.util_create_short_url(fp, statList['still_unconfirmed'])
    print(file=fp)

    print("  * Total number of unconfirmed bugs: {}".format(\
            len(statList['unconfirmed'])), file=fp)
    print(file=fp)

    print('  * {} comments have been written by {} people.'.format(
        sum(statList['comments_count'].values()), len(statList['comments_count'])), file=fp)
    print(file=fp)

    print('  * {} new people have signed up to Bugzilla.'.format(len(statList['newUsers'])), file=fp)
    print(file=fp)

    if statList['status_changed']:
        print("== STATUSES CHANGED ==", file=fp)
        util_print_QA_line_weekly(fp, statList, statList['status_changed'], 'changedStatus')

    if statList['keyword_added']:
        print("== KEYWORDS ADDED ==", file=fp)
        util_print_QA_line_weekly(fp, statList, statList['keyword_added'], 'added')

    if statList['keyword_removed']:
        print("== KEYWORDS REMOVED ==", file=fp)
        util_print_QA_line_weekly(fp, statList, statList['keyword_removed'], 'removed')

    if statList['whiteboard_added']:
        print("== BACKPORTREQUEST ADDED ==", file=fp)
        util_print_QA_line_weekly(fp, statList, statList['whiteboard_added'], 'added')

    if statList['whiteboard_removed']:
        print("== BACKPORTREQUEST REMOVED ==", file=fp)
        util_print_QA_line_weekly(fp, statList, statList['whiteboard_removed'], 'removed')

    if statList['severity_changed']:
        print("== SEVERITY CHANGED ==", file=fp)
        util_print_QA_line_weekly(fp, statList, statList['severity_changed'], 'changed')

    if statList['priority_changed']:
        print("== PRIORITY CHANGED ==", file=fp)
        util_print_QA_line_weekly(fp, statList, statList['priority_changed'], 'changed')

    if statList['system_changed']:
        print("== SYSTEM CHANGED ==", file=fp)
        util_print_QA_line_weekly(fp, statList, statList['system_changed'], 'changed')

    if statList['metabug_added']:
        print("== METABUGS ADDED ==", file=fp)
        util_print_QA_line_weekly(fp, statList, statList['metabug_added'], 'added', True)

    if statList['metabug_removed']:
        print("== METABUG REMOVED ==", file=fp)
        util_print_QA_line_weekly(fp, statList, statList['metabug_removed'], 'removed', True)

    print('Thank you all for making Libreoffice rock!', file=fp)
    print(file=fp)
    print('Generated on {} based on stats from {}. Note: Metabugs are ignored.'.format(
        datetime.datetime.now().strftime("%Y-%m-%d"), statList['stat']['newest']), file=fp)
    print(file=fp)
    print('Regards', file=fp)
    fp.close()

def runCfg():
    cfg = {}
    cfg['reportPeriod'] = common.util_convert_days_to_datetime(reportPeriodDays)

    return cfg

if __name__ == '__main__':
    print("Reading and writing data to " + common.dataDir)

    cfg = runCfg()

    bugzillaData = common.get_bugzilla()

    statList = util_create_statList_weeklyReport()

    analyze_bugzilla_weeklyReport(statList, bugzillaData, cfg)

    create_weekly_Report(statList)

    print('End of report')