mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
52 lines
2.7 KiB
Python
52 lines
2.7 KiB
Python
#!/usr/bin/env python
|
|
|
|
import mozdevice
|
|
import mozlog
|
|
import unittest
|
|
from sut import MockAgent
|
|
|
|
|
|
class TestLogCat(unittest.TestCase):
|
|
""" Class to test methods assosiated with logcat """
|
|
|
|
def test_getLogcat(self):
|
|
|
|
logcat_output = ("07-17 00:51:10.377 I/SUTAgentAndroid( 2933): onCreate\n\r"
|
|
"07-17 00:51:10.457 D/dalvikvm( 2933): GC_CONCURRENT freed 351K, 17% free 2523K/3008K, paused 5ms+2ms, total 38ms\n\r"
|
|
"07-17 00:51:10.497 I/SUTAgentAndroid( 2933): Caught exception creating file in /data/local/tmp: open failed: EACCES (Permission denied)\n\r"
|
|
"07-17 00:51:10.507 E/SUTAgentAndroid( 2933): ERROR: Cannot access world writeable test root\n\r"
|
|
"07-17 00:51:10.547 D/GeckoHealthRec( 3253): Initializing profile cache.\n\r"
|
|
"07-17 00:51:10.607 D/GeckoHealthRec( 3253): Looking for /data/data/org.mozilla.fennec/files/mozilla/c09kfhne.default/times.json\n\r"
|
|
"07-17 00:51:10.637 D/GeckoHealthRec( 3253): Using times.json for profile creation time.\n\r"
|
|
"07-17 00:51:10.707 D/GeckoHealthRec( 3253): Incorporating environment: times.json profile creation = 1374026758604\n\r"
|
|
"07-17 00:51:10.507 D/GeckoHealthRec( 3253): Requested prefs.\n\r"
|
|
"07-17 06:50:54.907 I/SUTAgentAndroid( 3876): \n\r"
|
|
"07-17 06:50:54.907 I/SUTAgentAndroid( 3876): Total Private Dirty Memory 3176 kb\n\r"
|
|
"07-17 06:50:54.907 I/SUTAgentAndroid( 3876): Total Proportional Set Size Memory 5679 kb\n\r"
|
|
"07-17 06:50:54.907 I/SUTAgentAndroid( 3876): Total Shared Dirty Memory 9216 kb\n\r"
|
|
"07-17 06:55:21.627 I/SUTAgentAndroid( 3876): 127.0.0.1 : execsu /system/bin/logcat -v time -d dalvikvm:I "
|
|
"ConnectivityService:S WifiMonitor:S WifiStateTracker:S wpa_supplicant:S NetworkStateTracker:S\n\r"
|
|
"07-17 06:55:21.827 I/dalvikvm-heap( 3876): Grow heap (frag case) to 3.019MB for 102496-byte allocation\n\r"
|
|
"return code [0]")
|
|
|
|
inp = ("execsu /system/bin/logcat -v time -d "
|
|
"dalvikvm:I ConnectivityService:S WifiMonitor:S "
|
|
"WifiStateTracker:S wpa_supplicant:S NetworkStateTracker:S")
|
|
|
|
commands = [(inp, logcat_output)]
|
|
m = MockAgent(self, commands=commands)
|
|
d = mozdevice.DroidSUT("127.0.0.1", port=m.port, logLevel=mozlog.DEBUG)
|
|
self.assertEqual(logcat_output[:-17].split('\r'), d.getLogcat())
|
|
|
|
def test_recordLogcat(self):
|
|
|
|
commands = [("execsu /system/bin/logcat -c", "return code [0]")]
|
|
|
|
m = MockAgent(self, commands=commands)
|
|
d = mozdevice.DroidSUT("127.0.0.1", port=m.port, logLevel=mozlog.DEBUG)
|
|
# No error raised means success
|
|
self.assertEqual(None, d.recordLogcat())
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|