testing/mozbase/mozdevice/sut_tests/test_ps.py

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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)

mercurial