forked from slackapi/bolt-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_middleware.py
More file actions
163 lines (135 loc) · 4.77 KB
/
test_middleware.py
File metadata and controls
163 lines (135 loc) · 4.77 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
import asyncio
import json
from time import time
import pytest
from slack_sdk.signature import SignatureVerifier
from slack_sdk.web.async_client import AsyncWebClient
from slack_bolt.app.async_app import AsyncApp
from slack_bolt.request.async_request import AsyncBoltRequest
from tests.mock_web_api_server import (
setup_mock_web_api_server,
cleanup_mock_web_api_server,
assert_auth_test_count_async,
)
from tests.utils import remove_os_env_temporarily, restore_os_env
# Note that async middleware system does not support instance methods n a class.
class TestAsyncMiddleware:
signing_secret = "secret"
valid_token = "xoxb-valid"
mock_api_server_base_url = "http://localhost:8888"
signature_verifier = SignatureVerifier(signing_secret)
web_client = AsyncWebClient(
token=valid_token,
base_url=mock_api_server_base_url,
)
@pytest.fixture
def event_loop(self):
old_os_env = remove_os_env_temporarily()
try:
setup_mock_web_api_server(self)
loop = asyncio.get_event_loop()
yield loop
loop.close()
cleanup_mock_web_api_server(self)
finally:
restore_os_env(old_os_env)
def build_request(self) -> AsyncBoltRequest:
body = {
"type": "shortcut",
"token": "verification_token",
"action_ts": "111.111",
"team": {
"id": "T111",
"domain": "workspace-domain",
"enterprise_id": "E111",
"enterprise_name": "Org Name",
},
"user": {"id": "W111", "username": "primary-owner", "team_id": "T111"},
"callback_id": "test-shortcut",
"trigger_id": "111.111.xxxxxx",
}
timestamp, body = str(int(time())), json.dumps(body)
return AsyncBoltRequest(
body=body,
headers={
"content-type": ["application/json"],
"x-slack-signature": [
self.signature_verifier.generate_signature(
body=body,
timestamp=timestamp,
)
],
"x-slack-request-timestamp": [timestamp],
},
)
@pytest.mark.asyncio
async def test_no_next_call(self):
app = AsyncApp(
client=self.web_client,
signing_secret=self.signing_secret,
)
app.use(no_next)
app.shortcut("test-shortcut")(just_ack)
response = await app.async_dispatch(self.build_request())
assert response.status == 404
await assert_auth_test_count_async(self, 1)
@pytest.mark.asyncio
async def test_next_call(self):
app = AsyncApp(
client=self.web_client,
signing_secret=self.signing_secret,
)
app.use(just_next)
app.shortcut("test-shortcut")(just_ack)
response = await app.async_dispatch(self.build_request())
assert response.status == 200
assert response.body == "acknowledged!"
await assert_auth_test_count_async(self, 1)
@pytest.mark.asyncio
async def test_decorator_next_call(self):
app = AsyncApp(
client=self.web_client,
signing_secret=self.signing_secret,
)
@app.middleware
async def just_next(next):
await next()
app.shortcut("test-shortcut")(just_ack)
response = await app.async_dispatch(self.build_request())
assert response.status == 200
assert response.body == "acknowledged!"
await assert_auth_test_count_async(self, 1)
@pytest.mark.asyncio
async def test_next_underscore_call(self):
app = AsyncApp(
client=self.web_client,
signing_secret=self.signing_secret,
)
app.use(just_next_)
app.shortcut("test-shortcut")(just_ack)
response = await app.async_dispatch(self.build_request())
assert response.status == 200
assert response.body == "acknowledged!"
await assert_auth_test_count_async(self, 1)
@pytest.mark.asyncio
async def test_decorator_next_underscore_call(self):
app = AsyncApp(
client=self.web_client,
signing_secret=self.signing_secret,
)
@app.middleware
async def just_next_(next_):
await next_()
app.shortcut("test-shortcut")(just_ack)
response = await app.async_dispatch(self.build_request())
assert response.status == 200
assert response.body == "acknowledged!"
await assert_auth_test_count_async(self, 1)
async def just_ack(ack):
await ack("acknowledged!")
async def no_next():
pass
async def just_next(next):
await next()
async def just_next_(next_):
await next_()