summaryrefslogtreecommitdiff
path: root/tests/test_threading.py
blob: 2ec6ab0b6c4debbef7da80af4474df493094079c (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
import threading
import logging

import debianbts as bts

logger = logging.getLogger(__name__)


class TestThreading(object):
    """this class tests that the module is thread safe"""

    def test_multithreading(self):
        self._thread_failed = False
        threads = [
            threading.Thread(target=self._get_bugs_thread, args=(pkg,))
            for pkg in ('python3-gst-1.0', 'libsoxr0')
        ] + [
            threading.Thread(target=self._get_bug_log_thread, args=(bug_n,))
            for bug_n in (300000, 300001)
        ]

        for thread in threads:
            thread.start()

        for thread in threads:
            thread.join()

        assert not self._thread_failed

    def _get_bugs_thread(self, pkg):
        try:
            bts.get_bugs('package', pkg)
        except Exception:
            self._thread_failed = True
            logger.exception('Threaded get_bugs() call failed.')

    def _get_bug_log_thread(self, bug_num):
        try:
            bts.get_bug_log(bug_num)
        except Exception:
            self._thread_failed = True
            logger.exception('Threaded get_bug_log() call failed.')