2019-07-14 21:01:32 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-07-14 21:01:32 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.MediaProxy.MediaProxyControllerTest do
|
|
|
|
use Pleroma.Web.ConnCase
|
2020-07-11 07:36:36 +00:00
|
|
|
|
2019-07-14 21:01:32 +00:00
|
|
|
import Mock
|
|
|
|
|
2020-07-11 07:36:36 +00:00
|
|
|
alias Pleroma.Web.MediaProxy
|
|
|
|
alias Plug.Conn
|
2019-07-14 21:01:32 +00:00
|
|
|
|
2020-06-14 18:02:57 +00:00
|
|
|
setup do
|
2020-06-17 18:13:55 +00:00
|
|
|
on_exit(fn -> Cachex.clear(:banned_urls_cache) end)
|
2020-06-14 18:02:57 +00:00
|
|
|
end
|
|
|
|
|
2019-07-14 21:01:32 +00:00
|
|
|
test "it returns 404 when MediaProxy disabled", %{conn: conn} do
|
2020-07-11 07:36:36 +00:00
|
|
|
clear_config([:media_proxy, :enabled], false)
|
2019-07-14 21:01:32 +00:00
|
|
|
|
2020-07-11 07:36:36 +00:00
|
|
|
assert %Conn{
|
2019-07-14 21:01:32 +00:00
|
|
|
status: 404,
|
|
|
|
resp_body: "Not Found"
|
|
|
|
} = get(conn, "/proxy/hhgfh/eeeee")
|
|
|
|
|
2020-07-11 07:36:36 +00:00
|
|
|
assert %Conn{
|
2019-07-14 21:01:32 +00:00
|
|
|
status: 404,
|
|
|
|
resp_body: "Not Found"
|
|
|
|
} = get(conn, "/proxy/hhgfh/eeee/fff")
|
|
|
|
end
|
|
|
|
|
2020-07-11 07:36:36 +00:00
|
|
|
describe "" do
|
|
|
|
setup do
|
|
|
|
clear_config([:media_proxy, :enabled], true)
|
|
|
|
clear_config([Pleroma.Web.Endpoint, :secret_key_base], "00000000000")
|
|
|
|
[url: MediaProxy.encode_url("https://google.fn/test.png")]
|
|
|
|
end
|
2019-07-14 21:01:32 +00:00
|
|
|
|
2020-07-11 07:36:36 +00:00
|
|
|
test "it returns 403 for invalid signature", %{conn: conn, url: url} do
|
|
|
|
Pleroma.Config.put([Pleroma.Web.Endpoint, :secret_key_base], "000")
|
|
|
|
%{path: path} = URI.parse(url)
|
|
|
|
|
|
|
|
assert %Conn{
|
|
|
|
status: 403,
|
|
|
|
resp_body: "Forbidden"
|
|
|
|
} = get(conn, path)
|
|
|
|
|
|
|
|
assert %Conn{
|
|
|
|
status: 403,
|
|
|
|
resp_body: "Forbidden"
|
|
|
|
} = get(conn, "/proxy/hhgfh/eeee")
|
|
|
|
|
|
|
|
assert %Conn{
|
|
|
|
status: 403,
|
|
|
|
resp_body: "Forbidden"
|
|
|
|
} = get(conn, "/proxy/hhgfh/eeee/fff")
|
|
|
|
end
|
2019-07-14 21:01:32 +00:00
|
|
|
|
2020-07-11 07:36:36 +00:00
|
|
|
test "redirects on valid url when filename is invalidated", %{conn: conn, url: url} do
|
|
|
|
invalid_url = String.replace(url, "test.png", "test-file.png")
|
|
|
|
response = get(conn, invalid_url)
|
|
|
|
assert response.status == 302
|
|
|
|
assert redirected_to(response) == url
|
|
|
|
end
|
2019-07-14 21:01:32 +00:00
|
|
|
|
2020-07-11 07:36:36 +00:00
|
|
|
test "it performs ReverseProxy.call with valid signature", %{conn: conn, url: url} do
|
|
|
|
with_mock Pleroma.ReverseProxy,
|
|
|
|
call: fn _conn, _url, _opts -> %Conn{status: :success} end do
|
|
|
|
assert %Conn{status: :success} = get(conn, url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test "it returns 404 when url is in banned_urls cache", %{conn: conn, url: url} do
|
|
|
|
MediaProxy.put_in_banned_urls("https://google.fn/test.png")
|
|
|
|
|
|
|
|
with_mock Pleroma.ReverseProxy,
|
|
|
|
call: fn _conn, _url, _opts -> %Conn{status: :success} end do
|
|
|
|
assert %Conn{status: 404, resp_body: "Not Found"} = get(conn, url)
|
|
|
|
end
|
2019-07-14 21:01:32 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|