From db08498a9ff9166afc5cf4df1afe55e96a74b4a3 Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Sun, 7 May 2017 20:13:10 +0200 Subject: Prevent double insertions. --- test/web/activity_pub/activity_pub_test.exs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'test') diff --git a/test/web/activity_pub/activity_pub_test.exs b/test/web/activity_pub/activity_pub_test.exs index a9a6e1364..2e361ad38 100644 --- a/test/web/activity_pub/activity_pub_test.exs +++ b/test/web/activity_pub/activity_pub_test.exs @@ -7,6 +7,13 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do import Pleroma.Factory describe "insertion" do + test "returns the activity if one with the same id is already in" do + activity = insert(:note_activity) + {:ok, new_activity}= ActivityPub.insert(activity.data) + + assert activity == new_activity + end + test "inserts a given map into the activity database, giving it an id if it has none." do data = %{ "ok" => true -- cgit v1.2.3