2018-12-23 20:11:29 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
defmodule Pleroma.Web.ErrorViewTest do
|
|
|
|
use Pleroma.Web.ConnCase, async: true
|
|
|
|
|
|
|
|
# Bring render/3 and render_to_string/3 for testing custom views
|
|
|
|
import Phoenix.View
|
|
|
|
|
|
|
|
test "renders 404.json" do
|
2018-03-30 13:01:53 +00:00
|
|
|
assert render(Pleroma.Web.ErrorView, "404.json", []) == %{errors: %{detail: "Page not found"}}
|
2017-03-17 16:09:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "render 500.json" do
|
|
|
|
assert render(Pleroma.Web.ErrorView, "500.json", []) ==
|
2018-03-30 13:01:53 +00:00
|
|
|
%{errors: %{detail: "Internal server error"}}
|
2017-03-17 16:09:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test "render any other" do
|
|
|
|
assert render(Pleroma.Web.ErrorView, "505.json", []) ==
|
2018-03-30 13:01:53 +00:00
|
|
|
%{errors: %{detail: "Internal server error"}}
|
2017-03-17 16:09:58 +00:00
|
|
|
end
|
|
|
|
end
|