├── .gitignore ├── .idea ├── .name ├── android_monkey.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── AdbCommon.py ├── BasicMonkey.py ├── Config.yml ├── CrashSQL.py ├── DateBean.py ├── DependApp ├── app-wifi-androidTest.apk ├── app-wifi.apk └── simiasque-debug.apk ├── EazyRun.py ├── FileCommon.py ├── GetCPU.py ├── GetFPS.py ├── GetMemory.py ├── GetNetWork.py ├── MailConfig.py ├── MonkeyLog ├── MonkeyError_20180827232706.log └── MonkeyInfo_20180827232706.log ├── README.md ├── Report.png ├── ReportServer ├── Flask.py ├── __init__.py ├── performanceReport │ └── performance_20180827232706.html ├── static │ ├── __init__.py │ ├── exporting.js │ ├── highcharts-zh_CN.js │ ├── highcharts.js │ ├── jquery-1.8.3.min.js │ └── oldie.js └── templates │ ├── __init__.py │ └── template.html ├── Run.py ├── SQLConfig.py ├── SendMail.py ├── Setup.py ├── logger.py ├── out ├── cpu.txt ├── fpspath.txt ├── meminfo.txt └── network.txt └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | android_monkey -------------------------------------------------------------------------------- /.idea/android_monkey.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/.idea/android_monkey.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /AdbCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/AdbCommon.py -------------------------------------------------------------------------------- /BasicMonkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/BasicMonkey.py -------------------------------------------------------------------------------- /Config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/Config.yml -------------------------------------------------------------------------------- /CrashSQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/CrashSQL.py -------------------------------------------------------------------------------- /DateBean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/DateBean.py -------------------------------------------------------------------------------- /DependApp/app-wifi-androidTest.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/DependApp/app-wifi-androidTest.apk -------------------------------------------------------------------------------- /DependApp/app-wifi.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/DependApp/app-wifi.apk -------------------------------------------------------------------------------- /DependApp/simiasque-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/DependApp/simiasque-debug.apk -------------------------------------------------------------------------------- /EazyRun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/EazyRun.py -------------------------------------------------------------------------------- /FileCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/FileCommon.py -------------------------------------------------------------------------------- /GetCPU.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/GetCPU.py -------------------------------------------------------------------------------- /GetFPS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/GetFPS.py -------------------------------------------------------------------------------- /GetMemory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/GetMemory.py -------------------------------------------------------------------------------- /GetNetWork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/GetNetWork.py -------------------------------------------------------------------------------- /MailConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/MailConfig.py -------------------------------------------------------------------------------- /MonkeyLog/MonkeyError_20180827232706.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MonkeyLog/MonkeyInfo_20180827232706.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/MonkeyLog/MonkeyInfo_20180827232706.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/README.md -------------------------------------------------------------------------------- /Report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/Report.png -------------------------------------------------------------------------------- /ReportServer/Flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/ReportServer/Flask.py -------------------------------------------------------------------------------- /ReportServer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReportServer/performanceReport/performance_20180827232706.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/ReportServer/performanceReport/performance_20180827232706.html -------------------------------------------------------------------------------- /ReportServer/static/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = '58' 2 | -------------------------------------------------------------------------------- /ReportServer/static/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/ReportServer/static/exporting.js -------------------------------------------------------------------------------- /ReportServer/static/highcharts-zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/ReportServer/static/highcharts-zh_CN.js -------------------------------------------------------------------------------- /ReportServer/static/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/ReportServer/static/highcharts.js -------------------------------------------------------------------------------- /ReportServer/static/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/ReportServer/static/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /ReportServer/static/oldie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/ReportServer/static/oldie.js -------------------------------------------------------------------------------- /ReportServer/templates/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = '58' 2 | -------------------------------------------------------------------------------- /ReportServer/templates/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/ReportServer/templates/template.html -------------------------------------------------------------------------------- /Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/Run.py -------------------------------------------------------------------------------- /SQLConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/SQLConfig.py -------------------------------------------------------------------------------- /SendMail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/SendMail.py -------------------------------------------------------------------------------- /Setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/Setup.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/logger.py -------------------------------------------------------------------------------- /out/cpu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/out/cpu.txt -------------------------------------------------------------------------------- /out/fpspath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/out/fpspath.txt -------------------------------------------------------------------------------- /out/meminfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/out/meminfo.txt -------------------------------------------------------------------------------- /out/network.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/out/network.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xinxi1990/MyMonkey/HEAD/requirements.txt --------------------------------------------------------------------------------