Fri, 16 Jan 2015 04:50:19 +0100
Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32
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)