aboutsummaryrefslogtreecommitdiff
path: root/test/mastodon-toot-tests.el
blob: 06da87090d8e349588a29952e7eb815874ff8a70 (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
(require 'el-mock)

(defconst mastodon-toot-multi-mention
  '((mentions .
              [((id . "1")
                (username . "federated")
                (url . "https://site.cafe/@federated")
                (acct . "federated@federated.cafe"))
               ((id . "1")
                (username . "federated")
                (url . "https://site.cafe/@federated")
                (acct . "federated@federated.social"))
               ((id . "1")
                (username . "local")
                (url . "")
                (acct . "local"))])))

(defconst mastodon-toot-no-mention
  '((mentions . [])))

(ert-deftest toot-multi-mentions ()
  (let ((mastodon-auth--acct-alist '(("https://local.social". "null")))
        (mastodon-instance-url "https://local.social"))
    (should (string=
             (mastodon-toot--mentions mastodon-toot-multi-mention)
             "@local@local.social @federated@federated.social @federated@federated.cafe "))))

(ert-deftest toot-multi-mentions-with-name ()
  (let ((mastodon-auth--acct-alist
         '(("https://local.social". "local")))
        (mastodon-instance-url "https://local.social"))
    (should (string=
             (mastodon-toot--mentions mastodon-toot-multi-mention)
             "@federated@federated.social @federated@federated.cafe "))))

(ert-deftest toot-no-mention ()
  (let ((mastodon-auth--acct-alist
         '(("https://local.social". "null")))
        (mastodon-instance-url "https://local.social"))
    (should (string= (mastodon-toot--mentions mastodon-toot-no-mention) ""))))

(ert-deftest cancel ()
  (with-mock
    (mock (kill-buffer-and-window))
    (mastodon-toot--cancel)
    (mock-verify)))