forked from slackapi/bolt-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_app.py
More file actions
189 lines (160 loc) · 5.93 KB
/
test_app.py
File metadata and controls
189 lines (160 loc) · 5.93 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
import pytest
from slack_sdk import WebClient
from slack_sdk.oauth.installation_store import FileInstallationStore
from slack_sdk.oauth.state_store import FileOAuthStateStore
from slack_bolt import App, Say
from slack_bolt.authorization import AuthorizeResult
from slack_bolt.error import BoltError
from slack_bolt.oauth import OAuthFlow
from slack_bolt.oauth.oauth_settings import OAuthSettings
from tests.mock_web_api_server import (
setup_mock_web_api_server,
cleanup_mock_web_api_server,
)
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"
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)
@staticmethod
def handle_app_mention(body, say: Say, payload, event):
assert body["event"] == payload
assert payload == event
say("What's up?")
# --------------------------
# basic tests
# --------------------------
def test_signing_secret_absence(self):
with pytest.raises(BoltError):
App(signing_secret=None, token="xoxb-xxx")
with pytest.raises(BoltError):
App(signing_secret="", token="xoxb-xxx")
def simple_listener(self, ack):
ack()
def test_listener_registration_error(self):
app = App(signing_secret="valid", client=self.web_client)
with pytest.raises(BoltError):
app.action({"type": "invalid_type", "action_id": "a"})(self.simple_listener)
# --------------------------
# single team auth
# --------------------------
def test_valid_single_auth(self):
app = App(signing_secret="valid", client=self.web_client)
assert app != None
def test_token_absence(self):
with pytest.raises(BoltError):
App(signing_secret="valid", token=None)
with pytest.raises(BoltError):
App(signing_secret="valid", token="")
def test_token_verification_enabled_False(self):
App(
signing_secret="valid",
client=self.web_client,
token_verification_enabled=False,
)
App(
signing_secret="valid",
token="xoxb-invalid",
token_verification_enabled=False,
)
assert self.mock_received_requests.get("/auth.test") is None
# --------------------------
# multi teams auth
# --------------------------
def test_valid_multi_auth(self):
app = App(
signing_secret="valid",
oauth_settings=OAuthSettings(client_id="111.222", client_secret="valid"),
)
assert app != None
def test_valid_multi_auth_oauth_flow(self):
oauth_flow = OAuthFlow(
settings=OAuthSettings(
client_id="111.222",
client_secret="valid",
installation_store=FileInstallationStore(),
state_store=FileOAuthStateStore(expiration_seconds=120),
)
)
app = App(signing_secret="valid", oauth_flow=oauth_flow)
assert app != None
def test_valid_multi_auth_client_id_absence(self):
with pytest.raises(BoltError):
App(
signing_secret="valid",
oauth_settings=OAuthSettings(client_id=None, client_secret="valid"),
)
def test_valid_multi_auth_secret_absence(self):
with pytest.raises(BoltError):
App(
signing_secret="valid",
oauth_settings=OAuthSettings(client_id="111.222", client_secret=None),
)
def test_authorize_conflicts(self):
oauth_settings = OAuthSettings(
client_id="111.222",
client_secret="valid",
installation_store=FileInstallationStore(),
state_store=FileOAuthStateStore(expiration_seconds=120),
)
# no error with this
App(signing_secret="valid", oauth_settings=oauth_settings)
def authorize() -> AuthorizeResult:
return AuthorizeResult(enterprise_id="E111", team_id="T111")
with pytest.raises(BoltError):
App(
signing_secret="valid",
authorize=authorize,
oauth_settings=oauth_settings,
)
oauth_flow = OAuthFlow(settings=oauth_settings)
# no error with this
App(signing_secret="valid", oauth_flow=oauth_flow)
with pytest.raises(BoltError):
App(signing_secret="valid", authorize=authorize, oauth_flow=oauth_flow)
def test_installation_store_conflicts(self):
store1 = FileInstallationStore()
store2 = FileInstallationStore()
app = App(
signing_secret="valid",
oauth_settings=OAuthSettings(
client_id="111.222",
client_secret="valid",
installation_store=store1,
),
installation_store=store2,
)
assert app.installation_store is store1
app = App(
signing_secret="valid",
oauth_flow=OAuthFlow(
settings=OAuthSettings(
client_id="111.222",
client_secret="valid",
installation_store=store1,
)
),
installation_store=store2,
)
assert app.installation_store is store1
app = App(
signing_secret="valid",
oauth_flow=OAuthFlow(
settings=OAuthSettings(
client_id="111.222",
client_secret="valid",
)
),
installation_store=store1,
)
assert app.installation_store is store1