2020-10-12 17:00:50 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-09-16 10:03:37 +00:00
|
|
|
defmodule Pleroma.Activity.Ir.TopicsTest do
|
2020-12-21 11:21:40 +00:00
|
|
|
use Pleroma.DataCase, async: true
|
2019-09-16 10:03:37 +00:00
|
|
|
|
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Activity.Ir.Topics
|
|
|
|
alias Pleroma.Object
|
|
|
|
|
|
|
|
require Pleroma.Constants
|
|
|
|
|
|
|
|
describe "poll answer" do
|
|
|
|
test "produce no topics" do
|
|
|
|
activity = %Activity{object: %Object{data: %{"type" => "Answer"}}}
|
|
|
|
|
|
|
|
assert [] == Topics.get_activity_topics(activity)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "non poll answer" do
|
|
|
|
test "always add user and list topics" do
|
|
|
|
activity = %Activity{object: %Object{data: %{"type" => "FooBar"}}}
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
assert Enum.member?(topics, "user")
|
|
|
|
assert Enum.member?(topics, "list")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "public visibility" do
|
|
|
|
setup do
|
|
|
|
activity = %Activity{
|
|
|
|
object: %Object{data: %{"type" => "Note"}},
|
|
|
|
data: %{"to" => [Pleroma.Constants.as_public()]}
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, activity: activity}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "produces public topic", %{activity: activity} do
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
assert Enum.member?(topics, "public")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "local action produces public:local topic", %{activity: activity} do
|
|
|
|
activity = %{activity | local: true}
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
assert Enum.member?(topics, "public:local")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "non-local action does not produce public:local topic", %{activity: activity} do
|
|
|
|
activity = %{activity | local: false}
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
refute Enum.member?(topics, "public:local")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "public visibility create events" do
|
|
|
|
setup do
|
|
|
|
activity = %Activity{
|
2020-03-13 15:30:42 +00:00
|
|
|
object: %Object{data: %{"attachment" => []}},
|
|
|
|
data: %{"type" => "Create", "to" => [Pleroma.Constants.as_public()]}
|
2019-09-16 10:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, activity: activity}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "with no attachments doesn't produce public:media topics", %{activity: activity} do
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
refute Enum.member?(topics, "public:media")
|
|
|
|
refute Enum.member?(topics, "public:local:media")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "converts tags to hash tags", %{activity: %{object: %{data: data} = object} = activity} do
|
2020-12-28 12:02:16 +00:00
|
|
|
tagged_data = Map.put(data, "tag", ["foo", "bar"])
|
2019-09-16 10:03:37 +00:00
|
|
|
activity = %{activity | object: %{object | data: tagged_data}}
|
|
|
|
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
assert Enum.member?(topics, "hashtag:foo")
|
|
|
|
assert Enum.member?(topics, "hashtag:bar")
|
|
|
|
end
|
|
|
|
|
2020-02-11 07:12:57 +00:00
|
|
|
test "only converts strings to hash tags", %{
|
2019-09-16 10:03:37 +00:00
|
|
|
activity: %{object: %{data: data} = object} = activity
|
|
|
|
} do
|
|
|
|
tagged_data = Map.put(data, "tag", [2])
|
|
|
|
activity = %{activity | object: %{object | data: tagged_data}}
|
|
|
|
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
refute Enum.member?(topics, "hashtag:2")
|
|
|
|
end
|
2020-10-09 01:01:48 +00:00
|
|
|
|
|
|
|
test "non-local action produces public:remote topic", %{activity: activity} do
|
|
|
|
activity = %{activity | local: false, actor: "https://lain.com/users/lain"}
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
assert Enum.member?(topics, "public:remote:lain.com")
|
|
|
|
end
|
2020-11-04 14:24:10 +00:00
|
|
|
|
|
|
|
test "local action doesn't produce public:remote topic", %{activity: activity} do
|
|
|
|
activity = %{activity | local: true, actor: "https://lain.com/users/lain"}
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
refute Enum.member?(topics, "public:remote:lain.com")
|
|
|
|
end
|
2019-09-16 10:03:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "public visibility create events with attachments" do
|
|
|
|
setup do
|
|
|
|
activity = %Activity{
|
2020-03-13 15:30:42 +00:00
|
|
|
object: %Object{data: %{"attachment" => ["foo"]}},
|
|
|
|
data: %{"type" => "Create", "to" => [Pleroma.Constants.as_public()]}
|
2019-09-16 10:03:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, activity: activity}
|
|
|
|
end
|
|
|
|
|
|
|
|
test "produce public:media topics", %{activity: activity} do
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
assert Enum.member?(topics, "public:media")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "local produces public:local:media topics", %{activity: activity} do
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
assert Enum.member?(topics, "public:local:media")
|
|
|
|
end
|
|
|
|
|
|
|
|
test "non-local doesn't produce public:local:media topics", %{activity: activity} do
|
|
|
|
activity = %{activity | local: false}
|
|
|
|
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
refute Enum.member?(topics, "public:local:media")
|
|
|
|
end
|
2020-10-09 01:01:48 +00:00
|
|
|
|
|
|
|
test "non-local action produces public:remote:media topic", %{activity: activity} do
|
|
|
|
activity = %{activity | local: false, actor: "https://lain.com/users/lain"}
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
assert Enum.member?(topics, "public:remote:media:lain.com")
|
|
|
|
end
|
2019-09-16 10:03:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "non-public visibility" do
|
|
|
|
test "produces direct topic" do
|
|
|
|
activity = %Activity{object: %Object{data: %{"type" => "Note"}}, data: %{"to" => []}}
|
|
|
|
topics = Topics.get_activity_topics(activity)
|
|
|
|
|
|
|
|
assert Enum.member?(topics, "direct")
|
|
|
|
refute Enum.member?(topics, "public")
|
|
|
|
refute Enum.member?(topics, "public:local")
|
|
|
|
refute Enum.member?(topics, "public:media")
|
|
|
|
refute Enum.member?(topics, "public:local:media")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|