forked from AkkomaGang/akkoma
SideEffects: Extend ChatMessage test.
This commit is contained in:
parent
2e78686686
commit
4b04785071
1 changed files with 20 additions and 0 deletions
|
@ -55,6 +55,26 @@ test "it creates a Chat for the local users and bumps the unread count" do
|
|||
# The local user will get a chat
|
||||
chat = Chat.get(recipient.id, author.ap_id)
|
||||
assert chat
|
||||
|
||||
author = insert(:user, local: true)
|
||||
recipient = insert(:user, local: true)
|
||||
|
||||
{:ok, chat_message_data, _meta} = Builder.chat_message(author, recipient.ap_id, "hey")
|
||||
{:ok, chat_message_object} = Object.create(chat_message_data)
|
||||
|
||||
{:ok, create_activity_data, _meta} =
|
||||
Builder.create(author, chat_message_object.data["id"], [recipient.ap_id])
|
||||
|
||||
{:ok, create_activity, _meta} = ActivityPub.persist(create_activity_data, local: false)
|
||||
|
||||
{:ok, _create_activity, _meta} = SideEffects.handle(create_activity)
|
||||
|
||||
# Both users are local and get the chat
|
||||
chat = Chat.get(author.id, recipient.ap_id)
|
||||
assert chat
|
||||
|
||||
chat = Chat.get(recipient.id, author.ap_id)
|
||||
assert chat
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue