diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2022-10-29 18:08:53 +0200 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2022-10-30 12:21:30 +0100 |
commit | 51f124228b0d308719dd0d9b111b53235748bc67 (patch) | |
tree | 685e86f07ed994e4173062a5796fec2202247075 /_pytest | |
parent | 8a89b8038cc0d0e2c88d4ac77aafdd14470dca4a (diff) | |
download | wee-slack-51f124228b0d308719dd0d9b111b53235748bc67.tar.gz |
Show useful link for Slack posts
The url_private link for Slack posts just downloads a json of the post,
which isn't very useful to click on. The permalink goes to the web view
for a post, which is what we want. The web client adds origin_team and
origin_channel, which makes the post page show info about where the post
is shared, so add that here as well.
We still want to use url_private for images etc., not permalink there as
well, because that links to the Slack client with the image shown in the
sidebar, which is much more inconvenient than just getting the image
directly.
Diffstat (limited to '_pytest')
-rw-r--r-- | _pytest/test_unwrap_attachments.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/_pytest/test_unwrap_attachments.py b/_pytest/test_unwrap_attachments.py index d4116eb..25ffd04 100644 --- a/_pytest/test_unwrap_attachments.py +++ b/_pytest/test_unwrap_attachments.py @@ -462,9 +462,9 @@ import pytest }, ), ) -def test_unwrap_attachments(case): +def test_unwrap_attachments(case, channel_general): wee_slack.config.link_previews = case.get("link_previews") - result = wee_slack.unwrap_attachments( - case["input_message"], case["input_text_before"] - ) + message_json = {"ts": str(wee_slack.SlackTS()), **case["input_message"]} + message = wee_slack.SlackMessage("normal", message_json, channel_general) + result = wee_slack.unwrap_attachments(message, case["input_text_before"]) assert result == case["output"] |