2019-07-10 05:13:23 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-02 20:38:50 +00:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2019-07-10 05:13:23 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-02-24 19:39:27 +00:00
|
|
|
defmodule Pleroma.Web.RichMedia.HelpersTest do
|
2024-02-06 19:34:59 +00:00
|
|
|
use Pleroma.DataCase, async: false
|
2019-02-24 19:39:27 +00:00
|
|
|
|
2023-12-12 10:03:46 +00:00
|
|
|
alias Pleroma.StaticStubbedConfigMock, as: ConfigMock
|
2019-02-24 19:39:27 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-06-25 14:54:03 +00:00
|
|
|
alias Pleroma.Web.RichMedia.Helpers
|
2019-02-24 19:39:27 +00:00
|
|
|
|
2023-12-12 09:28:11 +00:00
|
|
|
import Mox
|
2019-02-24 19:39:27 +00:00
|
|
|
import Pleroma.Factory
|
|
|
|
import Tesla.Mock
|
|
|
|
|
|
|
|
setup do
|
2024-02-06 19:34:59 +00:00
|
|
|
mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
|
2019-06-25 14:54:03 +00:00
|
|
|
|
2023-12-12 09:28:11 +00:00
|
|
|
ConfigMock
|
|
|
|
|> stub(:get, fn
|
|
|
|
[:rich_media, :enabled] -> false
|
|
|
|
path -> Pleroma.Test.StaticConfig.get(path)
|
|
|
|
end)
|
|
|
|
|> stub(:get, fn
|
|
|
|
path, default -> Pleroma.Test.StaticConfig.get(path, default)
|
|
|
|
end)
|
|
|
|
|
2019-02-24 19:39:27 +00:00
|
|
|
:ok
|
|
|
|
end
|
|
|
|
|
|
|
|
test "refuses to crawl incomplete URLs" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{
|
2020-05-12 19:59:26 +00:00
|
|
|
status: "[test](example.com/ogp)",
|
|
|
|
content_type: "text/markdown"
|
2019-02-24 19:39:27 +00:00
|
|
|
})
|
|
|
|
|
2023-12-12 09:28:11 +00:00
|
|
|
ConfigMock
|
|
|
|
|> stub(:get, fn
|
|
|
|
[:rich_media, :enabled] -> true
|
|
|
|
path -> Pleroma.Test.StaticConfig.get(path)
|
|
|
|
end)
|
2019-03-02 12:22:02 +00:00
|
|
|
|
|
|
|
assert %{} == Pleroma.Web.RichMedia.Helpers.fetch_data_for_activity(activity)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "refuses to crawl malformed URLs" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{
|
2020-05-12 19:59:26 +00:00
|
|
|
status: "[test](example.com[]/ogp)",
|
|
|
|
content_type: "text/markdown"
|
2019-03-02 12:22:02 +00:00
|
|
|
})
|
|
|
|
|
2023-12-12 09:28:11 +00:00
|
|
|
ConfigMock
|
|
|
|
|> stub(:get, fn
|
|
|
|
[:rich_media, :enabled] -> true
|
|
|
|
path -> Pleroma.Test.StaticConfig.get(path)
|
|
|
|
end)
|
2019-03-02 12:22:02 +00:00
|
|
|
|
2019-02-24 19:39:27 +00:00
|
|
|
assert %{} == Pleroma.Web.RichMedia.Helpers.fetch_data_for_activity(activity)
|
|
|
|
end
|
|
|
|
|
|
|
|
test "crawls valid, complete URLs" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
|
|
|
CommonAPI.post(user, %{
|
2020-05-12 19:59:26 +00:00
|
|
|
status: "[test](https://example.com/ogp)",
|
|
|
|
content_type: "text/markdown"
|
2019-02-24 19:39:27 +00:00
|
|
|
})
|
|
|
|
|
2023-12-12 09:28:11 +00:00
|
|
|
ConfigMock
|
|
|
|
|> stub(:get, fn
|
|
|
|
[:rich_media, :enabled] -> true
|
|
|
|
path -> Pleroma.Test.StaticConfig.get(path)
|
|
|
|
end)
|
2019-02-24 19:39:27 +00:00
|
|
|
|
2019-06-25 19:25:37 +00:00
|
|
|
assert %{page_url: "https://example.com/ogp", rich_media: _} =
|
2019-02-24 19:39:27 +00:00
|
|
|
Pleroma.Web.RichMedia.Helpers.fetch_data_for_activity(activity)
|
|
|
|
end
|
2019-05-17 18:49:43 +00:00
|
|
|
|
2024-02-05 00:24:52 +00:00
|
|
|
test "recrawls URLs on updates" do
|
|
|
|
original_url = "https://google.com/"
|
|
|
|
updated_url = "https://yahoo.com/"
|
|
|
|
|
|
|
|
Pleroma.StaticStubbedConfigMock
|
|
|
|
|> stub(:get, fn
|
|
|
|
[:rich_media, :enabled] -> true
|
|
|
|
path -> Pleroma.Test.StaticConfig.get(path)
|
|
|
|
end)
|
|
|
|
|
|
|
|
user = insert(:user)
|
|
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "I like this site #{original_url}"})
|
|
|
|
|
|
|
|
assert match?(
|
|
|
|
%{page_url: ^original_url, rich_media: _},
|
|
|
|
Pleroma.Web.RichMedia.Helpers.fetch_data_for_activity(activity)
|
|
|
|
)
|
|
|
|
|
|
|
|
{:ok, _} = CommonAPI.update(user, activity, %{status: "I like this site #{updated_url}"})
|
|
|
|
|
|
|
|
activity = Pleroma.Activity.get_by_id(activity.id)
|
|
|
|
|
|
|
|
assert match?(
|
|
|
|
%{page_url: ^updated_url, rich_media: _},
|
|
|
|
Pleroma.Web.RichMedia.Helpers.fetch_data_for_activity(activity)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-06-25 14:54:03 +00:00
|
|
|
test "refuses to crawl URLs of private network from posts" do
|
|
|
|
user = insert(:user)
|
|
|
|
|
|
|
|
{:ok, activity} =
|
2020-05-12 19:59:26 +00:00
|
|
|
CommonAPI.post(user, %{status: "http://127.0.0.1:4000/notice/9kCP7VNyPJXFOXDrgO"})
|
2019-06-25 14:54:03 +00:00
|
|
|
|
2020-05-12 19:59:26 +00:00
|
|
|
{:ok, activity2} = CommonAPI.post(user, %{status: "https://10.111.10.1/notice/9kCP7V"})
|
|
|
|
{:ok, activity3} = CommonAPI.post(user, %{status: "https://172.16.32.40/notice/9kCP7V"})
|
|
|
|
{:ok, activity4} = CommonAPI.post(user, %{status: "https://192.168.10.40/notice/9kCP7V"})
|
|
|
|
{:ok, activity5} = CommonAPI.post(user, %{status: "https://pleroma.local/notice/9kCP7V"})
|
2019-06-25 19:25:37 +00:00
|
|
|
|
2023-12-12 09:28:11 +00:00
|
|
|
ConfigMock
|
|
|
|
|> stub(:get, fn
|
|
|
|
[:rich_media, :enabled] -> true
|
|
|
|
path -> Pleroma.Test.StaticConfig.get(path)
|
|
|
|
end)
|
2019-05-17 18:49:43 +00:00
|
|
|
|
2024-02-05 05:09:37 +00:00
|
|
|
assert %{} == Helpers.fetch_data_for_activity(activity)
|
|
|
|
assert %{} == Helpers.fetch_data_for_activity(activity2)
|
|
|
|
assert %{} == Helpers.fetch_data_for_activity(activity3)
|
|
|
|
assert %{} == Helpers.fetch_data_for_activity(activity4)
|
|
|
|
assert %{} == Helpers.fetch_data_for_activity(activity5)
|
2019-05-17 18:49:43 +00:00
|
|
|
end
|
2019-02-24 19:39:27 +00:00
|
|
|
end
|