aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Dürer <me@hdurer.net>2017-04-27 18:35:32 +0100
committerJohnson Denen <johnson.denen@gmail.com>2017-04-28 11:15:56 -0400
commit4057f8d7577308fd79afa9c4d1823faf9c088665 (patch)
treec73944f9215f7940ff5f89991d14a42e26a3bc87
parentc7a000355809bbe0496c3fb54ac70d75e3ef65b8 (diff)
Add the time of posting to the byline.
-rw-r--r--lisp/mastodon-tl.el4
-rw-r--r--lisp/mastodon.el9
-rw-r--r--test/mastodon-tl-tests.el178
3 files changed, 191 insertions, 0 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index a1535b9..5c31dc9 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -31,6 +31,7 @@
(require 'mastodon-http)
(require 'mastodon-toot)
(require 'mastodon-media)
+(require 'time-date)
(defgroup mastodon-tl nil
"Timelines in Mastodon."
@@ -130,6 +131,7 @@ Return value from boosted content if available."
(defun mastodon-tl--byline (toot)
"Generate byline for TOOT."
(let ((id (cdr (assoc 'id toot)))
+ (timestamp (mastodon-tl--field 'created_at toot))
(faved (mastodon-tl--field 'favourited toot))
(boosted (mastodon-tl--field 'reblogged toot)))
(propertize
@@ -140,6 +142,8 @@ Return value from boosted content if available."
(format "(%s) " (propertize "F" 'face 'success)))
(mastodon-tl--byline-author toot)
(mastodon-tl--byline-boosted toot)
+ " "
+ (format-time-string mastodon-toot-timestamp-format (date-to-time timestamp))
(propertize "\n ------------" 'face 'default))
'favourited-p faved
'boosted-p boosted
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index 2926d08..7fb5c9a 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -51,6 +51,15 @@
:group 'mastodon
:type 'file)
+(defcustom mastodon-toot-timestamp-format "%F %T"
+ "Format to use for timestamps.
+
+For valid formatting options see `format-time-string`.
+The default value \"%F %T\" prints ISO8601-style YYYY-mm-dd HH:MM:SS.
+Use. e.g. \"%c\" for your locale's date and time format."
+ :group 'mastodon
+ :type 'string)
+
(defvar mastodon-mode-map
(make-sparse-keymap)
"Keymap for `mastodon-mode'.")
diff --git a/test/mastodon-tl-tests.el b/test/mastodon-tl-tests.el
index 384f46c..e89d313 100644
--- a/test/mastodon-tl-tests.el
+++ b/test/mastodon-tl-tests.el
@@ -1,5 +1,91 @@
(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 . "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))
+ "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 . "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.spacs/@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)")
+
(ert-deftest remove-html-1 ()
"Should remove all <span> tags."
(let ((input "<span class=\"h-card\">foobar</span> <span>foobaz</span>"))
@@ -16,3 +102,95 @@
(with-mock
(mock (mastodon-http--get-json "https://instance.url/api/v1/timelines/foo?max_id=12345"))
(mastodon-tl--more-json "foo" 12345))))
+
+(ert-deftest mastodon-tl--byline-regular ()
+ "Should format the regular toot correctly."
+ (let ((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")
+
+ (should (string= (substring-no-properties
+ (mastodon-tl--byline mastodon-tl-test-base-toot))
+ "
+ | Account 42 (@acct42@example.space) 2999-99-99 00:11:22
+ ------------")))))
+
+(ert-deftest mastodon-tl--byline-boosted ()
+ "Should format the boosted toot correctly."
+ (let* ((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))
+ "
+ | (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* ((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))
+ "
+ | (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* ((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))
+ "
+ | (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* ((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")
+
+ (should (string= (substring-no-properties (mastodon-tl--byline toot))
+ "
+ | 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* ((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))
+ "
+ | (B) (F) Account 42 (@acct42@example.space) Boosted Account 43 (@acct43@example.space) original time
+ ------------")))))
+