aboutsummaryrefslogtreecommitdiffstats
path: root/_pytest/test_render_blocks.py
blob: 13a20e9dec8f112aaa909e930a89a284c61e408d (plain) (blame)
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
from __future__ import print_function, unicode_literals

import pytest

import wee_slack


@pytest.mark.parametrize(
    "case",
    [
        {
            "blocks": [
                {
                    "type": "rich_text",
                    "block_id": "dhGA",
                    "elements": [
                        {
                            "type": "rich_text_section",
                            "elements": [
                                {"type": "text", "text": "normal "},
                                {
                                    "type": "text",
                                    "text": "bold",
                                    "style": {"bold": True},
                                },
                                {"type": "text", "text": " "},
                                {
                                    "type": "text",
                                    "text": "italic",
                                    "style": {"italic": True},
                                },
                                {"type": "text", "text": " "},
                                {
                                    "type": "text",
                                    "text": "strikethrough",
                                    "style": {"strike": True},
                                },
                                {"type": "text", "text": " "},
                                {
                                    "type": "text",
                                    "text": "bold-italic-strikethrough",
                                    "style": {
                                        "bold": True,
                                        "italic": True,
                                        "strike": True,
                                    },
                                },
                                {"type": "text", "text": " "},
                                {
                                    "type": "link",
                                    "url": "https://vg.no",
                                    "text": "link",
                                },
                                {"type": "text", "text": "\n"},
                            ],
                        },
                        {
                            "type": "rich_text_list",
                            "elements": [
                                {
                                    "type": "rich_text_section",
                                    "elements": [{"type": "text", "text": "number"}],
                                },
                                {
                                    "type": "rich_text_section",
                                    "elements": [{"type": "text", "text": "list"}],
                                },
                            ],
                            "style": "ordered",
                            "indent": 0,
                            "border": 0,
                        },
                        {
                            "type": "rich_text_quote",
                            "elements": [
                                {"type": "text", "text": "some quote\nmore quote"}
                            ],
                        },
                        {
                            "type": "rich_text_section",
                            "elements": [
                                {
                                    "type": "text",
                                    "text": "inline code",
                                    "style": {"code": True},
                                },
                                {"type": "text", "text": "\n"},
                            ],
                        },
                        {
                            "type": "rich_text_preformatted",
                            "elements": [
                                {"type": "text", "text": "block code\nmore code"}
                            ],
                            "border": 0,
                        },
                        {
                            "type": "rich_text_section",
                            "elements": [
                                {"type": "user", "user_id": "U407ABLLW"},
                                {"type": "text", "text": ": "},
                                {
                                    "type": "emoji",
                                    "name": "open_mouth",
                                    "unicode": "1f62e",
                                },
                            ],
                        },
                    ],
                }
            ],
            "rendered": [
                "normal <[color bold]>*bold*<[color -bold]> <[color italic]>_italic_"
                "<[color -italic]> ~strikethrough~ <[color bold]><[color italic]>"
                "*_~bold-italic-strikethrough~_*<[color -italic]><[color -bold]> "
                "https://vg.no (link)",
                "1. number",
                "2. list",
                "> some quote",
                "> more quote",
                "`inline code`",
                "```\nblock code\nmore code\n```",
                "@alice: :open_mouth:",
            ],
        },
        {
            "blocks": [
                {
                    "type": "rich_text",
                    "block_id": "D=pkP",
                    "elements": [
                        {
                            "type": "rich_text_list",
                            "elements": [
                                {
                                    "type": "rich_text_section",
                                    "elements": [{"type": "text", "text": "number"}],
                                }
                            ],
                            "style": "ordered",
                            "indent": 0,
                            "border": 0,
                        },
                        {
                            "type": "rich_text_list",
                            "elements": [
                                {
                                    "type": "rich_text_section",
                                    "elements": [{"type": "text", "text": "list"}],
                                }
                            ],
                            "style": "ordered",
                            "indent": 1,
                            "border": 0,
                        },
                        {
                            "type": "rich_text_list",
                            "elements": [
                                {
                                    "type": "rich_text_section",
                                    "elements": [{"type": "text", "text": "third"}],
                                }
                            ],
                            "style": "ordered",
                            "indent": 2,
                            "border": 0,
                        },
                        {
                            "type": "rich_text_list",
                            "elements": [
                                {
                                    "type": "rich_text_section",
                                    "elements": [
                                        {"type": "text", "text": "end number list"}
                                    ],
                                }
                            ],
                            "style": "ordered",
                            "indent": 0,
                            "offset": 1,
                            "border": 0,
                        },
                        {
                            "type": "rich_text_list",
                            "elements": [
                                {
                                    "type": "rich_text_section",
                                    "elements": [{"type": "text", "text": "bullet"}],
                                }
                            ],
                            "style": "bullet",
                            "indent": 0,
                            "border": 0,
                        },
                        {
                            "type": "rich_text_list",
                            "elements": [
                                {
                                    "type": "rich_text_section",
                                    "elements": [{"type": "text", "text": "list"}],
                                }
                            ],
                            "style": "bullet",
                            "indent": 1,
                            "border": 0,
                        },
                        {
                            "type": "rich_text_list",
                            "elements": [
                                {
                                    "type": "rich_text_section",
                                    "elements": [{"type": "text", "text": "third"}],
                                }
                            ],
                            "style": "bullet",
                            "indent": 2,
                            "border": 0,
                        },
                        {
                            "type": "rich_text_list",
                            "elements": [
                                {
                                    "type": "rich_text_section",
                                    "elements": [
                                        {"type": "text", "text": "end bullet list"}
                                    ],
                                }
                            ],
                            "style": "bullet",
                            "indent": 0,
                            "border": 0,
                        },
                    ],
                }
            ],
            "rendered": [
                "1. number",
                "    a. list",
                "        i. third",
                "2. end number list",
                "• bullet",
                "    ◦ list",
                "        ▪︎ third",
                "• end bullet list",
            ],
        },
        {
            "blocks": [
                {
                    "type": "rich_text",
                    "block_id": "usQpu",
                    "elements": [
                        {
                            "type": "rich_text_section",
                            "elements": [
                                {
                                    "type": "text",
                                    "text": "test ",
                                    "style": {"code": True},
                                },
                                {
                                    "type": "link",
                                    "url": "http://asdf.de",
                                    "text": "asdf.de",
                                    "style": {"code": True},
                                },
                                {
                                    "type": "text",
                                    "text": " asdf.de:443",
                                    "style": {"code": True},
                                },
                                {"type": "text", "text": "\n"},
                            ],
                        },
                        {
                            "type": "rich_text_preformatted",
                            "elements": [
                                {"type": "text", "text": "asdf.de\nasdf.de:443"}
                            ],
                            "border": 0,
                        },
                    ],
                }
            ],
            "rendered": [
                "`test asdf.de asdf.de:443`",
                "```\nasdf.de\nasdf.de:443\n```",
            ],
        },
        {
            "blocks": [
                {
                    "type": "rich_text",
                    "block_id": "vLtn",
                    "elements": [
                        {
                            "type": "rich_text_section",
                            "elements": [
                                {
                                    "type": "text",
                                    "text": "bold ",
                                    "style": {"bold": True},
                                },
                                {
                                    "type": "text",
                                    "text": "code ",
                                    "style": {"bold": True, "code": True},
                                },
                                {
                                    "type": "text",
                                    "text": "not bold ",
                                    "style": {"code": True},
                                },
                                {
                                    "type": "text",
                                    "text": "italic",
                                    "style": {"italic": True, "code": True},
                                },
                                {
                                    "type": "text",
                                    "text": " text",
                                    "style": {"italic": True},
                                },
                            ],
                        }
                    ],
                }
            ],
            "rendered": [
                "<[color bold]>*bold `code *<[color -bold]>not bold <[color italic]>_italic` text_<[color -italic]>",
            ],
        },
        {
            "blocks": [
                {
                    "type": "rich_text",
                    "block_id": "28L",
                    "elements": [
                        {
                            "type": "rich_text_section",
                            "elements": [
                                {
                                    "type": "text",
                                    "text": "bold and italic combined",
                                    "style": {"bold": True, "italic": True},
                                }
                            ],
                        }
                    ],
                }
            ],
            "rendered": [
                "<[color bold]><[color italic]>*_bold and italic combined_*<[color -italic]><[color -bold]>"
            ],
        },
        {
            "blocks": [
                {
                    "type": "rich_text",
                    "block_id": "M23r4",
                    "elements": [
                        {
                            "type": "rich_text_section",
                            "elements": [{"type": "color", "value": "#FFAA00"}],
                        }
                    ],
                }
            ],
            "rendered": ["#FFAA00 <[color 16755200]>■<[color reset]>"],
        },
    ],
)
def test_render_blocks(case):
    assert wee_slack.unfurl_blocks(case["blocks"]) == case["rendered"]