2020-01-26 21:36:50 +01:00
|
|
|
defmodule Mobilizon.Web.ErrorViewTest do
|
|
|
|
use Mobilizon.Web.ConnCase, async: true
|
|
|
|
|
|
|
|
# Bring render/3 and render_to_string/3 for testing custom views
|
|
|
|
import Phoenix.View
|
|
|
|
|
2020-01-28 20:15:59 +01:00
|
|
|
alias Mobilizon.Web.ErrorView
|
|
|
|
|
2020-06-09 16:08:03 +02:00
|
|
|
test "renders 404.html", %{conn: conn} do
|
2020-02-18 08:57:00 +01:00
|
|
|
# Produced HTML might have new lines inside
|
2020-06-09 16:08:03 +02:00
|
|
|
assert Regex.replace(
|
|
|
|
~r/(\r\n|\n|\r) +/,
|
|
|
|
render_to_string(ErrorView, "404.html", %{conn: conn}),
|
|
|
|
" "
|
|
|
|
) =~
|
2020-01-26 21:36:50 +01:00
|
|
|
"We're sorry but mobilizon doesn't work properly without JavaScript enabled. Please enable it to continue."
|
|
|
|
end
|
|
|
|
|
|
|
|
test "render 500.html" do
|
2020-10-09 12:17:33 +02:00
|
|
|
assert render_to_string(ErrorView, "500.html", []) =~
|
|
|
|
Phoenix.HTML.html_escape("We're sorry, but something went wrong on our end.")
|
|
|
|
|> Phoenix.HTML.safe_to_string()
|
2020-01-26 21:36:50 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
test "render any other" do
|
2020-10-09 12:17:33 +02:00
|
|
|
assert render_to_string(ErrorView, "505.html", []) =~
|
|
|
|
Phoenix.HTML.html_escape("We're sorry, but something went wrong on our end.")
|
|
|
|
|> Phoenix.HTML.safe_to_string()
|
2020-01-26 21:36:50 +01:00
|
|
|
end
|
|
|
|
end
|