e733f167d0ec486fd46732d0da2e0ed198a50b49
[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 import Pleroma.Factory
14
15 test "it works for incoming listens" do
16 _user = insert(:user, ap_id: "http://mastodon.example.org/users/admin")
17
18 data = %{
19 "@context" => "https://www.w3.org/ns/activitystreams",
20 "to" => ["https://www.w3.org/ns/activitystreams#Public"],
21 "cc" => [],
22 "type" => "Listen",
23 "id" => "http://mastodon.example.org/users/admin/listens/1234/activity",
24 "actor" => "http://mastodon.example.org/users/admin",
25 "object" => %{
26 "type" => "Audio",
27 "id" => "http://mastodon.example.org/users/admin/listens/1234",
28 "attributedTo" => "http://mastodon.example.org/users/admin",
29 "title" => "lain radio episode 1",
30 "artist" => "lain",
31 "album" => "lain radio",
32 "length" => 180_000
33 }
34 }
35
36 {:ok, %Activity{local: false} = activity} = Transmogrifier.handle_incoming(data)
37
38 object = Object.normalize(activity, fetch: false)
39
40 assert object.data["title"] == "lain radio episode 1"
41 assert object.data["artist"] == "lain"
42 assert object.data["album"] == "lain radio"
43 assert object.data["length"] == 180_000
44 end
45
46 test "Funkwhale Audio object" do
47 Tesla.Mock.mock(fn
48 %{url: "https://channels.tests.funkwhale.audio/federation/actors/compositions"} ->
49 %Tesla.Env{
50 status: 200,
51 body: File.read!("test/fixtures/tesla_mock/funkwhale_channel.json"),
52 headers: HttpRequestMock.activitypub_object_headers()
53 }
54 end)
55
56 data = File.read!("test/fixtures/tesla_mock/funkwhale_create_audio.json") |> Jason.decode!()
57
58 {:ok, %Activity{local: false} = activity} = Transmogrifier.handle_incoming(data)
59
60 assert object = Object.normalize(activity, fetch: false)
61
62 assert object.data["to"] == ["https://www.w3.org/ns/activitystreams#Public"]
63
64 assert object.data["cc"] == []
65
66 assert object.data["url"] == "https://channels.tests.funkwhale.audio/library/tracks/74"
67
68 assert object.data["attachment"] == [
69 %{
70 "mediaType" => "audio/ogg",
71 "type" => "Link",
72 "name" => nil,
73 "blurhash" => nil,
74 "url" => [
75 %{
76 "href" =>
77 "https://channels.tests.funkwhale.audio/api/v1/listen/3901e5d8-0445-49d5-9711-e096cf32e515/?upload=42342395-0208-4fee-a38d-259a6dae0871&download=false",
78 "mediaType" => "audio/ogg",
79 "type" => "Link"
80 }
81 ]
82 }
83 ]
84 end
85 end