aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2018-05-23 17:25:24 +0200
committerlain <lain@soykaf.club>2018-05-23 17:25:24 +0200
commit0b5bc62b33a655488afe73b35945adcbab11300d (patch)
treefa2bc3e558d827fa4448f288105429f4a3aa6619 /test
parent06c97f211fc4a8c9c9c7e77143c3398ade817ab4 (diff)
downloadpleroma-0b5bc62b33a655488afe73b35945adcbab11300d.tar.gz
Don't save double tags in AP objects we create
This crashed Mastodon workers.
Diffstat (limited to 'test')
-rw-r--r--test/web/common_api/common_api_test.exs13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/web/common_api/common_api_test.exs b/test/web/common_api/common_api_test.exs
new file mode 100644
index 000000000..b597e6e0a
--- /dev/null
+++ b/test/web/common_api/common_api_test.exs
@@ -0,0 +1,13 @@
+defmodule Pleroma.Web.CommonAPI.UtilsTest do
+ use Pleroma.DataCase
+ alias Pleroma.Web.CommonAPI
+
+ import Pleroma.Factory
+
+ test "it de-duplicates tags" do
+ user = insert(:user)
+ {:ok, activity} = CommonAPI.post(user, %{"status" => "#2hu #2HU"})
+
+ assert activity.data["object"]["tag"] == ["2hu"]
+ end
+end