aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2019-02-09 22:01:08 +0100
committerlain <lain@soykaf.club>2019-02-10 16:52:42 +0100
commit8a270b438c993288853bad94be1daf39f7675e5c (patch)
treeab26d304e36c01de054091320c03eb9214e1f7e1 /test
parent1aebe8c6d94e8e49e96df16809a70c71d977310b (diff)
downloadpleroma-8a270b438c993288853bad94be1daf39f7675e5c.tar.gz
Do object insertion through Cachex
So we don't flood our postgres logs with errors. Should also make things slightly faster.
Diffstat (limited to 'test')
-rw-r--r--test/object_test.exs28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/object_test.exs b/test/object_test.exs
index 72194975d..ab6431012 100644
--- a/test/object_test.exs
+++ b/test/object_test.exs
@@ -57,4 +57,32 @@ defmodule Pleroma.ObjectTest do
assert cached_object.data["type"] == "Tombstone"
end
end
+
+ describe "insert_or_get" do
+ test "inserting the same object twice (by id) just returns the original object" do
+ data = %{data: %{"id" => Ecto.UUID.generate()}}
+ cng = Object.change(%Object{}, data)
+ {:ok, object} = Object.insert_or_get(cng)
+ {:ok, second_object} = Object.insert_or_get(cng)
+
+ Cachex.clear(:object_cache)
+ {:ok, third_object} = Object.insert_or_get(cng)
+
+ assert object == second_object
+ assert object == third_object
+ end
+ end
+
+ describe "create" do
+ test "inserts an object for a given data set" do
+ data = %{"id" => Ecto.UUID.generate()}
+
+ {:ok, object} = Object.create(data)
+ assert object.data["id"] == data["id"]
+
+ # Works when doing it twice.
+ {:ok, object} = Object.create(data)
+ assert object.data["id"] == data["id"]
+ end
+ end
end