import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo

This commit is contained in:
Roy Tam 2018-01-19 03:59:58 +08:00
commit dcd9973243
150858 changed files with 23884658 additions and 0 deletions

View file

@ -0,0 +1,50 @@
from sut import MockAgent
import mozdevice
import unittest
class PsTest(unittest.TestCase):
pscommands = [('ps',
"10029 549 com.android.launcher\n"
"10066 1198 com.twitter.android")]
bad_pscommands = [('ps',
"abcdef 549 com.android.launcher\n"
"10066 1198 com.twitter.android")]
def test_processList(self):
a = MockAgent(self,
commands=self.pscommands)
d = mozdevice.DroidSUT("127.0.0.1", port=a.port)
pslist = d.getProcessList()
self.assertEqual(len(pslist), 2)
self.assertEqual(pslist[0], [549, 'com.android.launcher', 10029])
self.assertEqual(pslist[1], [1198, 'com.twitter.android', 10066])
a.wait()
def test_badProcessList(self):
a = MockAgent(self,
commands=self.bad_pscommands)
d = mozdevice.DroidSUT("127.0.0.1", port=a.port)
exceptionTriggered = False
try:
d.getProcessList()
except mozdevice.DMError:
exceptionTriggered = True
self.assertTrue(exceptionTriggered)
a.wait()
def test_processExist(self):
for i in [('com.android.launcher', 549),
('com.fennec.android', None)]:
a = MockAgent(self, commands=self.pscommands)
d = mozdevice.DroidSUT("127.0.0.1", port=a.port)
self.assertEqual(d.processExist(i[0]), i[1])
a.wait()
if __name__ == '__main__':
unittest.main()