-
Notifications
You must be signed in to change notification settings - Fork 844
/
Copy pathtest_blocks.py
1120 lines (1029 loc) · 40.9 KB
/
test_blocks.py
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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import unittest
from typing import List
from slack_sdk.errors import SlackObjectFormationError
from slack_sdk.models.blocks import (
ActionsBlock,
ContextBlock,
DividerBlock,
ImageBlock,
SectionBlock,
InputBlock,
FileBlock,
Block,
CallBlock,
ButtonElement,
StaticSelectElement,
OverflowMenuElement,
ImageElement,
LinkButtonElement,
PlainTextObject,
MarkdownTextObject,
HeaderBlock,
VideoBlock,
Option,
RichTextBlock,
RichTextSectionElement,
RichTextListElement,
RichTextQuoteElement,
RichTextPreformattedElement,
RichTextElementParts,
)
from slack_sdk.models.blocks.basic_components import SlackFile
from . import STRING_3001_CHARS
# https://api.slack.com/reference/block-kit/blocks
class BlockTests(unittest.TestCase):
def test_parse(self):
input = {
"type": "section",
"text": {
"type": "mrkdwn",
"text": "A message *with some bold text* and _some italicized text_.",
},
"unexpected_field": "test",
"unexpected_fields": [1, 2, 3],
"unexpected_object": {"something": "wrong"},
}
block = Block.parse(input)
self.assertIsNotNone(block)
self.assertDictEqual(
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "A message *with some bold text* and _some italicized text_.",
},
},
block.to_dict(),
)
def test_eq(self):
self.assertEqual(Block(), Block())
self.assertEqual(Block(type="test"), Block(type="test"))
self.assertNotEqual(Block(type="test"), Block(type="another test"))
# ----------------------------------------------
# Section
# ----------------------------------------------
class SectionBlockTests(unittest.TestCase):
maxDiff = None
def test_document_1(self):
input = {
"type": "section",
"text": {
"type": "mrkdwn",
"text": "A message *with some bold text* and _some italicized text_.",
},
}
self.assertDictEqual(input, SectionBlock(**input).to_dict())
def test_document_2(self):
input = {
"type": "section",
"text": {
"text": "A message *with some bold text* and _some italicized text_.",
"type": "mrkdwn",
},
"fields": [
{"type": "mrkdwn", "text": "High"},
{"type": "plain_text", "emoji": True, "text": "String"},
],
}
self.assertDictEqual(input, SectionBlock(**input).to_dict())
def test_document_3(self):
input = {
"type": "section",
"text": {
"text": "*Sally* has requested you set the deadline for the Nano launch project",
"type": "mrkdwn",
},
"accessory": {
"type": "datepicker",
"action_id": "datepicker123",
"initial_date": "1990-04-28",
"placeholder": {"type": "plain_text", "text": "Select a date"},
},
}
self.assertDictEqual(input, SectionBlock(**input).to_dict())
def test_parse(self):
input = {
"type": "section",
"text": {
"type": "plain_text",
"text": "This is a plain text section block.",
"emoji": True,
},
}
self.assertDictEqual(input, SectionBlock(**input).to_dict())
def test_json(self):
self.assertDictEqual(
{
"text": {"text": "some text", "type": "mrkdwn"},
"block_id": "a_block",
"type": "section",
},
SectionBlock(text="some text", block_id="a_block").to_dict(),
)
self.assertDictEqual(
{
"text": {"text": "some text", "type": "mrkdwn"},
"fields": [
{"text": "field0", "type": "mrkdwn"},
{"text": "field1", "type": "mrkdwn"},
{"text": "field2", "type": "mrkdwn"},
{"text": "field3", "type": "mrkdwn"},
{"text": "field4", "type": "mrkdwn"},
],
"type": "section",
},
SectionBlock(text="some text", fields=[f"field{i}" for i in range(5)]).to_dict(),
)
button = LinkButtonElement(text="Click me!", url="https://example.com")
self.assertDictEqual(
{
"type": "section",
"text": {"text": "some text", "type": "mrkdwn"},
"accessory": button.to_dict(),
},
SectionBlock(text="some text", accessory=button).to_dict(),
)
def test_text_or_fields_populated(self):
with self.assertRaises(SlackObjectFormationError):
SectionBlock().to_dict()
def test_fields_length(self):
with self.assertRaises(SlackObjectFormationError):
SectionBlock(fields=[f"field{i}" for i in range(11)]).to_dict()
def test_issue_628(self):
elem = SectionBlock(text="1234567890" * 300)
elem.to_dict() # no exception
with self.assertRaises(SlackObjectFormationError):
elem = SectionBlock(text="1234567890" * 300 + "a")
elem.to_dict()
@classmethod
def build_slack_block(cls, msg1, msg2, data):
blocks = [
{
"type": "section",
"text": {"type": "mrkdwn", "text": f"*{msg1}*:\n{msg2}"},
},
{"type": "section", "fields": []},
]
names = list(set(data.keys()) - set("user_comments"))
fields = [{"type": "mrkdwn", "text": f"*{name}*:\n{data[name]}"} for name in names]
blocks[1]["fields"] = fields
return blocks
@classmethod
def build_slack_block_native(cls, msg1, msg2, data):
blocks: List[SectionBlock] = [
SectionBlock(text=MarkdownTextObject.parse(f"*{msg1}*:\n{msg2}")),
SectionBlock(fields=[]),
]
names: List[str] = list(set(data.keys()) - set("user_comments"))
fields = [MarkdownTextObject.parse(f"*{name}*:\n{data[name]}") for name in names]
blocks[1].fields = fields
return list(b.to_dict() for b in blocks)
def test_issue_500(self):
data = {
"first": "1",
"second": "2",
"third": "3",
"user_comments": {"first", "other"},
}
expected = self.build_slack_block("category", "tech", data)
actual = self.build_slack_block_native("category", "tech", data)
self.assertDictEqual({"blocks": expected}, {"blocks": actual})
# ----------------------------------------------
# Divider
# ----------------------------------------------
class DividerBlockTests(unittest.TestCase):
def test_document(self):
input = {"type": "divider"}
self.assertDictEqual(input, DividerBlock(**input).to_dict())
def test_json(self):
self.assertDictEqual({"type": "divider"}, DividerBlock().to_dict())
self.assertDictEqual({"type": "divider"}, DividerBlock(**{"type": "divider"}).to_dict())
def test_json_with_block_id(self):
self.assertDictEqual(
{"type": "divider", "block_id": "foo"},
DividerBlock(block_id="foo").to_dict(),
)
self.assertDictEqual(
{"type": "divider", "block_id": "foo"},
DividerBlock(**{"type": "divider", "block_id": "foo"}).to_dict(),
)
# ----------------------------------------------
# Image
# ----------------------------------------------
class ImageBlockTests(unittest.TestCase):
def test_document(self):
input = {
"type": "image",
"title": {
"type": "plain_text",
"text": "Please enjoy this photo of a kitten",
},
"block_id": "image4",
"image_url": "http://placekitten.com/500/500",
"alt_text": "An incredibly cute kitten.",
}
self.assertDictEqual(input, ImageBlock(**input).to_dict())
def test_issue_1369_title_type(self):
self.assertEqual(
"plain_text",
ImageBlock(
image_url="https://example.com/",
alt_text="example",
title="example",
).title.type,
)
self.assertEqual(
"plain_text",
ImageBlock(
image_url="https://example.com/",
alt_text="example",
title={
"type": "plain_text",
"text": "Please enjoy this photo of a kitten",
},
).title.type,
)
self.assertEqual(
"plain_text",
ImageBlock(
image_url="https://example.com/",
alt_text="example",
title=PlainTextObject(text="example"),
).title.type,
)
with self.assertRaises(SlackObjectFormationError):
self.assertEqual(
"plain_text",
ImageBlock(
image_url="https://example.com/",
alt_text="example",
title={
"type": "mrkdwn",
"text": "Please enjoy this photo of a kitten",
},
).title.type,
)
with self.assertRaises(SlackObjectFormationError):
self.assertEqual(
"plain_text",
ImageBlock(
image_url="https://example.com/",
alt_text="example",
title=MarkdownTextObject(text="example"),
).title.type,
)
def test_json(self):
self.assertDictEqual(
{
"image_url": "https://example.com",
"alt_text": "not really an image",
"type": "image",
},
ImageBlock(image_url="https://example.com", alt_text="not really an image").to_dict(),
)
def test_image_url_length(self):
with self.assertRaises(SlackObjectFormationError):
ImageBlock(image_url=STRING_3001_CHARS, alt_text="text").to_dict()
def test_alt_text_length(self):
with self.assertRaises(SlackObjectFormationError):
ImageBlock(image_url="https://example.com", alt_text=STRING_3001_CHARS).to_dict()
def test_title_length(self):
with self.assertRaises(SlackObjectFormationError):
ImageBlock(image_url="https://example.com", alt_text="text", title=STRING_3001_CHARS).to_dict()
def test_slack_file(self):
self.assertDictEqual(
{
"slack_file": {"url": "https://example.com"},
"alt_text": "not really an image",
"type": "image",
},
ImageBlock(slack_file=SlackFile(url="https://example.com"), alt_text="not really an image").to_dict(),
)
self.assertDictEqual(
{
"slack_file": {"id": "F11111"},
"alt_text": "not really an image",
"type": "image",
},
ImageBlock(slack_file=SlackFile(id="F11111"), alt_text="not really an image").to_dict(),
)
self.assertDictEqual(
{
"slack_file": {"url": "https://example.com"},
"alt_text": "not really an image",
"type": "image",
},
ImageBlock(slack_file={"url": "https://example.com"}, alt_text="not really an image").to_dict(),
)
self.assertDictEqual(
{
"slack_file": {"id": "F11111"},
"alt_text": "not really an image",
"type": "image",
},
ImageBlock(slack_file={"id": "F11111"}, alt_text="not really an image").to_dict(),
)
# ----------------------------------------------
# Actions
# ----------------------------------------------
class ActionsBlockTests(unittest.TestCase):
def test_document_1(self):
input = {
"type": "actions",
"block_id": "actions1",
"elements": [
{
"type": "static_select",
"placeholder": {
"type": "plain_text",
"text": "Which witch is the witchiest witch?",
},
"action_id": "select_2",
"options": [
{
"text": {"type": "plain_text", "text": "Matilda"},
"value": "matilda",
},
{
"text": {"type": "plain_text", "text": "Glinda"},
"value": "glinda",
},
{
"text": {"type": "plain_text", "text": "Granny Weatherwax"},
"value": "grannyWeatherwax",
},
{
"text": {"type": "plain_text", "text": "Hermione"},
"value": "hermione",
},
],
},
{
"type": "button",
"text": {"type": "plain_text", "text": "Cancel"},
"value": "cancel",
"action_id": "button_1",
},
],
}
self.assertDictEqual(input, ActionsBlock(**input).to_dict())
def test_document_2(self):
input = {
"type": "actions",
"block_id": "actionblock789",
"elements": [
{
"type": "datepicker",
"action_id": "datepicker123",
"initial_date": "1990-04-28",
"placeholder": {"type": "plain_text", "text": "Select a date"},
},
{
"type": "overflow",
"options": [
{
"text": {
"type": "plain_text",
"text": "*this is plain_text text*",
},
"value": "value-0",
},
{
"text": {
"type": "plain_text",
"text": "*this is plain_text text*",
},
"value": "value-1",
},
{
"text": {
"type": "plain_text",
"text": "*this is plain_text text*",
},
"value": "value-2",
},
{
"text": {
"type": "plain_text",
"text": "*this is plain_text text*",
},
"value": "value-3",
},
{
"text": {
"type": "plain_text",
"text": "*this is plain_text text*",
},
"value": "value-4",
},
],
"action_id": "overflow",
},
{
"type": "button",
"text": {"type": "plain_text", "text": "Click Me"},
"value": "click_me_123",
"action_id": "button",
},
],
}
self.assertDictEqual(input, ActionsBlock(**input).to_dict())
def test_json(self):
self.elements = [
ButtonElement(text="Click me", action_id="reg_button", value="1"),
LinkButtonElement(text="URL Button", url="https://example.com"),
]
self.dict_elements = []
for e in self.elements:
self.dict_elements.append(e.to_dict())
self.assertDictEqual(
{"elements": self.dict_elements, "type": "actions"},
ActionsBlock(elements=self.elements).to_dict(),
)
with self.assertRaises(SlackObjectFormationError):
ActionsBlock(elements=self.elements * 13).to_dict()
def test_element_parsing(self):
elements = [
ButtonElement(text="Click me", action_id="reg_button", value="1"),
StaticSelectElement(options=[Option(value="SelectOption")]),
ImageElement(image_url="url", alt_text="alt-text"),
OverflowMenuElement(options=[Option(value="MenuOption1"), Option(value="MenuOption2")]),
]
input = {
"type": "actions",
"block_id": "actionblock789",
"elements": [e.to_dict() for e in elements],
}
parsed_elements = ActionsBlock(**input).elements
self.assertEqual(len(elements), len(parsed_elements))
for original, parsed in zip(elements, parsed_elements):
self.assertEqual(type(original), type(parsed))
self.assertDictEqual(original.to_dict(), parsed.to_dict())
# ----------------------------------------------
# Context
# ----------------------------------------------
class ContextBlockTests(unittest.TestCase):
def test_document(self):
input = {
"type": "context",
"elements": [
{
"type": "image",
"image_url": "https://image.freepik.com/free-photo/red-drawing-pin_1156-445.jpg",
"alt_text": "images",
},
{"type": "mrkdwn", "text": "Location: **Dogpatch**"},
],
}
self.assertDictEqual(input, ContextBlock(**input).to_dict())
def test_basic_json(self):
self.elements = [
ImageElement(
image_url="https://api.slack.com/img/blocks/bkb_template_images/palmtree.png",
alt_text="palmtree",
),
PlainTextObject(text="Just text"),
]
e = {
"elements": [
{
"type": "image",
"image_url": "https://api.slack.com/img/blocks/bkb_template_images/palmtree.png",
"alt_text": "palmtree",
},
{"type": "plain_text", "text": "Just text"},
],
"type": "context",
}
d = ContextBlock(elements=self.elements).to_dict()
self.assertDictEqual(e, d)
with self.assertRaises(SlackObjectFormationError):
ContextBlock(elements=self.elements * 6).to_dict()
# ----------------------------------------------
# Input
# ----------------------------------------------
class InputBlockTests(unittest.TestCase):
def test_document(self):
blocks = [
{
"type": "input",
"element": {"type": "plain_text_input"},
"label": {"type": "plain_text", "text": "Label", "emoji": True},
},
{
"type": "input",
"element": {"type": "plain_text_input", "multiline": True},
"label": {"type": "plain_text", "text": "Label", "emoji": True},
},
{
"type": "input",
"element": {
"type": "datepicker",
"initial_date": "1990-04-28",
"placeholder": {
"type": "plain_text",
"text": "Select a date",
"emoji": True,
},
},
"label": {"type": "plain_text", "text": "Label", "emoji": True},
},
{
"type": "input",
"element": {
"type": "channels_select",
"placeholder": {
"type": "plain_text",
"text": "Select a channel",
"emoji": True,
},
},
"label": {"type": "plain_text", "text": "Label", "emoji": True},
},
{
"type": "input",
"element": {
"type": "multi_users_select",
"placeholder": {
"type": "plain_text",
"text": "Select users",
"emoji": True,
},
},
"label": {"type": "plain_text", "text": "Label", "emoji": True},
},
{
"type": "input",
"element": {
"type": "checkboxes",
"options": [
{
"text": {
"type": "plain_text",
"text": "*this is plain_text text*",
"emoji": True,
},
"value": "value-0",
},
{
"text": {
"type": "plain_text",
"text": "*this is plain_text text*",
"emoji": True,
},
"value": "value-1",
},
{
"text": {
"type": "plain_text",
"text": "*this is plain_text text*",
"emoji": True,
},
"value": "value-2",
},
],
},
"label": {"type": "plain_text", "text": "Label", "emoji": True},
},
{
"type": "input",
"element": {
"type": "plain_text_input",
},
"label": {
"type": "plain_text",
"text": "Label",
"emoji": True,
},
"hint": {
"type": "plain_text",
"text": "some hint",
"emoji": True,
},
},
{
"dispatch_action": True,
"type": "input",
"element": {
"type": "plain_text_input",
"action_id": "plain_text_input-action",
},
"label": {"type": "plain_text", "text": "Label", "emoji": True},
},
]
for input in blocks:
self.assertDictEqual(input, InputBlock(**input).to_dict())
# ----------------------------------------------
# File
# ----------------------------------------------
class FileBlockTests(unittest.TestCase):
def test_document(self):
input = {
"type": "file",
"external_id": "ABCD1",
"source": "remote",
}
self.assertDictEqual(input, FileBlock(**input).to_dict())
# ----------------------------------------------
# Call
# ----------------------------------------------
class CallBlockTests(unittest.TestCase):
def test_with_real_payload(self):
self.maxDiff = None
input = {
"type": "call",
"call_id": "R00000000",
"api_decoration_available": False,
"call": {
"v1": {
"id": "R00000000",
"app_id": "A00000000",
"app_icon_urls": {
"image_32": "https://www.example.com/",
"image_36": "https://www.example.com/",
"image_48": "https://www.example.com/",
"image_64": "https://www.example.com/",
"image_72": "https://www.example.com/",
"image_96": "https://www.example.com/",
"image_128": "https://www.example.com/",
"image_192": "https://www.example.com/",
"image_512": "https://www.example.com/",
"image_1024": "https://www.example.com/",
"image_original": "https://www.example.com/",
},
"date_start": 12345,
"active_participants": [
{"slack_id": "U00000000"},
{
"slack_id": "U00000000",
"external_id": "",
"avatar_url": "https://www.example.com/",
"display_name": "",
},
],
"all_participants": [
{"slack_id": "U00000000"},
{
"slack_id": "U00000000",
"external_id": "",
"avatar_url": "https://www.example.com/",
"display_name": "",
},
],
"display_id": "",
"join_url": "https://www.example.com/",
"name": "",
"created_by": "U00000000",
"date_end": 12345,
"channels": ["C00000000"],
"is_dm_call": False,
"was_rejected": False,
"was_missed": False,
"was_accepted": False,
"has_ended": False,
"desktop_app_join_url": "https://www.example.com/",
}
},
}
self.assertDictEqual(input, CallBlock(**input).to_dict())
self.assertDictEqual(input, Block.parse(input).to_dict())
# ----------------------------------------------
# Header
# ----------------------------------------------
class HeaderBlockTests(unittest.TestCase):
def test_document(self):
input = {
"type": "header",
"block_id": "budget-header",
"text": {"type": "plain_text", "text": "Budget Performance"},
}
self.assertDictEqual(input, HeaderBlock(**input).to_dict())
self.assertDictEqual(input, Block.parse(input).to_dict())
def test_text_length_150(self):
input = {
"type": "header",
"block_id": "budget-header",
"text": {"type": "plain_text", "text": "1234567890" * 15},
}
HeaderBlock(**input).validate_json()
def test_text_length_151(self):
input = {
"type": "header",
"block_id": "budget-header",
"text": {"type": "plain_text", "text": ("1234567890" * 15) + "1"},
}
with self.assertRaises(SlackObjectFormationError):
HeaderBlock(**input).validate_json()
# ----------------------------------------------
# Video
# ----------------------------------------------
class VideoBlockTests(unittest.TestCase):
def test_document(self):
input = {
"type": "video",
"title": {"type": "plain_text", "text": "How to use Slack.", "emoji": True},
"title_url": "https://www.youtube.com/watch?v=RRxQQxiM7AA",
"description": {
"type": "plain_text",
"text": "Slack is a new way to communicate with your team. "
"It's faster, better organized and more secure than email.",
"emoji": True,
},
"video_url": "https://www.youtube.com/embed/RRxQQxiM7AA?feature=oembed&autoplay=1",
"alt_text": "How to use Slack?",
"thumbnail_url": "https://i.ytimg.com/vi/RRxQQxiM7AA/hqdefault.jpg",
"author_name": "Arcado Buendia",
"provider_name": "YouTube",
"provider_icon_url": "https://a.slack-edge.com/80588/img/unfurl_icons/youtube.png",
}
self.assertDictEqual(input, VideoBlock(**input).to_dict())
self.assertDictEqual(input, Block.parse(input).to_dict())
def test_required(self):
input = {
"type": "video",
"title": {"type": "plain_text", "text": "How to use Slack.", "emoji": True},
"video_url": "https://www.youtube.com/embed/RRxQQxiM7AA?feature=oembed&autoplay=1",
"alt_text": "How to use Slack?",
"thumbnail_url": "https://i.ytimg.com/vi/RRxQQxiM7AA/hqdefault.jpg",
}
VideoBlock(**input).validate_json()
def test_required_error(self):
# title is missing
input = {
"type": "video",
"video_url": "https://www.youtube.com/embed/RRxQQxiM7AA?feature=oembed&autoplay=1",
"alt_text": "How to use Slack?",
"thumbnail_url": "https://i.ytimg.com/vi/RRxQQxiM7AA/hqdefault.jpg",
}
with self.assertRaises(SlackObjectFormationError):
VideoBlock(**input).validate_json()
def test_title_length_199(self):
input = {
"type": "video",
"title": {
"type": "plain_text",
"text": "1234567890" * 19 + "123456789",
},
"video_url": "https://www.youtube.com/embed/RRxQQxiM7AA?feature=oembed&autoplay=1",
"alt_text": "How to use Slack?",
"thumbnail_url": "https://i.ytimg.com/vi/RRxQQxiM7AA/hqdefault.jpg",
}
VideoBlock(**input).validate_json()
def test_title_length_200(self):
input = {
"type": "video",
"title": {
"type": "plain_text",
"text": "1234567890" * 20,
},
"video_url": "https://www.youtube.com/embed/RRxQQxiM7AA?feature=oembed&autoplay=1",
"alt_text": "How to use Slack?",
"thumbnail_url": "https://i.ytimg.com/vi/RRxQQxiM7AA/hqdefault.jpg",
}
with self.assertRaises(SlackObjectFormationError):
VideoBlock(**input).validate_json()
# ----------------------------------------------
# RichTextBlock
# ----------------------------------------------
class RichTextBlockTests(unittest.TestCase):
def test_document(self):
inputs = [
{
"type": "rich_text",
"elements": [
{
"type": "rich_text_section",
"elements": [{"type": "text", "text": "Hello there, I am a basic rich text block!"}],
}
],
},
{
"type": "rich_text",
"elements": [
{
"type": "rich_text_section",
"elements": [
{"type": "text", "text": "Hello there, "},
{"type": "text", "text": "I am a bold rich text block!", "style": {"bold": True}},
],
}
],
},
{
"type": "rich_text",
"elements": [
{
"type": "rich_text_section",
"elements": [
{"type": "text", "text": "Hello there, "},
{"type": "text", "text": "I am an italic rich text block!", "style": {"italic": True}},
],
}
],
},
{
"type": "rich_text",
"elements": [
{
"type": "rich_text_section",
"elements": [
{"type": "text", "text": "Hello there, "},
{"type": "text", "text": "I am a strikethrough rich text block!", "style": {"strike": True}},
],
}
],
},
]
for input in inputs:
self.assertDictEqual(input, RichTextBlock(**input).to_dict())
def test_complex(self):
self.maxDiff = None
dict_block = {
"type": "rich_text",
"block_id": "3Uk3Q",
"elements": [
{
"type": "rich_text_section",
"elements": [
{"type": "text", "text": "Hey!", "style": {"bold": True}},
{"type": "text", "text": " this is "},
{"type": "text", "text": "very", "style": {"strike": True}},
{"type": "text", "text": " rich text "},
{"type": "text", "text": "block", "style": {"code": True}},
{"type": "text", "text": " "},
{"type": "text", "text": "test", "style": {"italic": True}},
{"type": "link", "url": "https://slack.com", "text": "Slack website!"},
],
},
{
"type": "rich_text_list",
"elements": [
{"type": "rich_text_section", "elements": [{"type": "text", "text": "a"}]},
{"type": "rich_text_section", "elements": [{"type": "text", "text": "b"}]},
],
"style": "ordered",
"indent": 0,
"border": 0,
},
{
"type": "rich_text_list",
"elements": [{"type": "rich_text_section", "elements": [{"type": "text", "text": "bb"}]}],
"style": "ordered",
"indent": 1,
"border": 0,
},
{
"type": "rich_text_list",
"elements": [{"type": "rich_text_section", "elements": [{"type": "text", "text": "BBB"}]}],
"style": "ordered",
"indent": 2,
"border": 0,
},
{
"type": "rich_text_list",
"elements": [{"type": "rich_text_section", "elements": [{"type": "text", "text": "c"}]}],
"style": "ordered",
"indent": 0,
"offset": 2,
"border": 0,
},
{"type": "rich_text_section", "elements": [{"type": "text", "text": "\n"}]},
{
"type": "rich_text_list",
"elements": [
{"type": "rich_text_section", "elements": [{"type": "text", "text": "todo"}]},
{"type": "rich_text_section", "elements": [{"type": "text", "text": "todo"}]},
{"type": "rich_text_section", "elements": [{"type": "text", "text": "todo"}]},
],
"style": "bullet",
"indent": 0,
"border": 0,
},
{"type": "rich_text_section", "elements": [{"type": "text", "text": "\n"}]},
{"type": "rich_text_quote", "elements": [{"type": "text", "text": "this is very important"}]},
{
"type": "rich_text_preformatted",
"elements": [{"type": "text", "text": 'print("Hello world")'}],
"border": 0,
},
{
"type": "rich_text_section",
"elements": [