Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 from dmunit import DeviceManagerTestCase
7 class ProcessListTestCase(DeviceManagerTestCase):
9 def runTest(self):
10 """This tests getting a process list from the device.
11 """
12 proclist = self.dm.getProcessList()
14 # This returns a process list of the form:
15 # [[<procid>, <procname>], [<procid>, <procname>], ...]
16 # on android the userID is affixed to the process array:
17 # [[<procid>, <procname>, <userid>], ...]
19 self.assertNotEqual(len(proclist), 0)
21 for item in proclist:
22 self.assertIsInstance(item[0], int)
23 self.assertIsInstance(item[1], str)
24 self.assertGreater(len(item[1]), 0)
25 if len(item) > 2:
26 self.assertIsInstance(item[2], int)