forked from slackapi/bolt-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_authorize.py
More file actions
209 lines (176 loc) · 6.18 KB
/
test_authorize.py
File metadata and controls
209 lines (176 loc) · 6.18 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
import json
from time 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 slack_bolt.authorization import AuthorizeResult
from tests.mock_web_api_server import (
setup_mock_web_api_server,
cleanup_mock_web_api_server,
assert_auth_test_count,
)
from tests.utils import remove_os_env_temporarily, restore_os_env
valid_token = "xoxb-valid"
valid_user_token = "xoxp-valid"
def authorize(enterprise_id, team_id, user_id, client: WebClient):
assert enterprise_id == "E111"
assert team_id == "T111"
assert user_id == "W99999"
auth_test = client.auth_test(token=valid_token)
return AuthorizeResult.from_auth_test_response(
auth_test_response=auth_test,
bot_token=valid_token,
)
def user_authorize(enterprise_id, team_id, user_id, client: WebClient):
assert enterprise_id == "E111"
assert team_id == "T111"
assert user_id == "W99999"
auth_test = client.auth_test(token=valid_user_token)
return AuthorizeResult.from_auth_test_response(
auth_test_response=auth_test,
user_token=valid_user_token,
)
def error_authorize(enterprise_id, team_id, user_id):
assert enterprise_id == "E111"
assert team_id == "T111"
assert user_id == "W99999"
return None
class TestAuthorize:
signing_secret = "secret"
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)
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:
timestamp = str(int(time()))
return BoltRequest(
body=raw_body, headers=self.build_headers(timestamp, raw_body)
)
def test_success(self):
app = App(
client=self.web_client,
authorize=authorize,
signing_secret=self.signing_secret,
)
app.action("a")(simple_listener)
request = self.build_valid_request()
response = app.dispatch(request)
assert response.status == 200
assert response.body == ""
assert_auth_test_count(self, 1)
def test_failure(self):
app = App(
client=self.web_client,
authorize=error_authorize,
signing_secret=self.signing_secret,
)
app.action("a")(simple_listener)
request = self.build_valid_request()
response = app.dispatch(request)
assert response.status == 200
assert response.body == ":x: Please install this app into the workspace :bow:"
assert self.mock_received_requests.get("/auth.test") == None
def test_bot_context_attributes(self):
app = App(
client=self.web_client,
authorize=authorize,
signing_secret=self.signing_secret,
)
app.action("a")(assert_bot_context_attributes)
request = self.build_valid_request()
response = app.dispatch(request)
assert response.status == 200
assert response.body == ""
assert_auth_test_count(self, 1)
def test_user_context_attributes(self):
app = App(
client=self.web_client,
authorize=user_authorize,
signing_secret=self.signing_secret,
)
app.action("a")(assert_user_context_attributes)
request = self.build_valid_request()
response = app.dispatch(request)
assert response.status == 200
assert response.body == ""
assert_auth_test_count(self, 1)
body = {
"type": "block_actions",
"user": {
"id": "W99999",
"username": "primary-owner",
"name": "primary-owner",
"team_id": "T111",
},
"api_app_id": "A111",
"token": "verification_token",
"container": {
"type": "message",
"message_ts": "111.222",
"channel_id": "C111",
"is_ephemeral": True,
},
"trigger_id": "111.222.valid",
"team": {
"id": "T111",
"domain": "workspace-domain",
"enterprise_id": "E111",
"enterprise_name": "Sandbox Org",
},
"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", "emoji": True},
"value": "click_me_123",
"type": "button",
"action_ts": "1596530385.194939",
}
],
}
raw_body = f"payload={quote(json.dumps(body))}"
def simple_listener(ack, body, payload, action):
assert body["trigger_id"] == "111.222.valid"
assert body["actions"][0] == payload
assert payload == action
assert action["action_id"] == "a"
ack()
def assert_bot_context_attributes(ack, context):
assert context["bot_id"] == "BZYBOTHED"
assert context["bot_user_id"] == "W23456789"
assert context["bot_token"] == "xoxb-valid"
assert context["token"] == "xoxb-valid"
assert context["user_id"] == "W99999"
assert context.get("user_token") is None
ack()
def assert_user_context_attributes(ack, context):
assert context.get("bot_id") is None
assert context.get("bot_user_id") is None
assert context.get("bot_token") is None
assert context["token"] == "xoxp-valid"
assert context["user_id"] == "W99999"
assert context["user_token"] == "xoxp-valid"
ack()