| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
 | # Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.PleromaAPI.ScrobbleControllerTest do
  use Pleroma.Web.ConnCase
  alias Pleroma.Web.CommonAPI
  describe "POST /api/v1/pleroma/scrobble" do
    test "works correctly" do
      %{conn: conn} = oauth_access(["write"])
      conn =
        conn
        |> put_req_header("content-type", "application/json")
        |> post("/api/v1/pleroma/scrobble", %{
          "title" => "lain radio episode 1",
          "artist" => "lain",
          "album" => "lain radio",
          "length" => "180000"
        })
      assert %{"title" => "lain radio episode 1"} = json_response_and_validate_schema(conn, 200)
    end
  end
  describe "GET /api/v1/pleroma/accounts/:id/scrobbles" do
    test "works correctly" do
      %{user: user, conn: conn} = oauth_access(["read"])
      {:ok, _activity} =
        CommonAPI.listen(user, %{
          title: "lain radio episode 1",
          artist: "lain",
          album: "lain radio"
        })
      {:ok, _activity} =
        CommonAPI.listen(user, %{
          title: "lain radio episode 2",
          artist: "lain",
          album: "lain radio"
        })
      {:ok, _activity} =
        CommonAPI.listen(user, %{
          title: "lain radio episode 3",
          artist: "lain",
          album: "lain radio"
        })
      conn = get(conn, "/api/v1/pleroma/accounts/#{user.id}/scrobbles")
      result = json_response_and_validate_schema(conn, 200)
      assert length(result) == 3
    end
  end
end
 |