|
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/. |
|
4 |
|
5 from dmunit import DeviceManagerTestCase |
|
6 |
|
7 class ProcessListTestCase(DeviceManagerTestCase): |
|
8 |
|
9 def runTest(self): |
|
10 """This tests getting a process list from the device. |
|
11 """ |
|
12 proclist = self.dm.getProcessList() |
|
13 |
|
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>], ...] |
|
18 |
|
19 self.assertNotEqual(len(proclist), 0) |
|
20 |
|
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) |
|
27 |