forked from open-telemetry/opentelemetry-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconcurrency_test.py
90 lines (72 loc) · 2.7 KB
/
concurrency_test.py
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Copyright The OpenTelemetry Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys
import threading
import unittest
from functools import partial
from typing import Callable, List, Optional, TypeVar
from unittest.mock import Mock
ReturnT = TypeVar("ReturnT")
class MockFunc:
"""A thread safe mock function
Use this as part of your mock if you want to count calls across multiple
threads.
"""
def __init__(self) -> None:
self.lock = threading.Lock()
self.call_count = 0
self.mock = Mock()
def __call__(self, *args, **kwargs):
with self.lock:
self.call_count += 1
return self.mock
class ConcurrencyTestBase(unittest.TestCase):
"""Test base class/mixin for tests of concurrent code
This test class calls ``sys.setswitchinterval(1e-12)`` to try to create more
contention while running tests that use many threads. It also provides
``run_with_many_threads`` to run some test code in many threads
concurrently.
"""
orig_switch_interval = sys.getswitchinterval()
@classmethod
def setUpClass(cls) -> None:
super().setUpClass()
# switch threads more often to increase chance of contention
sys.setswitchinterval(1e-12)
@classmethod
def tearDownClass(cls) -> None:
super().tearDownClass()
sys.setswitchinterval(cls.orig_switch_interval)
@staticmethod
def run_with_many_threads(
func_to_test: Callable[[], ReturnT],
num_threads: int = 100,
) -> List[ReturnT]:
"""Util to run ``func_to_test`` in ``num_threads`` concurrently"""
barrier = threading.Barrier(num_threads)
results: List[Optional[ReturnT]] = [None] * num_threads
def thread_start(idx: int) -> None:
nonlocal results
# Get all threads here before releasing them to create contention
barrier.wait()
results[idx] = func_to_test()
threads = [
threading.Thread(target=partial(thread_start, i))
for i in range(num_threads)
]
for thread in threads:
thread.start()
for thread in threads:
thread.join()
return results # type: ignore