Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
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)