diff options
author | lain <lain@soykaf.club> | 2019-05-08 17:37:00 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2019-05-08 17:37:00 +0200 |
commit | fcf2f38d20eed40a53b03374467d9e52b013da07 (patch) | |
tree | 28b1aba2145b85b8e1cd95793156afbb9b7aec12 /test | |
parent | 289b8224ac97a873569255b97f7391c2389ac3dc (diff) | |
download | pleroma-fcf2f38d20eed40a53b03374467d9e52b013da07.tar.gz pleroma-fcf2f38d20eed40a53b03374467d9e52b013da07.zip |
Conversations: Add a function to 'import' old DMs.
Diffstat (limited to 'test')
-rw-r--r-- | test/conversation_test.exs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/conversation_test.exs b/test/conversation_test.exs index f3300e7d1..59368b0e7 100644 --- a/test/conversation_test.exs +++ b/test/conversation_test.exs @@ -9,6 +9,24 @@ defmodule Pleroma.ConversationTest do import Pleroma.Factory + test "it goes through old direct conversations" do + user = insert(:user) + other_user = insert(:user) + + {:ok, _activity} = + CommonAPI.post(user, %{"visibility" => "direct", "status" => "hey @#{other_user.nickname}"}) + + Repo.delete_all(Conversation) + Repo.delete_all(Conversation.Participation) + + refute Repo.one(Conversation) + + Conversation.bump_for_all_activities() + + assert Repo.one(Conversation) + assert length(Repo.all(Conversation.Participation)) == 2 + end + test "it creates a conversation for given ap_id" do assert {:ok, %Conversation{} = conversation} = Conversation.create_for_ap_id("https://some_ap_id") |