Python 处理monkey log

前段时间帮助测试人员开发一款工具,目的是从Monkey log中提取出crash和anr的相关信息,并且输出成Excel表。

1. 分析Monkey log文件

crash信息

可以看出,出现crash信息开头是“// CRASH: ”

anr信息

可以看出,出现了anr信息开头是“ANR in ” ,需要提取的项开头有“Reason: ”的。

2. 确认提取项

对于测试人员提bug来说,需要这个工具能够提取出进程名、报错类型和复现次数数据。

3. 实现思路

crash和anr信息提取的思路其实是一样的,就以提取crash为例:

  1. 提取每行开头带有“// CRASH: ”和“// Long Msg:”的数据
  2. 记录提取的信息和相应行数
  3. 如果提取的进程名下面两行没有对应的错误信息,则说明是格式错误的数据
  4. 对数据进行统计计数,统计每个进程、每个bug的复现次数。
  5. 将处理好的数据通过openpyxl进行处理导出Excel

4. 代码

from openpyxl import Workbook
from openpyxl.styles import Border, Side, Font, Alignment, NamedStyle
import os
import tkinter.filedialog as filedialog
from tkinter import *

"""
作者:Blue(应用开发部)
功能:统计MonkeyLog的crash和anr信息
版本:1.0
"""


class MonkeyLog(object):

    log_path = ''
    info_total = []
    info_final = []

    def __init__(self):
        if os.path.exists(os.path.dirname(os.path.abspath(self.log_path)) + '\log.xlsx'):
            os.remove(os.path.dirname(os.path.abspath(self.log_path)) + '\log.xlsx')

    def get_info(self, app_name, message, index):
        name = []
        detail = []
        lines_name = []
        lines_message = []
        wrong_lines = []
        i = 0
        with open(self.log_path, 'r', encoding='utf-8') as data:
            for x in data:
                i += 1
                if x.startswith(app_name):
                    name.append(x.split(' ')[2].replace('\n', ''))
                    lines_name.append(i)
                if x.startswith(message):
                    detail.append(' '.join(x.split(' ')[index:]).replace('\n', ''))
                    lines_message.append(i)

        for x in lines_message:
            if x - 2 not in lines_name:
                del detail[lines_message.index(x)]
                wrong_lines.append(str(x))

        for x in lines_name:
            if x + 2 not in lines_message:
                del name[lines_name.index(x)]
                wrong_lines.append(str(x))

        if len(name) != len(detail):
            print("Wrong message !!!!!!!")
        for i in range(len(name)):
            temp = [name[i], detail[i]]
            self.info_total.append(temp)

        print("========================================")
        if len(wrong_lines) != 0:
            if app_name == "// CRASH: ":
                print("Crash数据中,log文件格式错误的行数:")
                print('\n'.join(wrong_lines))
            else:
                print("ANR数据中,log文件格式错误的行数:")
                print('\n'.join(wrong_lines))

    def analyze_info(self):
        self.info_total.sort(key=lambda x: x[0])
        each_bug_num = self.count_bug(self.info_total)
        each_app_num = self.count_app(self.info_total)
        for i in range(len(each_app_num)):
            self.info_total[i].insert(0, each_app_num[i])
        for i in range(len(each_bug_num)):
            self.info_total[i].append(each_bug_num[i])
        for x in self.info_total:
            if x not in self.info_final:
                self.info_final.append(x)

    def write_excel(self, ws, title_style, content_style, content_long_style):
        ws.append(['总数', '进程名', '错误信息', '复现次数'])
        merge_line_num = self.count_merge(self.info_final)
        length = len(merge_line_num)
        if length == 1:
            ws.merge_cells('A%s:A%s' % (2, merge_line_num[-1]))
            ws.merge_cells('B%s:B%s' % (2, merge_line_num[-1]))
        else:
            if merge_line_num[0] != 2:
                ws.merge_cells('A%s:A%s' % (2, merge_line_num[0]))
                ws.merge_cells('B%s:B%s' % (2, merge_line_num[0]))
            for i in range(length):
                if i < length - 1:
                    if merge_line_num[i + 1] - merge_line_num[i] != 1:
                        ws.merge_cells('A%s:A%s' % (merge_line_num[i] + 1, merge_line_num[i + 1]))
                        ws.merge_cells('B%s:B%s' % (merge_line_num[i] + 1, merge_line_num[i + 1]))

        for x in self.info_final:
            ws.append(x)
        self.format_excel(ws, title_style, content_style, content_long_style)
        wb.save(os.path.dirname(os.path.abspath(self.log_path)) + "\log.xlsx")
        self.info_final.clear()
        self.info_total.clear()

        print("%s表数据已经写入." % ws.title)
        print("========================================\n")

    def count_app(self, info):
        temp_name = []
        temp_num = []
        for x in info:
            temp_name.append(x[0])
        for x in temp_name:
            temp_num.append(temp_name.count(x))
        return temp_num

    def count_bug(self, info):
        temp_num = []
        for x in info:
            temp_num.append(self.info_total.count(x))
        return temp_num

    def count_merge(self, info):
        temp_num = []
        length = len(info)
        for i in range(length):
            if i < length - 1:
                if info[i][1] != info[i + 1][1]:
                    temp_num.append(i + 2)
            else:
                temp_num.append(length + 1)
        return temp_num

    def format_excel(self, ws, title_style, content_style, content_long_style):
        ws.column_dimensions['A'].width = 8
        ws.column_dimensions['B'].width = 30
        ws.column_dimensions['C'].width = 100
        ws.column_dimensions['D'].width = 10
        for i in range(ws.max_row):
            ws.row_dimensions[i + 1].height = 30
        for x in ws[1]:
            x.style = title_style
        for x in ws['A:B']:
            for y in x:
                y.style = content_style
        for x in ws['C'][1:]:
            x.style = content_long_style
        for x in ws['D'][1:]:
            x.style = content_style

    @staticmethod
    def open_win():
        root = Tk()
        root.title("MonkeyLog 分析")
        ws = root.winfo_screenwidth()
        hs = root.winfo_screenheight()
        x = ws/2 - 400/2
        y = hs/2 - 200/2
        root.geometry("400x200+%d+%d" % (x, y))

        def callback():
            MonkeyLog.log_path = filedialog.askopenfilename()
            entry.insert(0, MonkeyLog.log_path)
        button = Button(root, text="选择MonkeyLog文件", command=callback)
        quit_btn = Button(root, text="确定", command=root.destroy)
        entry = Entry(root)
        entry.pack(side=TOP, anchor="nw", fill=X, pady=40)
        button.pack(side=TOP)
        quit_btn.pack(side=TOP, pady=10)
        root.mainloop()

if __name__ == '__main__':
    MonkeyLog.open_win()

    crash = MonkeyLog()
    anr = MonkeyLog()
    wb = Workbook()

    left, right, top, bottom = [Side(style='thin', color='000000')] * 4
    title = NamedStyle(name="title")
    title.font = Font(name=u'宋体', size=11)
    title.alignment = Alignment(horizontal='center', vertical='center', wrap_text=True)
    title.border = Border(left=left, right=right, top=top, bottom=bottom)
    content = NamedStyle(name="content")
    content.font = Font(name=u'宋体', size=11)
    content.alignment = Alignment(horizontal='center', vertical='center', wrap_text=True)
    content.border = Border(left=left, right=right, top=top, bottom=bottom)
    content_long = NamedStyle(name="content_long")
    content_long.font = Font(name=u'宋体', size=11)
    content_long.border = Border(left=left, right=right, top=top, bottom=bottom)
    content_long.alignment = Alignment(horizontal='left', vertical='center', wrap_text=True)

    crash.get_info('// CRASH: ', '// Long Msg:', 3)
    crash.analyze_info()
    ws_crash = wb.active
    ws_crash.title = "crash"
    crash.write_excel(ws_crash, title, content, content_long)

    anr.get_info('ANR in', 'Reason:', 1)
    anr.analyze_info()
    ws_anr = wb.create_sheet("anr")
    anr.write_excel(ws_anr, title, content, content_long)
    print("数据已经导出完毕,请到其log文件目录下查看log.xlsx文件!")
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,904评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,581评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,527评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,463评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,546评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,572评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,582评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,330评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,776评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,087评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,257评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,923评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,571评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,192评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,436评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,145评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,127评论 2 352

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,997评论 25 707
  • Monkey概念介绍 Monkey是猴子的意思。Monkey测试,就像一只猴子,在电脑面前,乱敲键盘在测试。猴子什...
    正规程序员阅读 3,549评论 0 50
  • 游戏类型:深度破冰/团队凝聚力/个人成长 活动形式:将全体成员秘密分组 活动时长:贯穿整个培训期间 场地要求:培训...
    是黄小仙呀阅读 1,627评论 0 0
  • 推荐戴维·迈尔斯的《社会心理学》 即人们为什么会在两个看似巧合实际并没有任何联系的事件之间建立关联呢? 人们潜在的...
    crazyyoyo阅读 755评论 2 2
  • 风来过,树 婆娑, 雨来过,花婀娜。 燕来过,泥柔和。 孩来过,妈乐呵。
    旖旎i阅读 188评论 1 3