diff options
| author | Maxim Filippov <colixer@gmail.com> | 2019-10-18 18:35:58 +0200 | 
|---|---|---|
| committer | Maxim Filippov <colixer@gmail.com> | 2019-10-18 18:35:58 +0200 | 
| commit | 019147f1153f0df844997c04c31753c18a22509f (patch) | |
| tree | 4086ddbb3c92cd0439a973ec6f59bb2c0c758c4c /test/object | |
| parent | 2473702be22a44070fcff439ac901f5b9bb0586a (diff) | |
| parent | 4053a82f41691195d1b29cc9eb3f6ed6814ee12f (diff) | |
| download | pleroma-019147f1153f0df844997c04c31753c18a22509f.tar.gz pleroma-019147f1153f0df844997c04c31753c18a22509f.zip  | |
Merge branch 'develop' into feature/relay-list
Diffstat (limited to 'test/object')
| -rw-r--r-- | test/object/containment_test.exs | 2 | ||||
| -rw-r--r-- | test/object/fetcher_test.exs | 39 | 
2 files changed, 4 insertions, 37 deletions
diff --git a/test/object/containment_test.exs b/test/object/containment_test.exs index 61cd1b412..0dc2728b9 100644 --- a/test/object/containment_test.exs +++ b/test/object/containment_test.exs @@ -65,7 +65,7 @@ defmodule Pleroma.Object.ContainmentTest do        assert capture_log(fn ->                 {:error, _} = User.get_or_fetch_by_ap_id("https://n1u.moe/users/rye")               end) =~ -               "[error] Could not decode user at fetch https://n1u.moe/users/rye, {:error, :error}" +               "[error] Could not decode user at fetch https://n1u.moe/users/rye"      end    end diff --git a/test/object/fetcher_test.exs b/test/object/fetcher_test.exs index 895a73d2c..9ae6b015d 100644 --- a/test/object/fetcher_test.exs +++ b/test/object/fetcher_test.exs @@ -27,31 +27,16 @@ defmodule Pleroma.Object.FetcherTest do    end    describe "actor origin containment" do -    test_with_mock "it rejects objects with a bogus origin", -                   Pleroma.Web.OStatus, -                   [:passthrough], -                   [] do +    test "it rejects objects with a bogus origin" do        {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity.json") - -      refute called(Pleroma.Web.OStatus.fetch_activity_from_url(:_))      end -    test_with_mock "it rejects objects when attributedTo is wrong (variant 1)", -                   Pleroma.Web.OStatus, -                   [:passthrough], -                   [] do +    test "it rejects objects when attributedTo is wrong (variant 1)" do        {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity2.json") - -      refute called(Pleroma.Web.OStatus.fetch_activity_from_url(:_))      end -    test_with_mock "it rejects objects when attributedTo is wrong (variant 2)", -                   Pleroma.Web.OStatus, -                   [:passthrough], -                   [] do +    test "it rejects objects when attributedTo is wrong (variant 2)" do        {:error, _} = Fetcher.fetch_object_from_id("https://info.pleroma.site/activity3.json") - -      refute called(Pleroma.Web.OStatus.fetch_activity_from_url(:_))      end    end @@ -71,24 +56,6 @@ defmodule Pleroma.Object.FetcherTest do        assert object == object_again      end - -    test "it works with objects only available via Ostatus" do -      {:ok, object} = Fetcher.fetch_object_from_id("https://shitposter.club/notice/2827873") -      assert activity = Activity.get_create_by_object_ap_id(object.data["id"]) -      assert activity.data["id"] - -      {:ok, object_again} = Fetcher.fetch_object_from_id("https://shitposter.club/notice/2827873") - -      assert object == object_again -    end - -    test "it correctly stitches up conversations between ostatus and ap" do -      last = "https://mstdn.io/users/mayuutann/statuses/99568293732299394" -      {:ok, object} = Fetcher.fetch_object_from_id(last) - -      object = Object.get_by_ap_id(object.data["inReplyTo"]) -      assert object -    end    end    describe "implementation quirks" do  | 
