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
|
import pytest
import wee_slack
@pytest.mark.parametrize(
"case",
[
{
"input_message": {
"blocks": [
{
"type": "rich_text",
"block_id": "5Cg6",
"elements": [
{
"type": "rich_text_section",
"elements": [
{
"type": "emoji",
"name": "smile",
"unicode": "1f604",
}
],
},
],
},
],
"reactions": [{"name": "eyes", "users": ["U01E8P3JKM1"], "count": 1}],
},
"rendered": (
# Should be just <emoji>
"\U0001f604 <[color darkgray]>[\U0001f4401]<[color reset]>"
),
},
{
"input_message": {
"blocks": [
{
"type": "rich_text",
"block_id": "5Cg6",
"elements": [
{
"type": "rich_text_section",
"elements": [
{
"type": "emoji",
"name": "smile",
"unicode": "1f604",
}
],
},
],
},
],
"reactions": [{"name": "eyes", "users": ["U01E8P3JKM1"], "count": 1}],
},
"rendered": (
# Should be just :<emoji name>:
":smile: <[color darkgray]>[:eyes:1]<[color reset]>"
),
"render_emoji_as_string": True,
},
{
"input_message": {
"blocks": [
{
"type": "rich_text",
"block_id": "5Cg6",
"elements": [
{
"type": "rich_text_section",
"elements": [
{
"type": "emoji",
"name": "smile",
"unicode": "1f604",
}
],
},
],
},
],
"reactions": [{"name": "eyes", "users": ["U01E8P3JKM1"], "count": 1}],
},
"rendered": (
# Should be <emoji> (:<emoji name>:)
"\U0001f604 (:smile:) <[color darkgray]>[\U0001f440 (:eyes:)1]<[color reset]>"
),
"render_emoji_as_string": "both",
},
],
)
def test_render_message(case, channel_general):
wee_slack.EMOJI, wee_slack.EMOJI_WITH_SKIN_TONES_REVERSE = wee_slack.load_emoji()
wee_slack.config.render_emoji_as_string = case.get("render_emoji_as_string")
message_json = {"ts": str(wee_slack.SlackTS()), **case["input_message"]}
message = wee_slack.SlackMessage("normal", message_json, channel_general)
result = message.render()
assert result == case["rendered"]
|