diff options
author | mousebot <mousebot@riseup.net> | 2021-11-09 10:37:57 +0100 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-11-09 10:39:07 +0100 |
commit | b02782226b34507508020179e3100c307738eeee (patch) | |
tree | c723ba2e0cc90f616133bcae9a8025041f907e64 /test/mastodon-media-tests.el | |
parent | 8d543a03694e575cd0352275b60b2d232bfeaeb5 (diff) |
update test mastodon-media:get-media-link-rendering with extra props
Diffstat (limited to 'test/mastodon-media-tests.el')
-rw-r--r-- | test/mastodon-media-tests.el | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/test/mastodon-media-tests.el b/test/mastodon-media-tests.el index b537dfe..7124672 100644 --- a/test/mastodon-media-tests.el +++ b/test/mastodon-media-tests.el @@ -22,14 +22,22 @@ (mock (create-image * nil t) => :mock-image) (let* ((mastodon-media--preview-max-height 123) - (result (mastodon-media--get-media-link-rendering "http://example.org/img.png")) + (result + (mastodon-media--get-media-link-rendering "http://example.org/img.png" + "http://example.org/remote/img.png")) (result-no-properties (substring-no-properties result)) (properties (text-properties-at 0 result))) (should (string= "[img] " result-no-properties)) (should (string= "http://example.org/img.png" (plist-get properties 'media-url))) (should (eq 'needs-loading (plist-get properties 'media-state))) (should (eq 'media-link (plist-get properties 'media-type))) - (should (eq :mock-image (plist-get properties 'display)))))) + (should (eq :mock-image (plist-get properties 'display))) + (should (eq 'highlight (plist-get properties 'mouse-face))) + (should (eq 'image (plist-get properties 'mastodon-tab-stop))) + (should (string= "http://example.org/remote/img.png" (plist-get properties 'image-url))) + (should (eq mastodon-tl--shr-image-map-replacement (plist-get properties 'keymap))) + (should (string= "RET/i: load full image (prefix: copy URL), +/-: zoom, r: rotate, o: save preview" + (plist-get properties 'help-echo)))))) (ert-deftest mastodon-media:load-image-from-url:avatar-with-imagemagic () "Should make the right call to url-retrieve." |