summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/mozdevice/sut_tests/dmunit.py
blob: b4a3d0b9ba0ff9436d96ae937434a37486645630 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

import logging
import types
import unittest

from mozdevice import devicemanager
from mozdevice import devicemanagerSUT

ip = ''
port = 0
heartbeat_port = 0
log_level = logging.ERROR


class DeviceManagerTestCase(unittest.TestCase):
    """DeviceManager tests should subclass this.
    """

    """Set to False in your derived class if this test
    should not be run on the Python agent.
    """
    runs_on_test_device = True

    def _setUp(self):
        """ Override this if you want set-up code in your test."""
        return

    def setUp(self):
        self.dm = devicemanagerSUT.DeviceManagerSUT(host=ip, port=port,
                                                    logLevel=log_level)
        self.dmerror = devicemanager.DMError
        self._setUp()


class DeviceManagerTestLoader(unittest.TestLoader):

    def __init__(self, isTestDevice=False):
        self.isTestDevice = isTestDevice

    def loadTestsFromModuleName(self, module_name):
        """Loads tests from modules unless the SUT is a test device and
        the test case has runs_on_test_device set to False
        """
        tests = []
        module = __import__(module_name)
        for name in dir(module):
            obj = getattr(module, name)
            if (isinstance(obj, (type, types.ClassType)) and
                    issubclass(obj, unittest.TestCase)) and \
                    (not self.isTestDevice or obj.runs_on_test_device):
                tests.append(self.loadTestsFromTestCase(obj))
        return self.suiteClass(tests)