aboutsummaryrefslogtreecommitdiff
path: root/app/tests/__init__.py
blob: 0424b10e27770e2a596c5b77cb0370d5ef3839e9 (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
56
57
# Copyright (C) 2014 Linaro Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

"""Unit tests suite for kernel-ci-backend."""

import unittest


def test_modules():
    return [
        'handlers.tests.test_batch_handler',
        'handlers.tests.test_bisect_handler',
        'handlers.tests.test_boot_handler',
        'handlers.tests.test_count_handler',
        'handlers.tests.test_defconf_handler',
        'handlers.tests.test_handler_response',
        'handlers.tests.test_handlers_common',
        'handlers.tests.test_job_handler',
        'handlers.tests.test_lab_handler',
        'handlers.tests.test_token_handler',
        'models.tests.test_bisect_model',
        'models.tests.test_boot_model',
        'models.tests.test_defconfig_model',
        'models.tests.test_job_model',
        'models.tests.test_lab_model',
        'models.tests.test_subscription_model',
        'models.tests.test_token_model',
        'utils.batch.tests.test_batch_common',
        'utils.bisect.tests.test_bisect',
        'utils.tests.test_bootimport',
        'utils.tests.test_docimport',
        'utils.tests.test_validator',
    ]


def test_suite():
    """Create a unittest.TestSuite object."""
    modules = test_modules()
    suite = unittest.TestSuite()
    test_loader = unittest.TestLoader()

    for name in modules:
        unit_suite = test_loader.loadTestsFromName(name)
        suite.addTests(unit_suite)
    return suite