akkoma/test/support/factory.ex

114 lines
2.9 KiB
Elixir
Raw Normal View History

2017-04-13 13:49:24 +00:00
defmodule Pleroma.Factory do
use ExMachina.Ecto, repo: Pleroma.Repo
def user_factory do
user = %Pleroma.User{
2017-04-22 13:34:29 +00:00
name: sequence(:name, &"Test テスト User #{&1}"),
2017-04-13 13:49:24 +00:00
email: sequence(:email, &"user#{&1}@example.com"),
nickname: sequence(:nickname, &"nick#{&1}"),
password_hash: Comeonin.Pbkdf2.hashpwsalt("test"),
bio: sequence(:bio, &"Tester Number #{&1}")
2017-04-13 13:49:24 +00:00
}
%{ user | ap_id: Pleroma.User.ap_id(user), follower_address: Pleroma.User.ap_followers(user), following: [Pleroma.User.ap_id(user)] }
2017-04-13 13:49:24 +00:00
end
def note_factory do
2017-09-16 14:14:23 +00:00
text = sequence(:text, &"This is :moominmamma: note #{&1}")
2017-04-13 13:49:24 +00:00
user = insert(:user)
data = %{
"type" => "Note",
"content" => text,
2017-05-16 13:31:11 +00:00
"id" => Pleroma.Web.ActivityPub.Utils.generate_object_id,
2017-04-13 13:49:24 +00:00
"actor" => user.ap_id,
"to" => ["https://www.w3.org/ns/activitystreams#Public"],
2017-05-24 11:53:20 +00:00
"published" => DateTime.utc_now() |> DateTime.to_iso8601,
2017-04-14 16:08:47 +00:00
"likes" => [],
2017-04-26 06:47:22 +00:00
"like_count" => 0,
2017-05-18 16:18:27 +00:00
"context" => "2hu",
2017-10-31 16:49:47 +00:00
"summary" => "2hu",
2017-10-23 14:27:51 +00:00
"tag" => ["2hu"],
"emoji" => %{
"2hu" => "corndog.png"
}
2017-04-13 13:49:24 +00:00
}
%Pleroma.Object{
data: data
}
end
def note_activity_factory do
note = insert(:note)
data = %{
2017-05-16 13:31:11 +00:00
"id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id,
2017-04-13 15:05:35 +00:00
"type" => "Create",
2017-04-13 13:49:24 +00:00
"actor" => note.data["actor"],
"to" => note.data["to"],
"object" => note.data,
2017-05-24 11:53:20 +00:00
"published" => DateTime.utc_now() |> DateTime.to_iso8601,
2017-04-26 06:47:22 +00:00
"context" => note.data["context"]
2017-04-13 13:49:24 +00:00
}
%Pleroma.Activity{
2017-11-09 09:41:19 +00:00
data: data,
2018-02-17 09:26:44 +00:00
actor: data["actor"],
recipients: data["to"]
2017-04-13 13:49:24 +00:00
}
end
2017-04-13 15:05:35 +00:00
def like_activity_factory do
note_activity = insert(:note_activity)
user = insert(:user)
data = %{
2017-05-16 13:31:11 +00:00
"id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id,
2017-04-13 15:05:35 +00:00
"actor" => user.ap_id,
"type" => "Like",
"object" => note_activity.data["object"]["id"],
"published_at" => DateTime.utc_now() |> DateTime.to_iso8601
}
%Pleroma.Activity{
data: data
}
end
2017-04-21 16:54:21 +00:00
def follow_activity_factory do
follower = insert(:user)
followed = insert(:user)
data = %{
2017-05-16 13:31:11 +00:00
"id" => Pleroma.Web.ActivityPub.Utils.generate_activity_id,
2017-04-21 16:54:21 +00:00
"actor" => follower.ap_id,
"type" => "Follow",
"object" => followed.ap_id,
"published_at" => DateTime.utc_now() |> DateTime.to_iso8601
}
%Pleroma.Activity{
data: data
}
end
2017-04-21 01:59:11 +00:00
def websub_subscription_factory do
%Pleroma.Web.Websub.WebsubServerSubscription{
topic: "http://example.org",
callback: "http://example/org/callback",
secret: "here's a secret",
valid_until: NaiveDateTime.add(NaiveDateTime.utc_now, 100),
state: "requested"
}
end
def websub_client_subscription_factory do
%Pleroma.Web.Websub.WebsubClientSubscription{
topic: "http://example.org",
secret: "here's a secret",
valid_until: nil,
state: "requested",
subscribers: []
}
end
2017-04-13 13:49:24 +00:00
end