akkoma/test/support/builders/activity_builder.ex

58 lines
1.4 KiB
Elixir
Raw Normal View History

2017-03-21 16:53:20 +00:00
defmodule Pleroma.Builders.ActivityBuilder do
alias Pleroma.Web.ActivityPub.ActivityPub
2017-03-21 19:22:05 +00:00
def build(data \\ %{}, opts \\ %{}) do
2017-04-16 13:28:28 +00:00
user = opts[:user] || Pleroma.Factory.insert(:user)
2018-03-30 13:01:53 +00:00
2017-03-21 19:22:05 +00:00
activity = %{
2018-03-30 13:01:53 +00:00
"id" => Pleroma.Web.ActivityPub.Utils.generate_object_id(),
2017-03-21 16:53:20 +00:00
"actor" => user.ap_id,
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
2018-02-25 16:48:31 +00:00
"type" => "Create",
2017-03-21 16:53:20 +00:00
"object" => %{
"type" => "Note",
2018-02-25 16:48:31 +00:00
"content" => "test",
2018-03-30 13:01:53 +00:00
"to" => ["https://www.w3.org/ns/activitystreams#Public"]
2017-03-21 16:53:20 +00:00
}
}
2018-03-30 13:01:53 +00:00
2017-03-21 19:22:05 +00:00
Map.merge(activity, data)
end
2017-03-21 16:53:20 +00:00
2017-03-21 19:22:05 +00:00
def insert(data \\ %{}, opts \\ %{}) do
activity = build(data, opts)
2020-05-07 09:13:32 +00:00
case ActivityPub.insert(activity) do
ok = {:ok, activity} ->
ActivityPub.notify_and_stream(activity)
ok
error ->
error
end
2017-03-21 19:22:05 +00:00
end
def insert_list(times, data \\ %{}, opts \\ %{}) do
Enum.map(1..times, fn _n ->
2018-02-25 16:48:31 +00:00
{:ok, activity} = insert(data, opts)
2017-03-21 19:22:05 +00:00
activity
end)
end
def public_and_non_public do
2017-04-16 13:28:28 +00:00
user = Pleroma.Factory.insert(:user)
2017-03-21 19:22:05 +00:00
public = build(%{"id" => 1}, %{user: user})
2018-02-25 16:48:31 +00:00
non_public = build(%{"id" => 2, "to" => [user.follower_address]}, %{user: user})
2017-03-21 16:53:20 +00:00
{:ok, public} = ActivityPub.insert(public)
{:ok, non_public} = ActivityPub.insert(non_public)
%{
public: public,
non_public: non_public,
user: user
}
end
end