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
|
from __future__ import annotations
import importlib
import importlib.machinery
import json
import sys
from typing import TYPE_CHECKING, Union
import pytest
if TYPE_CHECKING:
from slack_api.slack_conversations_history import (
SlackConversationsHistorySuccessResponse,
)
from slack_api.slack_conversations_info import (
SlackConversationsInfo,
SlackConversationsInfoSuccessResponse,
)
from slack_api.slack_users_info import SlackUserInfo, SlackUserInfoSuccessResponse
# Copied from https://stackoverflow.com/a/72721573
def import_stub(stubs_path: str, module_name: str):
sys.path_hooks.insert(
0,
importlib.machinery.FileFinder.path_hook(
(importlib.machinery.SourceFileLoader, [".pyi"])
),
)
sys.path.insert(0, stubs_path)
try:
return importlib.import_module(module_name)
finally:
sys.path.pop(0)
sys.path_hooks.pop(0)
import_stub("typings", "weechat")
import weechat
from slack.config import SlackConfig
from slack.shared import shared
from slack.slack_conversation import SlackConversation
from slack.slack_emoji import load_standard_emojis
from slack.slack_message import PendingMessageItem, SlackMessage
from slack.slack_user import SlackUser
from slack.slack_workspace import SlackWorkspace
from slack.task import Future
def config_new_option(
config_file: str,
section: str,
name: str,
type: str,
description: str,
string_values: str,
min: int,
max: int,
default_value: Union[str, None],
value: Union[str, None],
null_value_allowed: int,
callback_check_value: str,
callback_check_value_data: str,
callback_change: str,
callback_change_data: str,
callback_delete: str,
callback_delete_data: str,
) -> str:
return name
def config_integer(option: str) -> int:
return 1
def config_string(option: str) -> str:
return "_"
def config_color(option: str) -> str:
return f"<[config_color:{option}]>"
def color(option: str) -> str:
return f"<[color:{option}]>"
weechat.config_new_option = config_new_option
weechat.config_integer = config_integer
weechat.config_string = config_string
weechat.config_color = config_color
weechat.color = color
shared.weechat_version = 0x03080000
shared.weechat_callbacks = {}
shared.standard_emojis = load_standard_emojis()
color_channel_mention = "<[color:<[config_color:channel_mention]>]>"
color_user_mention = "<[color:<[config_color:user_mention]>]>"
color_usergroup_mention = "<[color:<[config_color:usergroup_mention]>]>"
color_reset = "<[color:reset]>"
with open("mock_data/slack_users_info_person.json") as f:
user_test1_info_response: SlackUserInfoSuccessResponse[SlackUserInfo] = json.loads(
f.read()
)
user_test1_info = user_test1_info_response["user"]
user_test1_id = user_test1_info["id"]
with open("mock_data/slack_conversations_info_channel_public.json") as f:
channel_public_info_response: SlackConversationsInfoSuccessResponse[
SlackConversationsInfo
] = json.loads(f.read())
channel_public_info = channel_public_info_response["channel"]
channel_public_id = channel_public_info["id"]
@pytest.fixture
def workspace():
shared.config = SlackConfig()
w = SlackWorkspace("workspace_name")
w.id = "T0FC8BFQR"
user_test1 = SlackUser(w, user_test1_info)
user_test1_future = Future[SlackUser]()
user_test1_future.set_result(user_test1)
w.my_user = user_test1
w.users[user_test1_id] = user_test1_future
channel_public = SlackConversation(w, channel_public_info)
channel_public_future = Future[SlackConversation]()
channel_public_future.set_result(channel_public)
w.conversations[channel_public_id] = channel_public_future
return w
@pytest.fixture
def channel_public(workspace: SlackWorkspace):
return workspace.conversations[channel_public_id].result()
@pytest.fixture
def message1_in_channel_public(channel_public: SlackConversation):
with open("mock_data/slack_conversations_history_channel_public.json") as f:
history_response: SlackConversationsHistorySuccessResponse = json.loads(
f.read()
)
return SlackMessage(channel_public, history_response["messages"][0])
def resolve_pending_message_item(item: Union[str, PendingMessageItem]) -> str:
if isinstance(item, str):
return item
coroutine = item.resolve()
with pytest.raises(StopIteration) as excinfo:
coroutine.send(None)
return excinfo.value.value
|