summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/mozdevice/tests/sut_ps.py
blob: 03f431c1df6cd830f24eb92a4266e72174a1240b (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
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()