Merge branch 'test_improvement' into 'develop'
Use Phoenix.ConnTest.redirected_to/2 See merge request pleroma/pleroma!3899
This commit is contained in:
commit
e2a63dadd1
|
@ -77,14 +77,9 @@ test "it returns a 302 for invalid host", %{conn: conn} do
|
|||
|
||||
with_mock Pleroma.ReverseProxy,
|
||||
call: fn _conn, _url, _opts -> %Conn{status: :success} end do
|
||||
%{resp_headers: resp_headers, status: status} = get(conn, proxy_url)
|
||||
conn = get(conn, proxy_url)
|
||||
|
||||
assert status == 302
|
||||
|
||||
assert Enum.any?(
|
||||
resp_headers,
|
||||
&(&1 == {"location", expected_url})
|
||||
)
|
||||
assert redirected_to(conn, 302) == expected_url
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -64,11 +64,6 @@ test "denies access to media if wrong Host", %{
|
|||
|> Map.put(:scheme, new_media_scheme)
|
||||
|> URI.to_string()
|
||||
|
||||
assert conn.status == 302
|
||||
|
||||
assert Enum.any?(
|
||||
conn.resp_headers,
|
||||
&(&1 == {"location", expected_url})
|
||||
)
|
||||
assert redirected_to(conn, 302) == expected_url
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue