From 83c657afa557ac3cdfd2e3888511b403857de8aa Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Wed, 14 Jun 2017 14:46:18 +0200 Subject: Do some basic escaping. --- test/web/twitter_api/twitter_api_test.exs | 2 +- test/web/twitter_api/twitter_api_utils_test.exs | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 test/web/twitter_api/twitter_api_utils_test.exs (limited to 'test/web/twitter_api') diff --git a/test/web/twitter_api/twitter_api_test.exs b/test/web/twitter_api/twitter_api_test.exs index da880e67c..6848413cc 100644 --- a/test/web/twitter_api/twitter_api_test.exs +++ b/test/web/twitter_api/twitter_api_test.exs @@ -34,7 +34,7 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPITest do { :ok, activity = %Activity{} } = TwitterAPI.create_status(user, input) - assert get_in(activity.data, ["object", "content"]) == "Hello again, @shp.
\nThis is on another line. #2hu #epic #phantasmagoric
\nimage.jpg" + assert get_in(activity.data, ["object", "content"]) == "Hello again, @shp.
\nThis is on another line. #2hu #epic #phantasmagoric
\nimage.jpg" assert get_in(activity.data, ["object", "type"]) == "Note" assert get_in(activity.data, ["object", "actor"]) == user.ap_id assert get_in(activity.data, ["actor"]) == user.ap_id diff --git a/test/web/twitter_api/twitter_api_utils_test.exs b/test/web/twitter_api/twitter_api_utils_test.exs new file mode 100644 index 000000000..62aa7843b --- /dev/null +++ b/test/web/twitter_api/twitter_api_utils_test.exs @@ -0,0 +1,14 @@ +defmodule Pleroma.Web.TwitterAPI.UtilsTest do + alias Pleroma.Web.TwitterAPI.Utils + use Pleroma.DataCase + + test "it adds attachment links to a given text and attachment set" do + attachment = %{ + "url" => [%{"href" => "http://heise.de/i\"m a boy.png"}] + } + + res = Utils.add_attachments("", [attachment]) + + assert res == "
\ni\"m a boy.png" + end +end -- cgit v1.2.3