-
Notifications
You must be signed in to change notification settings - Fork 288
Expand file tree
/
Copy pathtest_app_actor_user_token.py
More file actions
223 lines (202 loc) · 8.35 KB
/
test_app_actor_user_token.py
File metadata and controls
223 lines (202 loc) · 8.35 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
import datetime
import json
import logging
from time import time
from typing import Optional
import pytest
from slack_sdk.oauth.installation_store import Installation, Bot
from slack_sdk.oauth.installation_store.async_installation_store import (
AsyncInstallationStore,
)
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.context.async_context import AsyncBoltContext
from slack_bolt.context.say.async_say import AsyncSay
from slack_bolt.oauth.async_oauth_settings import AsyncOAuthSettings
from slack_bolt.request.async_request import AsyncBoltRequest
from tests.mock_web_api_server import (
assert_received_request_count_async,
cleanup_mock_web_api_server_async,
assert_auth_test_count_async,
setup_mock_web_api_server_async,
)
from tests.utils import remove_os_env_temporarily, restore_os_env
class TestApp:
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(scope="function", autouse=True)
def setup_teardown(self):
old_os_env = remove_os_env_temporarily()
setup_mock_web_api_server_async(self)
try:
yield # run the test here
finally:
cleanup_mock_web_api_server_async(self)
restore_os_env(old_os_env)
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/json"],
"x-slack-signature": [self.generate_signature(body, timestamp)],
"x-slack-request-timestamp": [timestamp],
}
def build_request(self, team_id: str = "T014GJXU940") -> AsyncBoltRequest:
timestamp, body = str(int(time())), json.dumps(
{
"team_id": team_id,
"enterprise_id": "E013Y3SHLAY",
"context_team_id": team_id,
"context_enterprise_id": "E013Y3SHLAY",
"api_app_id": "A04TEM7H4S0",
"event": {
"type": "message",
"files": [],
"upload": False,
"user": "W013QGS7BPF",
"display_as_bot": False,
"team": team_id,
"channel": "C04T3ACM40K",
"subtype": "file_share",
},
"type": "event_callback",
"authorizations": [
{
"enterprise_id": None,
"team_id": "T0G9PQBBK",
"user_id": "W23456789",
"is_bot": True,
"is_enterprise_install": False,
}
],
"is_ext_shared_channel": True,
}
)
return AsyncBoltRequest(body=body, headers=self.build_headers(timestamp, body))
@pytest.mark.asyncio
async def test_authorize_result(self):
app = AsyncApp(
client=self.web_client,
signing_secret=self.signing_secret,
oauth_settings=AsyncOAuthSettings(
client_id="111.222",
client_secret="secret",
installation_store=MemoryInstallationStore(),
user_token_resolution="actor",
),
)
@app.event("message")
async def handle_events(context: AsyncBoltContext, say: AsyncSay):
assert context.actor_enterprise_id == "E013Y3SHLAY"
assert context.actor_team_id == "T014GJXU940"
assert context.actor_user_id == "W013QGS7BPF"
assert context.authorize_result.bot_id == "BZYBOTHED"
assert context.authorize_result.bot_user_id == "W23456789"
assert context.authorize_result.bot_token == "xoxb-valid-2"
assert context.authorize_result.bot_scopes == ["commands", "chat:write"]
assert context.authorize_result.user_id == "W99999"
assert context.authorize_result.user_token == "xoxp-valid-actor-based"
assert context.authorize_result.user_scopes == ["search:read", "chat:write"]
assert context.authorize_result.team_id == "T0G9PQBBK"
assert context.authorize_result.team == "Subarachnoid Workspace"
assert context.authorize_result.url == "https://subarachnoid.slack.com/"
await say("What's up?")
request = self.build_request()
response = await app.async_dispatch(request)
assert response.status == 200
await assert_auth_test_count_async(self, 2)
await assert_received_request_count_async(self, "/chat.postMessage", 1)
@pytest.mark.asyncio
async def test_authorize_result_no_user_token(self):
app = AsyncApp(
client=self.web_client,
signing_secret=self.signing_secret,
oauth_settings=AsyncOAuthSettings(
client_id="111.222",
client_secret="secret",
installation_store=MemoryInstallationStore(),
user_token_resolution="actor",
),
)
@app.event("message")
async def handle_events(context: AsyncBoltContext, say: AsyncSay):
assert context.actor_enterprise_id == "E013Y3SHLAY"
assert context.actor_team_id == "T11111"
assert context.actor_user_id == "W013QGS7BPF"
assert context.authorize_result.bot_id == "BZYBOTHED"
assert context.authorize_result.bot_user_id == "W23456789"
assert context.authorize_result.bot_token == "xoxb-valid-2"
assert context.authorize_result.bot_scopes == ["commands", "chat:write"]
assert context.authorize_result.user_id is None
assert context.authorize_result.user_token is None
assert context.authorize_result.user_scopes is None
await say("What's up?")
request = self.build_request(team_id="T11111")
response = await app.async_dispatch(request)
assert response.status == 200
await assert_auth_test_count_async(self, 1)
await assert_received_request_count_async(self, "/chat.postMessage", 1)
class MemoryInstallationStore(AsyncInstallationStore):
@property
def logger(self) -> logging.Logger:
return logging.getLogger(__name__)
async def async_save(self, installation: Installation):
pass
async def async_find_bot(
self,
*,
enterprise_id: Optional[str],
team_id: Optional[str],
is_enterprise_install: Optional[bool] = False,
) -> Optional[Bot]:
return Bot(
app_id="A111",
enterprise_id="E111",
team_id="T0G9PQBBK",
bot_token="xoxb-valid",
bot_id="B",
bot_user_id="W",
bot_scopes=["commands", "chat:write"],
installed_at=datetime.datetime.now().timestamp(),
)
async def async_find_installation(
self,
*,
enterprise_id: Optional[str],
team_id: Optional[str],
user_id: Optional[str] = None,
is_enterprise_install: Optional[bool] = False,
) -> Optional[Installation]:
if team_id == "T0G9PQBBK":
return Installation(
app_id="A111",
enterprise_id="E111",
team_id="T0G9PQBBK",
bot_token="xoxb-valid-2",
bot_id="B",
bot_user_id="W",
bot_scopes=["commands", "chat:write"],
user_id="W11111",
installed_at=datetime.datetime.now().timestamp(),
)
if team_id == "T014GJXU940" and enterprise_id == "E013Y3SHLAY":
return Installation(
app_id="A111",
enterprise_id="E013Y3SHLAY",
team_id="T014GJXU940",
user_id="W11111",
user_token="xoxp-valid-actor-based",
user_scopes=["search:read", "chat:write"],
installed_at=datetime.datetime.now().timestamp(),
)
return None