pleroma/test/web/mastodon_api/views/subscription_view_test.exs

24 lines
768 B
Elixir
Raw Normal View History

2019-03-06 07:20:12 -06:00
# Pleroma: A lightweight social networking server
2020-03-03 16:44:49 -06:00
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
2019-03-06 07:20:12 -06:00
# SPDX-License-Identifier: AGPL-3.0-only
2020-04-15 13:59:25 -05:00
defmodule Pleroma.Web.MastodonAPI.SubscriptionViewTest do
2019-03-06 07:20:12 -06:00
use Pleroma.DataCase
import Pleroma.Factory
2020-04-15 13:59:25 -05:00
alias Pleroma.Web.MastodonAPI.SubscriptionView, as: View
2019-03-06 07:20:12 -06:00
alias Pleroma.Web.Push
test "Represent a subscription" do
subscription = insert(:push_subscription, data: %{"alerts" => %{"mention" => true}})
expected = %{
alerts: %{"mention" => true},
endpoint: subscription.endpoint,
id: to_string(subscription.id),
server_key: Keyword.get(Push.vapid_config(), :public_key)
}
2020-04-15 13:59:25 -05:00
assert expected == View.render("show.json", %{subscription: subscription})
2019-03-06 07:20:12 -06:00
end
end