Floatingghost
ad52135bf5
Some checks are pending
ci/woodpecker/push/build-amd64 Pipeline is pending
ci/woodpecker/push/build-arm64 Pipeline is pending
ci/woodpecker/push/docs Pipeline is pending
ci/woodpecker/push/lint Pipeline is pending
ci/woodpecker/push/test Pipeline is pending
ci/woodpecker/pr/build-amd64 Pipeline is pending
ci/woodpecker/pr/build-arm64 Pipeline is pending
ci/woodpecker/pr/docs Pipeline is pending
ci/woodpecker/pr/lint Pipeline is pending
ci/woodpecker/pr/test Pipeline is pending
78 lines
2 KiB
Elixir
78 lines
2 KiB
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2024 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.RichMedia.CardTest do
|
|
use Pleroma.DataCase, async: true
|
|
|
|
alias Pleroma.UnstubbedConfigMock, as: ConfigMock
|
|
alias Pleroma.Web.CommonAPI
|
|
alias Pleroma.Web.RichMedia.Card
|
|
|
|
import Mox
|
|
import Pleroma.Factory
|
|
import Tesla.Mock
|
|
|
|
setup do
|
|
mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
|
|
|
|
ConfigMock
|
|
|> stub_with(Pleroma.Test.StaticConfig)
|
|
|
|
:ok
|
|
end
|
|
|
|
setup do: clear_config([:rich_media, :enabled], true)
|
|
|
|
test "crawls URL in activity" do
|
|
user = insert(:user)
|
|
|
|
url = "https://example.com/ogp"
|
|
url_hash = Card.url_to_hash(url)
|
|
|
|
{:ok, activity} =
|
|
CommonAPI.post(user, %{
|
|
status: "[test](#{url})",
|
|
content_type: "text/markdown"
|
|
})
|
|
|
|
# wait for oban
|
|
Pleroma.Tests.ObanHelpers.perform_all()
|
|
|
|
assert %Card{url_hash: ^url_hash, fields: _} = Card.get_by_activity(activity)
|
|
end
|
|
|
|
test "recrawls URLs on status edits/updates" do
|
|
original_url = "https://google.com/"
|
|
original_url_hash = Card.url_to_hash(original_url)
|
|
updated_url = "https://yahoo.com/"
|
|
updated_url_hash = Card.url_to_hash(updated_url)
|
|
|
|
user = insert(:user)
|
|
{:ok, activity} = CommonAPI.post(user, %{status: "I like this site #{original_url}"})
|
|
|
|
# Force a backfill
|
|
Card.get_by_activity(activity)
|
|
# wait for oban
|
|
Pleroma.Tests.ObanHelpers.perform_all()
|
|
|
|
assert match?(
|
|
%Card{url_hash: ^original_url_hash, fields: _},
|
|
Card.get_by_activity(activity)
|
|
)
|
|
|
|
{:ok, _} = CommonAPI.update(user, activity, %{status: "I like this site #{updated_url}"})
|
|
|
|
activity = Pleroma.Activity.get_by_id(activity.id)
|
|
|
|
# Force a backfill
|
|
Card.get_by_activity(activity)
|
|
# wait for oban
|
|
Pleroma.Tests.ObanHelpers.perform_all()
|
|
|
|
assert match?(
|
|
%Card{url_hash: ^updated_url_hash, fields: _},
|
|
Card.get_by_activity(activity)
|
|
)
|
|
end
|
|
end
|