1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.ActivityPub.Transmogrifier.AudioHandlingTest do
6 use Oban.Testing, repo: Pleroma.Repo
11 alias Pleroma.Web.ActivityPub.Transmogrifier
13 test "Funkwhale Audio object" do
15 %{url: "https://channels.tests.funkwhale.audio/federation/actors/compositions"} ->
18 body: File.read!("test/fixtures/tesla_mock/funkwhale_channel.json"),
19 headers: HttpRequestMock.activitypub_object_headers()
23 data = File.read!("test/fixtures/tesla_mock/funkwhale_create_audio.json") |> Jason.decode!()
25 {:ok, %Activity{local: false} = activity} = Transmogrifier.handle_incoming(data)
27 assert object = Object.normalize(activity, fetch: false)
29 assert object.data["to"] == ["https://www.w3.org/ns/activitystreams#Public"]
31 assert object.data["cc"] == [
32 "https://channels.tests.funkwhale.audio/federation/actors/compositions/followers"
35 assert object.data["url"] == "https://channels.tests.funkwhale.audio/library/tracks/74"
37 assert object.data["attachment"] == [
39 "mediaType" => "audio/ogg",
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",