forked from AkkomaGang/akkoma
6da6540036
Done via the following command:
git diff fcd5dd259a
--stat --name-only | xargs sed -i '/Pleroma Authors/c# Copyright © 2017-2020 Pleroma Authors <https:\/\/pleroma.social\/>'
58 lines
1.5 KiB
Elixir
58 lines
1.5 KiB
Elixir
# 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 =
|
|
post(conn, "/api/v1/pleroma/scrobble", %{
|
|
"title" => "lain radio episode 1",
|
|
"artist" => "lain",
|
|
"album" => "lain radio",
|
|
"length" => "180000"
|
|
})
|
|
|
|
assert %{"title" => "lain radio episode 1"} = json_response(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(conn, 200)
|
|
|
|
assert length(result) == 3
|
|
end
|
|
end
|
|
end
|