-
Notifications
You must be signed in to change notification settings - Fork 288
Expand file tree
/
Copy pathtest_lazy.py
More file actions
202 lines (172 loc) · 6.97 KB
/
test_lazy.py
File metadata and controls
202 lines (172 loc) · 6.97 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
import json
import time
from urllib.parse import quote
from slack_sdk import WebClient
from slack_sdk.signature import SignatureVerifier
from slack_bolt import BoltRequest
from slack_bolt.app import App
from tests.mock_web_api_server import assert_received_request_count, cleanup_mock_web_api_server, setup_mock_web_api_server
from tests.utils import remove_os_env_temporarily, restore_os_env
class TestErrorHandler:
signing_secret = "secret"
valid_token = "xoxb-valid"
mock_api_server_base_url = "http://localhost:8888"
signature_verifier = SignatureVerifier(signing_secret)
web_client = WebClient(
token=valid_token,
base_url=mock_api_server_base_url,
)
def setup_method(self):
self.old_os_env = remove_os_env_temporarily()
setup_mock_web_api_server(self)
def teardown_method(self):
cleanup_mock_web_api_server(self)
restore_os_env(self.old_os_env)
# ----------------
# utilities
# ----------------
def generate_signature(self, body: str, timestamp: str):
return self.signature_verifier.generate_signature(
body=body,
timestamp=timestamp,
)
def build_headers(self, timestamp: str, body: str):
return {
"content-type": ["application/x-www-form-urlencoded"],
"x-slack-signature": [self.generate_signature(body, timestamp)],
"x-slack-request-timestamp": [timestamp],
}
def build_valid_request(self) -> BoltRequest:
body = {
"type": "block_actions",
"user": {
"id": "W111",
},
"api_app_id": "A111",
"token": "verification_token",
"trigger_id": "111.222.valid",
"team": {
"id": "T111",
},
"channel": {"id": "C111", "name": "test-channel"},
"response_url": "https://hooks.slack.com/actions/T111/111/random-value",
"actions": [
{
"action_id": "a",
"block_id": "b",
"text": {"type": "plain_text", "text": "Button"},
"value": "click_me_123",
"type": "button",
"action_ts": "1596530385.194939",
}
],
}
raw_body = f"payload={quote(json.dumps(body))}"
timestamp = str(int(time.time()))
return BoltRequest(body=raw_body, headers=self.build_headers(timestamp, raw_body))
# ----------------
# tests
# ----------------
def test_lazy(self):
def just_ack(ack):
ack()
def async1(say):
time.sleep(0.3)
say(text="lazy function 1")
def async2(say):
time.sleep(0.5)
say(text="lazy function 2")
app = App(
client=self.web_client,
signing_secret=self.signing_secret,
)
app.action("a")(
ack=just_ack,
lazy=[async1, async2],
)
request = self.build_valid_request()
response = app.dispatch(request)
assert response.status == 200
assert_received_request_count(self, path="/chat.postMessage", min_count=2)
def test_lazy_class(self):
def just_ack(ack):
ack()
class LazyClass:
def __call__(self, say):
time.sleep(0.3)
say(text="lazy function 1")
def async2(say):
time.sleep(0.5)
say(text="lazy function 2")
app = App(
client=self.web_client,
signing_secret=self.signing_secret,
)
app.action("a")(
ack=just_ack,
lazy=[LazyClass(), async2],
)
request = self.build_valid_request()
response = app.dispatch(request)
assert response.status == 200
assert_received_request_count(self, path="/chat.postMessage", min_count=2)
def test_issue_545_context_copy_failure(self):
def just_ack(ack):
ack()
class LazyClass:
def __call__(self, context, say):
assert context.get("foo") == "FOO"
assert context.get("ssl_context") is None
time.sleep(0.3)
say(text="lazy function 1")
def async2(context, say):
assert context.get("foo") == "FOO"
assert context.get("ssl_context") is None
time.sleep(0.5)
say(text="lazy function 2")
app = App(
client=self.web_client,
signing_secret=self.signing_secret,
)
@app.middleware
def set_ssl_context(context, next_):
import ssl
context["foo"] = "FOO"
# This causes an error when starting lazy listener executions
context["ssl_context"] = ssl.create_default_context()
next_()
# 2021-12-13 11:14:29 ERROR Failed to run a middleware middleware (error: cannot pickle 'SSLContext' object)
# Traceback (most recent call last):
# File "/path/to/bolt-python/slack_bolt/app/app.py", line 545, in dispatch
# ] = self._listener_runner.run(
# File "/path/to/bolt-python/slack_bolt/listener/thread_runner.py", line 166, in run
# self._start_lazy_function(lazy_func, request)
# File "/path/to/bolt-python/slack_bolt/listener/thread_runner.py", line 193, in _start_lazy_function
# copied_request = self._build_lazy_request(request, func_name)
# File "/path/to/bolt-python/slack_bolt/listener/thread_runner.py", line 198, in _build_lazy_request
# copied_request = create_copy(request)
# File "/path/to/bolt-python/slack_bolt/util/utils.py", line 48, in create_copy
# return copy.deepcopy(original)
# File "/path/to/python/lib/python3.9/copy.py", line 172, in deepcopy
# y = _reconstruct(x, memo, *rv)
# File "/path/to/python/lib/python3.9/copy.py", line 270, in _reconstruct
# state = deepcopy(state, memo)
# File "/path/to/python/lib/python3.9/copy.py", line 146, in deepcopy
# y = copier(x, memo)
# File "/path/to/python/lib/python3.9/copy.py", line 230, in _deepcopy_dict
# y[deepcopy(key, memo)] = deepcopy(value, memo)
# File "/path/to/python/lib/python3.9/copy.py", line 172, in deepcopy
# y = _reconstruct(x, memo, *rv)
# File "/path/to/python/lib/python3.9/copy.py", line 296, in _reconstruct
# value = deepcopy(value, memo)
# File "/path/to/python/lib/python3.9/copy.py", line 161, in deepcopy
# rv = reductor(4)
# TypeError: cannot pickle 'SSLContext' object
app.action("a")(
ack=just_ack,
lazy=[LazyClass(), async2],
)
request = self.build_valid_request()
response = app.dispatch(request)
assert response.status == 200
assert_received_request_count(self, path="/chat.postMessage", min_count=2)