Resolve follow activity from accept/reject without ID (#328)
[akkoma] / test / pleroma / web / activity_pub / transmogrifier / audio_handling_test.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.ActivityPub.Transmogrifier.AudioHandlingTest do
6 use Oban.Testing, repo: Pleroma.Repo
7 use Pleroma.DataCase
8
9 alias Pleroma.Activity
10 alias Pleroma.Object
11 alias Pleroma.Web.ActivityPub.Transmogrifier
12
13 test "Funkwhale Audio object" do
14 Tesla.Mock.mock(fn
15 %{url: "https://channels.tests.funkwhale.audio/federation/actors/compositions"} ->
16 %Tesla.Env{
17 status: 200,
18 body: File.read!("test/fixtures/tesla_mock/funkwhale_channel.json"),
19 headers: HttpRequestMock.activitypub_object_headers()
20 }
21 end)
22
23 data = File.read!("test/fixtures/tesla_mock/funkwhale_create_audio.json") |> Jason.decode!()
24
25 {:ok, %Activity{local: false} = activity} = Transmogrifier.handle_incoming(data)
26
27 assert object = Object.normalize(activity, fetch: false)
28
29 assert object.data["to"] == ["https://www.w3.org/ns/activitystreams#Public"]
30
31 assert object.data["cc"] == [
32 "https://channels.tests.funkwhale.audio/federation/actors/compositions/followers"
33 ]
34
35 assert object.data["url"] == "https://channels.tests.funkwhale.audio/library/tracks/74"
36
37 assert object.data["attachment"] == [
38 %{
39 "mediaType" => "audio/ogg",
40 "type" => "Link",
41 "url" => [
42 %{
43 "href" =>
44 "https://channels.tests.funkwhale.audio/api/v1/listen/3901e5d8-0445-49d5-9711-e096cf32e515/?upload=42342395-0208-4fee-a38d-259a6dae0871&download=false",
45 "mediaType" => "audio/ogg",
46 "type" => "Link"
47 }
48 ]
49 }
50 ]
51 end
52 end