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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
|
;;; mastodon-tl-test.el --- Tests for mastodon-tl.el -*- lexical-binding: nil -*-
(require 'cl-lib)
(require 'cl-macs)
(require 'el-mock)
(defconst mastodon-tl-test-base-toot
'((id . 61208)
(created_at . "2017-04-24T19:01:02.000Z")
(in_reply_to_id)
(in_reply_to_account_id)
(sensitive . :json-false)
(spoiler_text . "")
(visibility . "public")
(account (id . 42)
(username . "acct42")
(acct . "acct42@example.space")
(display_name . "Account 42")
(locked . :json-false)
(created_at . "2017-04-01T00:00:00.000Z")
(followers_count . 99)
(following_count . 13)
(statuses_count . 101)
(note . "E"))
(media_attachments . [])
(mentions . [])
(tags . [])
(uri . "tag:example.space,2017-04-24:objectId=654321:objectType=Status")
(url . "https://example.space/users/acct42/updates/123456789")
(content . "<p>Just some text</p>")
(reblogs_count . 0)
(favourites_count . 0)
(reblog))
"A sample toot (parsed json)")
(defconst mastodon-tl-test-base-boosted-toot
'((id . 61208)
(created_at . "2017-04-24T20:59:59.000Z")
(in_reply_to_id)
(in_reply_to_account_id)
(sensitive . :json-false)
(spoiler_text . "")
(visibility . "public")
(account (id . 42)
(username . "acct42")
(acct . "acct42@example.space")
(display_name . "Account 42")
(locked . :json-false)
(created_at . "2017-04-01T00:00:00.000Z")
(followers_count . 99)
(following_count . 13)
(statuses_count . 101)
(note . "E"))
(media_attachments . [])
(mentions . [])
(tags . [])
(uri . "tag:example.space,2017-04-24:objectId=654321:objectType=Status")
(url . "https://example.space/users/acct42/updates/123456789")
(reblogs_count . 0)
(favourites_count . 0)
(reblog (id . 4543919)
(created_at . "2017-04-24T19:01:02.000Z")
(in_reply_to_id)
(in_reply_to_account_id)
(sensitive . :json-false)
(spoiler_text . "")
(visibility . "public")
(application)
(account (id . 43)
(username . "acct43")
(acct . "acct43@example.space")
(display_name . "Account 43")
(locked . :json-false)
(created_at . "2017-04-02T00:00:00.000Z")
(followers_count . 1)
(following_count . 1)
(statuses_count . 1)
(note . "Other account"))
(media_attachments . [])
(mentions . [((url . "https://mastodon.social/@johnson")
(acct . "acct42")
(id . 42)
(username . "acct42"))])
(tags . [])
(uri . "tag:example.space,2017-04-24:objectId=654321:objectType=Status")
(content . "<p><span class=\"h-card\"><a href=\"https://example.space/@acct42\">@<span>acct42</span></a></span> boost</p>")
(url . "https://example.space/users/acct42/updates/123456789")
(reblogs_count . 1)
(favourites_count . 1)
(favourited)
(reblogged)))
"A sample reblogged/boosted toot (parsed json)")
(defconst mastodon-tl--follow-notify-true-response
"HTTP/1.1 200 OK
Date: Mon, 20 Dec 2021 13:42:29 GMT
Content-Type: application/json; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Server: Mastodon
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Permissions-Policy: interest-cohort=()
X-RateLimit-Limit: 300
X-RateLimit-Remaining: 298
X-RateLimit-Reset: 2021-12-20T13:45:00.630990Z
Cache-Control: no-store
Vary: Accept, Accept-Encoding, Origin
ETag: W/\"bee52f489c87e9a305e5d0b7bdca7ac1\"
X-Request-Id: 5be9a64e-7d97-41b4-97f3-17b5e972a675
X-Runtime: 0.371914
Strict-Transport-Security: max-age=63072000; includeSubDomains
Strict-Transport-Security: max-age=31536000
{\"id\":\"123456789\",\"following\":true,\"showing_reblogs\":true,\"notifying\":true,\"followed_by\":true,\"blocking\":false,\"blocked_by\":false,\"muting\":false,\"muting_notifications\":false,\"requested\":false,\"domain_blocking\":false,\"endorsed\":false,\"note\":\"\"}")
(defconst mastodon-tl--follow-notify-false-response
"HTTP/1.1 200 OK
Date: Mon, 20 Dec 2021 13:42:29 GMT
Content-Type: application/json; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Server: Mastodon
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Permissions-Policy: interest-cohort=()
X-RateLimit-Limit: 300
X-RateLimit-Remaining: 298
X-RateLimit-Reset: 2021-12-20T13:45:00.630990Z
Cache-Control: no-store
Vary: Accept, Accept-Encoding, Origin
ETag: W/\"bee52f489c87e9a305e5d0b7bdca7ac1\"
X-Request-Id: 5be9a64e-7d97-41b4-97f3-17b5e972a675
X-Runtime: 0.371914
Strict-Transport-Security: max-age=63072000; includeSubDomains
Strict-Transport-Security: max-age=31536000
{\"id\":\"123456789\",\"following\":true,\"showing_reblogs\":true,\"notifying\":false,\"followed_by\":true,\"blocking\":false,\"blocked_by\":false,\"muting\":false,\"muting_notifications\":false,\"requested\":false,\"domain_blocking\":false,\"endorsed\":false,\"note\":\"\"}")
(ert-deftest mastodon-tl--remove-html-1 ()
"Should remove all <span> tags."
(let ((input "<span class=\"h-card\">foobar</span> <span>foobaz</span>"))
(should (string= (mastodon-tl--remove-html input) "foobar foobaz"))))
(ert-deftest mastodon-tl--remove-html-2 ()
"Should replace <\p> tags with two new lines."
(let ((input "foobar</p>"))
(should (string= (mastodon-tl--remove-html input) "foobar\n\n"))))
(ert-deftest mastodon-tl--toot-id-boosted ()
"If a toot is boostedm, return the reblog id."
(should (string= (mastodon-tl--as-string
(mastodon-tl--toot-id mastodon-tl-test-base-boosted-toot))
"4543919")))
(ert-deftest mastodon-tl--toot-id ()
"If a toot is boostedm, return the reblog id."
(should (string= (mastodon-tl--as-string
(mastodon-tl--toot-id mastodon-tl-test-base-toot))
"61208")))
(ert-deftest mastodon-tl--as-string-1 ()
"Should accept a string or number and return a string."
(let ((id "1000"))
(should (string= (mastodon-tl--as-string id) id))))
(ert-deftest mastodon-tl--as-string-2 ()
"Should accept a string or number and return a string."
(let ((id 1000))
(should (string= (mastodon-tl--as-string id) (number-to-string id)))))
(ert-deftest mastodon-tl--more-json ()
"Should request toots older than max_id."
(let ((mastodon-instance-url "https://instance.url"))
(with-mock
(mock (mastodon-http--get-json "https://instance.url/api/v1/timelines/foo"
'(("max_id" . "12345"))))
(mastodon-tl--more-json "timelines/foo" "12345"))))
(ert-deftest mastodon-tl--more-json-id-string ()
"Should request toots older than max_id.
`mastodon-tl--more-json' should accept and id that is either
a string or a numeric."
(let ((mastodon-instance-url "https://instance.url"))
(with-mock
(mock (mastodon-http--get-json "https://instance.url/api/v1/timelines/foo"
'(("max_id" . "12345"))))
(mastodon-tl--more-json "timelines/foo" "12345"))))
(ert-deftest mastodon-tl--update-json-id-string ()
"Should request toots more recent than since_id.
`mastodon-tl--updated-json' should accept and id that is either
a string or a numeric."
(let ((mastodon-instance-url "https://instance.url"))
(with-mock
(mock (mastodon-http--get-json "https://instance.url/api/v1/timelines/foo"
'(("since_id" . "12345"))))
(mastodon-tl--updated-json "timelines/foo" "12345"))))
(ert-deftest mastodon-tl--relative-time-description ()
"Should format relative time as expected"
(cl-labels ((minutes (n) (* n 60))
(hours (n) (* n (minutes 60)))
(days (n) (* n (hours 24)))
(weeks (n) (* n (days 7)))
(years (n) (* n (days 365)))
(format-seconds-since (seconds)
(let ((timestamp (time-subtract (current-time) (seconds-to-time seconds))))
(mastodon-tl--relative-time-description timestamp)))
(check (seconds expected)
(should (string= (format-seconds-since seconds) expected))))
(check 1 "less than a minute ago")
(check 59 "less than a minute ago")
(check 60 "one minute ago")
(check 89 "one minute ago") ;; rounding down
(check 91 "2 minutes ago") ;; rounding up
(check (minutes 3.49) "3 minutes ago") ;; rounding down
(check (minutes 3.52) "4 minutes ago")
(check (minutes 59) "59 minutes ago")
(check (minutes 60) "one hour ago")
(check (minutes 89) "one hour ago")
(check (minutes 91) "2 hours ago")
(check (hours 3.49) "3 hours ago") ;; rounding down
(check (hours 3.51) "4 hours ago") ;; rounding down
(check (hours 23.4) "23 hours ago")
(check (hours 23.6) "one day ago") ;; rounding up
(check (days 1.48) "one day ago") ;; rounding down
(check (days 1.52) "2 days ago") ;; rounding up
(check (days 6.6) "one week ago") ;; rounding up
(check (weeks 2.49) "2 weeks ago") ;; rounding down
(check (weeks 2.51) "3 weeks ago") ;; rounding down
(check (1- (weeks 52)) "52 weeks ago")
(check (weeks 52) "one year ago")
(check (years 2.49) "2 years ago") ;; rounding down
(check (years 2.51) "3 years ago") ;; rounding down
))
(ert-deftest mastodon-tl--relative-time-details--next-update ()
"Should calculate the next update time information as expected"
(let ((current-time (current-time)))
(cl-labels ((minutes (n) (* n 60))
(hours (n) (* n (minutes 60)))
(days (n) (* n (hours 24)))
(weeks (n) (* n (days 7)))
(years (n) (* n (days 365.25)))
(next-update (seconds-ago)
(let* ((timestamp (time-subtract current-time
(seconds-to-time seconds-ago))))
(cdr (mastodon-tl--relative-time-details timestamp current-time))))
(check (seconds-ago)
(let* ((timestamp (time-subtract current-time (seconds-to-time seconds-ago)))
(at-now (mastodon-tl--relative-time-description timestamp current-time))
(at-one-second-before (mastodon-tl--relative-time-description
timestamp
(time-subtract (next-update seconds-ago)
(seconds-to-time 1))))
(at-result (mastodon-tl--relative-time-description
timestamp
(next-update seconds-ago))))
(when nil ;; change to t to debug test failures
(prin1 (format "\nFor %s: %s / %s"
seconds-ago
(time-to-seconds
(time-subtract (next-update seconds-ago)
timestamp))
(round
(time-to-seconds
(time-subtract (next-update seconds-ago)
current-time))))))
;; a second earlier the description is the same as at current time
(should (string= at-now at-one-second-before))
;; but at the result time it is different
(should-not (string= at-one-second-before at-result)))))
(check 0)
(check 1)
(check 59)
(check 60)
(check 89)
(check 90)
(check 149)
(check 150)
(check (1- (hours 1.5))) ;; just before we switch from "one hour" to "2 hours"
(check (hours 1.5))
(check (hours 2.1))
(check (1- (hours 23.5))) ;; just before "23 hours" -> "one day"
(check (hours 23.5))
(check (1- (days 1.5))) ;; just before "one day" -> "2 days"
(check (days 1.5)) ;; just before "one day" -> "2 days"
(check (days 2.1))
(check (1- (days 6.5))) ;; just before "6 days" -> "one week"
(check (days 6.5)) ;; "one week" -> "2 weeks"
(check (weeks 2.1))
(check (1- (weeks 52))) ;; just before "52 weeks" -> "one year"
(check (weeks 52))
(check (days 365))
(check (days 366))
(check (years 2.1))
)))
(ert-deftest mastodon-tl--byline-regular ()
"Should format the regular toot correctly."
(let ((mastodon-tl--show-avatars-p nil)
(timestamp (cdr (assoc 'created_at mastodon-tl-test-base-toot))))
(with-mock
(mock (date-to-time timestamp) => '(22782 21551))
(mock (format-time-string mastodon-toot-timestamp-format '(22782 21551)) => "2999-99-99 00:11:22")
(let ((byline (mastodon-tl--byline mastodon-tl-test-base-toot
'mastodon-tl--byline-author
'mastodon-tl--byline-boosted))
(handle-location 20))
(should (string= (substring-no-properties
byline)
"Account 42 (@acct42@example.space) 2999-99-99 00:11:22
------------
"))
(should (eq (get-text-property handle-location 'mastodon-tab-stop byline)
'user-handle))
(should (string= (get-text-property handle-location 'mastodon-handle byline)
"@acct42@example.space"))
(should (equal (get-text-property handle-location 'help-echo byline)
"Browse user profile of @acct42@example.space"))))))
(ert-deftest mastodon-tl--byline-regular-with-avatar ()
"Should format the regular toot correctly."
(let ((mastodon-tl--show-avatars-p t)
(timestamp (cdr (assoc 'created_at mastodon-tl-test-base-toot))))
(with-mock
(stub create-image => '(image "fake data"))
(mock (date-to-time timestamp) => '(22782 21551))
(mock (format-time-string mastodon-toot-timestamp-format '(22782 21551)) => "2999-99-99 00:11:22")
(should (string= (substring-no-properties
(mastodon-tl--byline mastodon-tl-test-base-toot
'mastodon-tl--byline-author
'mastodon-tl--byline-boosted))
"Account 42 (@acct42@example.space) 2999-99-99 00:11:22
------------
")))))
(ert-deftest mastodon-tl--byline-boosted ()
"Should format the boosted toot correctly."
(let* ((mastodon-tl--show-avatars-p nil)
(toot (cons '(reblogged . t) mastodon-tl-test-base-toot))
(timestamp (cdr (assoc 'created_at toot))))
(with-mock
(mock (date-to-time timestamp) => '(22782 21551))
(mock (format-time-string mastodon-toot-timestamp-format '(22782 21551)) => "2999-99-99 00:11:22")
(should (string= (substring-no-properties
(mastodon-tl--byline toot
'mastodon-tl--byline-author
'mastodon-tl--byline-boosted))
"(B) Account 42 (@acct42@example.space) 2999-99-99 00:11:22
------------
")))))
(ert-deftest mastodon-tl--byline-favorited ()
"Should format the favourited toot correctly."
(let* ((mastodon-tl--show-avatars-p nil)
(toot (cons '(favourited . t) mastodon-tl-test-base-toot))
(timestamp (cdr (assoc 'created_at toot))))
(with-mock
(mock (date-to-time timestamp) => '(22782 21551))
(mock (format-time-string mastodon-toot-timestamp-format '(22782 21551)) => "2999-99-99 00:11:22")
(should (string= (substring-no-properties
(mastodon-tl--byline toot
'mastodon-tl--byline-author
'mastodon-tl--byline-boosted))
"(F) Account 42 (@acct42@example.space) 2999-99-99 00:11:22
------------
")))))
(ert-deftest mastodon-tl--byline-boosted/favorited ()
"Should format the boosted & favourited toot correctly."
(let* ((mastodon-tl--show-avatars-p nil)
(toot `((favourited . t) (reblogged . t) ,@mastodon-tl-test-base-toot))
(timestamp (cdr (assoc 'created_at toot))))
(with-mock
(mock (date-to-time timestamp) => '(22782 21551))
(mock (format-time-string mastodon-toot-timestamp-format '(22782 21551)) => "2999-99-99 00:11:22")
(should (string= (substring-no-properties
(mastodon-tl--byline toot
'mastodon-tl--byline-author
'mastodon-tl--byline-boosted))
"(B) (F) Account 42 (@acct42@example.space) 2999-99-99 00:11:22
------------
")))))
(ert-deftest mastodon-tl--byline-reblogged ()
"Should format the reblogged toot correctly."
(let* ((mastodon-tl--show-avatars-p nil)
(toot mastodon-tl-test-base-boosted-toot)
(original-toot (cdr (assoc 'reblog mastodon-tl-test-base-boosted-toot)))
(timestamp (cdr (assoc 'created_at toot)))
(original-timestamp (cdr (assoc 'created_at original-toot))))
(with-mock
;; We don't expect to use the toot's timestamp but the timestamp of the
;; reblogged toot:
(mock (date-to-time timestamp) => '(1 2))
(mock (format-time-string mastodon-toot-timestamp-format '(1 2)) => "reblogging time")
(mock (date-to-time original-timestamp) => '(3 4))
(mock (format-time-string mastodon-toot-timestamp-format '(3 4)) => "original time")
(let ((byline (mastodon-tl--byline toot
'mastodon-tl--byline-author
'mastodon-tl--byline-boosted))
(handle1-location 20)
(handle2-location 65))
(should (string= (substring-no-properties byline)
"Account 42 (@acct42@example.space)
Boosted Account 43 (@acct43@example.space) original time
------------
"))
(should (eq (get-text-property handle1-location 'mastodon-tab-stop byline)
'user-handle))
(should (equal (get-text-property handle1-location 'help-echo byline)
"Browse user profile of @acct42@example.space"))
(should (eq (get-text-property handle2-location 'mastodon-tab-stop byline)
'user-handle))
(should (equal (get-text-property handle2-location 'help-echo byline)
"Browse user profile of @acct43@example.space"))))))
(ert-deftest mastodon-tl--byline-reblogged-with-avatars ()
"Should format the reblogged toot correctly."
(let* ((mastodon-tl--show-avatars-p t)
(toot mastodon-tl-test-base-boosted-toot)
(original-toot (cdr (assoc 'reblog mastodon-tl-test-base-boosted-toot)))
(timestamp (cdr (assoc 'created_at toot)))
(original-timestamp (cdr (assoc 'created_at original-toot))))
(with-mock
;; We don't expect to use the toot's timestamp but the timestamp of the
;; reblogged toot:
(stub create-image => '(image "fake data"))
(mock (date-to-time timestamp) => '(1 2))
(mock (format-time-string mastodon-toot-timestamp-format '(1 2)) => "reblogging time")
(mock (date-to-time original-timestamp) => '(3 4))
(mock (format-time-string mastodon-toot-timestamp-format '(3 4)) => "original time")
(should (string= (substring-no-properties
(mastodon-tl--byline toot
'mastodon-tl--byline-author
'mastodon-tl--byline-boosted))
"Account 42 (@acct42@example.space)
Boosted Account 43 (@acct43@example.space) original time
------------
")))))
(ert-deftest mastodon-tl--byline-reblogged-boosted/favorited ()
"Should format the reblogged toot that was also boosted & favoritedcorrectly."
(let* ((mastodon-tl--show-avatars-p nil)
(toot `((favourited . t) (reblogged . t) ,@mastodon-tl-test-base-boosted-toot))
(original-toot (cdr (assoc 'reblog mastodon-tl-test-base-boosted-toot)))
(timestamp (cdr (assoc 'created_at toot)))
(original-timestamp (cdr (assoc 'created_at original-toot))))
(with-mock
;; We don't expect to use the toot's timestamp but the timestamp of the
;; reblogged toot:
(mock (date-to-time timestamp) => '(1 2))
(mock (format-time-string mastodon-toot-timestamp-format '(1 2)) => "reblogging time")
(mock (date-to-time original-timestamp) => '(3 4))
(mock (format-time-string mastodon-toot-timestamp-format '(3 4)) => "original time")
(should (string= (substring-no-properties
(mastodon-tl--byline toot
'mastodon-tl--byline-author
'mastodon-tl--byline-boosted))
"(B) (F) Account 42 (@acct42@example.space)
Boosted Account 43 (@acct43@example.space) original time
------------
")))))
(ert-deftest mastodon-tl--byline-timestamp-has-relative-display ()
"Should display the timestamp with a relative time."
(let ((mastodon-tl--show-avatars-p nil)
(timestamp (cdr (assoc 'created_at mastodon-tl-test-base-toot))))
(with-mock
(mock (date-to-time timestamp) => '(22782 21551))
(mock (current-time) => '(22782 22000))
(mock (format-time-string mastodon-toot-timestamp-format '(22782 21551)) => "2999-99-99 00:11:22")
(let* ((formatted-string (mastodon-tl--byline mastodon-tl-test-base-toot
'mastodon-tl--byline-author
'mastodon-tl--byline-boosted))
(timestamp-start (string-match "2999-99-99" formatted-string))
(properties (text-properties-at timestamp-start formatted-string)))
(should (equal '(22782 21551) (plist-get properties 'timestamp)))
(should (string-equal "7 minutes ago" (plist-get properties 'display)))))))
(ert-deftest mastodon-tl--consider-timestamp-for-updates-no-active-callback ()
"Should update the timestamp update variables as expected."
(let* ((now (current-time))
(soon-in-the-future (time-add now (seconds-to-time 10000)))
(long-in-the-future (time-add now (seconds-to-time 10000000))))
(with-temp-buffer
;; start with timer way into the future and no active callback
(setq mastodon-tl--timestamp-next-update long-in-the-future
mastodon-tl--timestamp-update-timer nil)
;; something a later update doesn't update:
(with-mock
(mock (mastodon-tl--relative-time-details 'fake-timestamp) =>
(cons "xxx ago" (time-add long-in-the-future (seconds-to-time 100))))
(mastodon-tl--consider-timestamp-for-updates 'fake-timestamp)
(should (null mastodon-tl--timestamp-update-timer))
(should (eq mastodon-tl--timestamp-next-update long-in-the-future)))
;; something only shortly sooner doesn't update:
(with-mock
(mock (mastodon-tl--relative-time-details 'fake-timestamp) =>
(cons "xxx ago" (time-subtract long-in-the-future (seconds-to-time 9))))
(mastodon-tl--consider-timestamp-for-updates 'fake-timestamp)
(should (null mastodon-tl--timestamp-update-timer))
(should (eq mastodon-tl--timestamp-next-update long-in-the-future)))
;; something much sooner, does update
(with-mock
(mock (mastodon-tl--relative-time-details 'fake-timestamp) =>
(cons "xxx ago" soon-in-the-future))
(mastodon-tl--consider-timestamp-for-updates 'fake-timestamp)
(should (null mastodon-tl--timestamp-update-timer))
(should (eq mastodon-tl--timestamp-next-update soon-in-the-future)))
)))
(ert-deftest mastodon-tl--consider-timestamp-for-updates-with-active-callback ()
"Should update the timestamp update variables as expected."
(let* ((now (current-time))
(soon-in-the-future (time-add now (seconds-to-time 10000)))
(long-in-the-future (time-add now (seconds-to-time 10000000))))
(with-temp-buffer
;; start with timer way into the future and no active callback
(setq mastodon-tl--timestamp-next-update long-in-the-future
mastodon-tl--timestamp-update-timer 'initial-timer)
;; something a later update doesn't update:
(with-mock
(mock (mastodon-tl--relative-time-details 'fake-timestamp) =>
(cons "xxx ago" (time-add long-in-the-future (seconds-to-time 100))))
(mastodon-tl--consider-timestamp-for-updates 'fake-timestamp)
(should (eq 'initial-timer mastodon-tl--timestamp-update-timer))
(should (eq mastodon-tl--timestamp-next-update long-in-the-future)))
;; something much sooner, does update
(with-mock
(mock (mastodon-tl--relative-time-details 'fake-timestamp) =>
(cons "xxx ago" soon-in-the-future))
(mock (cancel-timer 'initial-timer))
(mock (run-at-time * nil
#'mastodon-tl--update-timestamps-callback
(current-buffer) nil) => 'new-timer)
(mastodon-tl--consider-timestamp-for-updates 'fake-timestamp)
(should (eq 'new-timer mastodon-tl--timestamp-update-timer))
(should (eq mastodon-tl--timestamp-next-update soon-in-the-future)))
)))
(ert-deftest mastodon-tl--find-property-range--no-tag ()
"Should cope with a buffer completely lacking the tag."
(with-temp-buffer
(insert "Just some random text")
(insert (propertize "More text with a different property" 'other-property 'set))
(should (null (mastodon-tl--find-property-range 'test-property 2 nil)))
(should (null (mastodon-tl--find-property-range 'test-property 2 t)))))
(ert-deftest mastodon-tl--find-property-range--earlier-tag ()
"Should cope with a buffer completely lacking the tag."
(with-temp-buffer
(insert (propertize "Just some text with a the sought property" 'test-property 'set))
(let ((end-of-region (point)))
(insert "More random text")
(should (null (mastodon-tl--find-property-range 'test-property end-of-region nil)))
(should (equal (cons (point-min) end-of-region)
(mastodon-tl--find-property-range 'test-property end-of-region t))))))
(ert-deftest mastodon-tl--find-property-range--successful-finding ()
"Should find the sought tag in all expected circumstances."
(with-temp-buffer
(insert "Previous text")
(let ((start-of-region (point))
end-of-region)
(insert (propertize "Just some text with a the sought property" 'test-property 'set))
(setq end-of-region (point))
(insert "More random text")
;; before the region
(should (equal (cons start-of-region end-of-region)
(mastodon-tl--find-property-range 'test-property 1 nil)))
(should (null (mastodon-tl--find-property-range 'test-property 1 t)))
;; in the region
(should (equal (cons start-of-region end-of-region)
(mastodon-tl--find-property-range 'test-property (+ 2 start-of-region) nil)))
(should (equal (cons start-of-region end-of-region)
(mastodon-tl--find-property-range 'test-property (+ 2 start-of-region) t)))
;; at end of region
(should (equal (cons start-of-region end-of-region)
(mastodon-tl--find-property-range 'test-property (1- end-of-region) nil)))
(should (equal (cons start-of-region end-of-region)
(mastodon-tl--find-property-range 'test-property (1- end-of-region) t))))))
(ert-deftest mastodon-tl--find-property-range--successful-finding-consecutive-ranges ()
"Should find the sought tag even from in between consecutive ranges."
(with-temp-buffer
(insert "Previous text")
(let ((start-of-region-1 (point))
between-regions
end-of-region-2)
(insert (propertize "region1" 'test-property 'region1))
(setq between-regions (point))
(insert (propertize "region2" 'test-property 'region2))
(setq end-of-region-2 (point))
(insert "More random text")
;; before
(should (equal (cons start-of-region-1 between-regions)
(mastodon-tl--find-property-range 'test-property 1 nil)))
(should (null (mastodon-tl--find-property-range 'test-property 1 t)))
;; between the regions
(should (equal (cons between-regions end-of-region-2)
(mastodon-tl--find-property-range 'test-property between-regions nil)))
(should (equal (cons between-regions end-of-region-2)
(mastodon-tl--find-property-range 'test-property between-regions t)))
;; after
(should (null (mastodon-tl--find-property-range 'test-property end-of-region-2 nil)))
(should (equal (cons between-regions end-of-region-2)
(mastodon-tl--find-property-range 'test-property end-of-region-2 t))))))
(ert-deftest mastodon-tl--find-property-range--successful-finding-at-start ()
"Should cope with a tag at start."
(with-temp-buffer
(insert (propertize "Just some text with a the sought property" 'test-property 'set))
(let ((end-of-region (point)))
(insert "More random text")
;; at start of the region
(should (equal (cons 1 end-of-region)
(mastodon-tl--find-property-range 'test-property 1 nil)))
(should (equal (cons 1 end-of-region)
(mastodon-tl--find-property-range 'test-property 1 t)))
;; in the region
(should (equal (cons 1 end-of-region)
(mastodon-tl--find-property-range 'test-property 3 nil)))
(should (equal (cons 1 end-of-region)
(mastodon-tl--find-property-range 'test-property 3 t)))
;; at end of region
(should (equal (cons 1 end-of-region)
(mastodon-tl--find-property-range 'test-property (1- end-of-region) t))))))
(ert-deftest mastodon-tl--find-property-range--successful-finding-at-end ()
"Should cope with a tag at end."
(with-temp-buffer
(insert "More random text")
(let ((start-of-region (point))
end-of-region)
(insert (propertize "Just some text with a the sought property" 'test-property 'set))
(setq end-of-region (point-max))
;; before the region
(should (equal (cons start-of-region end-of-region)
(mastodon-tl--find-property-range 'test-property 1 nil)))
(should (null (mastodon-tl--find-property-range 'test-property 1 t)))
;; in the region
(should (equal (cons start-of-region end-of-region)
(mastodon-tl--find-property-range 'test-property (1+ start-of-region) nil)))
(should (equal (cons start-of-region end-of-region)
(mastodon-tl--find-property-range 'test-property (1+ start-of-region) t)))
;; at end of region
(should (equal (cons start-of-region end-of-region)
(mastodon-tl--find-property-range 'test-property (1- end-of-region) nil)))
(should (equal (cons start-of-region end-of-region)
(mastodon-tl--find-property-range 'test-property (1- end-of-region) t))))))
(ert-deftest mastodon-tl--find-property-range--successful-finding-whole-buffer ()
"Should cope with a tag being set for the whole buffer."
(with-temp-buffer
(insert (propertize "Just some text with a the sought property" 'test-property 'set))
(should (equal (cons (point-min) (point-max))
(mastodon-tl--find-property-range 'test-property 2 nil)))
(should (equal (cons (point-min) (point-max))
(mastodon-tl--find-property-range 'test-property 2 t)))))
(defun tl-tests--all-regions-with-property (property)
"Returns a list with (start . end) regions where PROPERTY is set."
(let (result
region)
(goto-char (point-min))
(while (and (< (point) (point-max))
(setq region (mastodon-tl--find-property-range property (point))))
(push region result)
(goto-char (min (point-max) (cdr region))))
(nreverse result)))
(ert-deftest mastodon-tl--next-tab-item--with-spaces-at-ends ()
"Should do the correct tab actions."
(with-temp-buffer
;; We build a buffer with 3 tab stops: "...R1...R2R3..." (a dot
;; represents text that is not part of a link, so R1 and R2 have a
;; gap in between each other, R2 and R3 don't.
(insert "Random text at start")
(let ((start 2)
(r1 (point))
r2 gap r3
end)
(insert (propertize "R1 R1 R1" 'mastodon-tab-stop 'region1))
(setq gap (+ (point) 2))
(insert " a gap ")
(setq r2 (point))
(insert (propertize "R2 R2 R2" 'mastodon-tab-stop 'region2))
(setq r3 (point))
(insert (propertize "R3 R3 R3" 'mastodon-tab-stop 'region3))
(setq end (+ (point) 2))
(insert " more text at end")
(let ((test-cases
;; a list 4-elemet lists of (test-name start-point
;; expected-prev-stop expected-next-stop):
(list (list 'start start start r1)
(list 'r1 r1 r1 r2)
(list 'gap gap r1 r2)
(list 'r2 r2 r1 r3)
(list 'r3 r3 r2 r3)
(list 'end end r3 end))))
(with-mock
(stub message => nil) ;; don't mess up our test output with the function's messages
(cl-dolist (test test-cases)
(let ((test-name (cl-first test))
(test-start (cl-second test))
(expected-prev (cl-third test))
(expected-next (cl-fourth test)))
(goto-char test-start)
(mastodon-tl--previous-tab-item)
(should (equal (list 'prev test-name expected-prev)
(list 'prev test-name (point))))
(goto-char test-start)
(mastodon-tl--next-tab-item)
(should (equal (list 'next test-name expected-next)
(list 'next test-name (point)))))))))))
(ert-deftest mastodon-tl--next-tab-item--no-spaces-at-ends ()
"Should do the correct tab actions even with regions right at buffer ends."
(with-temp-buffer
;; We build a buffer with 3 tab stops: "R1...R2R3...R4" (a dot
;; represents text that is not part of a link, so R1 and R2, and
;; R3 and R4 have a gap in between each other, R2 and R3 don't.
(let ((r1 (point))
gap1
r2 r3
gap2
r4)
(insert (propertize "R1 R1 R1" 'mastodon-tab-stop 'region1))
(setq gap1 (+ (point) 2))
(insert " a gap ")
(setq r2 (point))
(insert (propertize "R2 R2 R2" 'mastodon-tab-stop 'region2))
(setq r3 (point))
(insert (propertize "R3 R3 R3" 'mastodon-tab-stop 'region3))
(setq gap2 (+ (point) 2))
(insert " another gap ")
(setq r4 (point))
(insert (propertize "R4 R4 R4" 'mastodon-tab-stop 'region4))
(let ((test-cases
;; a list 4-elemet lists of (test-name start-point
;; expected-prev-stop expected-next-stop):
(list (list 'r1 r1 r1 r2)
(list 'gap1 gap1 r1 r2)
(list 'r2 r2 r1 r3)
(list 'r3 r3 r2 r4)
(list 'gap2 gap2 r3 r4)
(list 'r4 r4 r3 r4))))
(with-mock
(stub message => nil) ;; don't mess up our test output with the function's messages
(cl-dolist (test test-cases)
(let ((test-name (cl-first test))
(test-start (cl-second test))
(expected-prev (cl-third test))
(expected-next (cl-fourth test)))
(goto-char test-start)
(mastodon-tl--previous-tab-item)
(should (equal (list 'prev test-name expected-prev)
(list 'prev test-name (point))))
(goto-char test-start)
(mastodon-tl--next-tab-item)
(should (equal (list 'next test-name expected-next)
(list 'next test-name (point)))))))))))
(defun tl-tests--property-values-at (property ranges)
"Returns a list with property values at the given ranges.
The property value for PROPERTY within a region is assumed to be
constant."
(let (result)
(dolist (range ranges (nreverse result))
(push (get-text-property (car range) property) result))))
(ert-deftest mastodon-tl--update-timestamps-callback ()
"Should update the 5 timestamps at a time as expected."
(let ((now (current-time))
markers)
(cl-labels ((insert-timestamp (n)
(insert (format "\nSome text before timestamp %s:" n))
(insert (propertize
(format "timestamp #%s" n)
'timestamp (time-subtract now (seconds-to-time (* 60 n)))
'display (format "unset %s" n)))
(push (copy-marker (point)) markers)
(insert " some more text.")))
(with-temp-buffer
(cl-dotimes (n 12) (insert-timestamp (+ n 2)))
(setq markers (nreverse markers))
(with-mock
(mock (current-time) => now)
(stub run-at-time => 'fake-timer)
;; make the initial call
(mastodon-tl--update-timestamps-callback (current-buffer) nil)
(should (equal '("2 minutes ago" "3 minutes ago" "4 minutes ago" "5 minutes ago" "6 minutes ago"
"unset 7" "unset 8" "unset 9" "unset 10" "unset 11" "unset 12" "unset 13")
(tl-tests--property-values-at 'display
(tl-tests--all-regions-with-property 'timestamp))))
;; fake the follow-up call
(mastodon-tl--update-timestamps-callback (current-buffer) (nth 4 markers))
(should (equal '("2 minutes ago" "3 minutes ago" "4 minutes ago" "5 minutes ago" "6 minutes ago"
"7 minutes ago" "8 minutes ago" "9 minutes ago" "10 minutes ago" "11 minutes ago"
"unset 12" "unset 13")
(tl-tests--property-values-at 'display
(tl-tests--all-regions-with-property 'timestamp))))
(should (null (marker-position (nth 4 markers))))
;; fake the follow-up call
(mastodon-tl--update-timestamps-callback (current-buffer) (nth 9 markers))
(should (equal '("2 minutes ago" "3 minutes ago" "4 minutes ago" "5 minutes ago" "6 minutes ago"
"7 minutes ago" "8 minutes ago" "9 minutes ago" "10 minutes ago" "11 minutes ago"
"12 minutes ago" "13 minutes ago")
(tl-tests--property-values-at 'display
(tl-tests--all-regions-with-property 'timestamp))))
(should (null (marker-position (nth 9 markers)))))))))
(ert-deftest mastodon-tl--has-spoiler ()
"Should be able to detect toots with spoiler text as expected"
(let* ((normal-toot mastodon-tl-test-base-toot)
(normal-toot-with-spoiler (cons '(spoiler_text . "spoiler") normal-toot))
(boosted-toot mastodon-tl-test-base-boosted-toot)
(boosted-toot-with-spoiler (cons (cons 'reblog normal-toot-with-spoiler)
boosted-toot)))
(should (null (mastodon-tl--has-spoiler normal-toot)))
(should-not (null (mastodon-tl--has-spoiler normal-toot-with-spoiler)))
(should (null (mastodon-tl--has-spoiler boosted-toot)))
(should-not (null (mastodon-tl--has-spoiler boosted-toot-with-spoiler)))))
(ert-deftest mastodon-tl--spoiler ()
"Should render a toot with spoiler properly, with link that toggles the body."
(let ((normal-toot-with-spoiler (cons '(spoiler_text . "This is the spoiler warning text")
mastodon-tl-test-base-toot))
toot-start
toot-end
link-region
body-position)
(with-temp-buffer
(insert "some text before\n")
(setq toot-start (point))
(with-mock
(mock (mastodon-profile--get-preferences-pref
'reading:expand:spoilers)
=> :json-false)
(stub create-image => '(image "fake data"))
(stub shr-render-region => nil) ;; Travis's Emacs doesn't have libxml
(insert
(mastodon-tl--spoiler normal-toot-with-spoiler)))
(setq toot-end (point))
(insert "\nsome more text.")
(add-text-properties
toot-start toot-end
(list 'toot-json normal-toot-with-spoiler
'toot-id (cdr (assoc 'id normal-toot-with-spoiler))))
(goto-char toot-start)
;; (should (eq t (looking-at "This is the spoiler warning text")))
(setq link-region (mastodon-tl--find-next-or-previous-property-range
'mastodon-tab-stop toot-start nil))
;; There should be a link following the text:
(should-not (null link-region))
(goto-char (car link-region))
(should (eq t (looking-at "CW: This is the spoiler warning text"))) ;Content Warning")))
(setq body-position (+ 25 (cdr link-region))) ;; 25 is enough to skip the "\n--------------...."
;; The text a bit after the link should be invisible:
(should (eq t (get-text-property body-position 'invisible)))
;; Click the link:
(mastodon-tl--do-link-action-at-point (car link-region))
;; The body is now visible:
(should (eq nil (get-text-property body-position 'invisible)))
;; Click the link once more:
(mastodon-tl--do-link-action-at-point (car link-region))
;; The body is invisible again:
(should (eq t (get-text-property body-position 'invisible)))
;; Go back to the toot's beginning
(goto-char toot-start)
;; Press 'c' and the body is visible again and point hasn't changed:
(mastodon-tl--toggle-spoiler-text-in-toot)
(should (eq nil (get-text-property body-position 'invisible)))
(should (eq toot-start (point)))
;; Go to the toot's end
(goto-char toot-end)
;; Press 'c' and the body is invisible again and point hasn't changed:
(mastodon-tl--toggle-spoiler-text-in-toot)
(should (eq t (get-text-property body-position 'invisible)))
(should (eq toot-end (point)))
)))
(ert-deftest mastodon-tl--hashtag ()
"Should recognise hashtags in a toot and add the required properties to it."
;; Travis's Emacs doesn't have libxml so we fake things by inputting
;; propertized text and stubbing shr-render-region
(let* ((fake-input-text
(concat "Tag:"
(propertize
"sampletag"
'shr-url "https://example.space/tags/sampletag"
'keymap shr-map
'help-echo "https://example.space/tags/sampletag")
" some text after"))
(rendered (with-mock
(stub shr-render-region => nil)
(mastodon-tl--render-text
fake-input-text
mastodon-tl-test-base-toot)))
(tag-location 7))
(should (eq (get-text-property tag-location 'mastodon-tab-stop rendered)
'hashtag))
(should (equal (get-text-property tag-location 'mastodon-tag rendered)
"sampletag"))
(should (equal (get-text-property tag-location 'help-echo rendered)
"Browse tag #sampletag"))))
(ert-deftest mastodon-tl--extract-hashtag-from-url-mastodon-link ()
"Should extract the hashtag from a tags url."
(should (equal (mastodon-tl--extract-hashtag-from-url
"https://example.org/tags/foo"
"https://example.org")
"foo")))
(ert-deftest mastodon-tl--extract-hashtag-from-url-other-link ()
"Should extract the hashtag from a tag url."
(should (equal (mastodon-tl--extract-hashtag-from-url
"https://example.org/tag/foo"
"https://example.org")
"foo")))
(ert-deftest mastodon-tl--extract-hashtag-from-url-wrong-instance ()
"Should not find a tag when the instance doesn't match."
(should (null (mastodon-tl--extract-hashtag-from-url
"https://example.org/tags/foo"
"https://other.example.org"))))
(ert-deftest mastodon-tl--extract-hashtag-from-url-not-tag ()
"Should not find a hashtag when not a tag url"
(should (null (mastodon-tl--extract-hashtag-from-url
"https://example.org/@userid"
"https://example.org"))))
(ert-deftest mastodon-tl--userhandles ()
"Should recognise userhandles in a toot and add the required properties to it."
;; Travis's Emacs doesn't have libxml so we fake things by inputting
;; propertized text and stubbing shr-render-region
(let* ((fake-input-text
(concat "mention: "
(propertize
"@foo"
'shr-url "https://bar.example/@foo"
'keymap shr-map
'help-echo "https://bar.example/@foo")
" some text after"))
(rendered (with-mock
(stub shr-render-region => nil)
(mastodon-tl--render-text
fake-input-text
mastodon-tl-test-base-toot)))
(mention-location 11))
(should (eq (get-text-property mention-location 'mastodon-tab-stop rendered)
'user-handle))
(should (equal (get-text-property mention-location 'help-echo rendered)
"Browse user profile of @foo@bar.example"))))
(ert-deftest mastodon-tl--extract-userhandle-from-url-correct-case ()
"Should extract the user handle from url."
(should (equal (mastodon-tl--extract-userhandle-from-url
"https://example.org/@someuser"
"@SomeUser")
"@SomeUser@example.org")))
(ert-deftest mastodon-tl--extract-userhandle-from-url-missing-at-in-text ()
"Should not extract a user handle from url if the text is wrong."
(should (null (mastodon-tl--extract-userhandle-from-url
"https://example.org/@someuser"
"SomeUser"))))
(ert-deftest mastodon-tl--extract-userhandle-from-url-query-in-url ()
"Should not extract a user handle from url if there is a query param."
(should (null (mastodon-tl--extract-userhandle-from-url
"https://example.org/@someuser?shouldnot=behere"
"SomeUser"))))
(ert-deftest mastodon-tl--do-user-action-function-follow-notify-block-mute ()
"Should triage a follow request response buffer and return
correct value for following, as well as notifications enabled or disabled."
(let* ((user-handle "some-user@instance.url")
(user-name "some-user")
(user-id "123456789")
(url-follow-only "https://instance.url/accounts/123456789/follow")
(url-mute "https://instance.url/accounts/123456789/mute")
(url-block "https://instance.url/accounts/123456789/block")
(url-true "https://instance.url/accounts/123456789/follow?notify=true")
(url-false "https://instance.url/accounts/123456789/follow?notify=false"))
(with-temp-buffer
(let ((response-buffer-true (current-buffer)))
(insert mastodon-tl--follow-notify-true-response)
(with-mock
(mock (mastodon-http--post url-follow-only nil)
=> response-buffer-true)
(should
(equal
(mastodon-tl--do-user-action-function url-follow-only
user-name
user-handle
"follow")
"User some-user (@some-user@instance.url) followed!"))
(mock (mastodon-http--post url-mute nil)
=> response-buffer-true)
(should
(equal
(mastodon-tl--do-user-action-function url-mute
user-name
user-handle
"mute")
"User some-user (@some-user@instance.url) muted!"))
(mock (mastodon-http--post url-block nil)
=> response-buffer-true)
(should
(equal
(mastodon-tl--do-user-action-function url-block
user-name
user-handle
"block")
"User some-user (@some-user@instance.url) blocked!")))
(with-mock
(mock (mastodon-http--post url-true nil) => response-buffer-true)
(should
(equal
(mastodon-tl--do-user-action-function url-true
user-name
user-handle
"follow"
"true")
"Receiving notifications for user some-user (@some-user@instance.url)!")))))
(with-temp-buffer
(let ((response-buffer-false (current-buffer)))
(insert mastodon-tl--follow-notify-false-response)
(with-mock
(mock (mastodon-http--post url-false nil) => response-buffer-false)
(should
(equal
(mastodon-tl--do-user-action-function url-false
user-name
user-handle
"follow"
"false")
"Not receiving notifications for user some-user (@some-user@instance.url)!")))))))
|