mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-13 12:31:13 +00:00
Add test validating the activity_id is correctly present in the Oban job
This was preventing the activity from being streamed over websockets.
This commit is contained in:
parent
93eb458c24
commit
634e3d4155
3 changed files with 8 additions and 1 deletions
0
changelog.d/rich_media_oban.skip
Normal file
0
changelog.d/rich_media_oban.skip
Normal file
|
@ -83,7 +83,7 @@ defmodule Pleroma.Web.RichMedia.Card do
|
|||
card
|
||||
|
||||
nil ->
|
||||
activity_id = Keyword.get(opts, :activity, nil)
|
||||
activity_id = Keyword.get(opts, :activity_id, nil)
|
||||
|
||||
RichMediaWorker.new(%{"op" => "backfill", "url" => url, "activity_id" => activity_id})
|
||||
|> Oban.insert()
|
||||
|
|
|
@ -3,12 +3,14 @@
|
|||
# SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
defmodule Pleroma.Web.RichMedia.CardTest do
|
||||
use Oban.Testing, repo: Pleroma.Repo
|
||||
use Pleroma.DataCase, async: true
|
||||
|
||||
alias Pleroma.Tests.ObanHelpers
|
||||
alias Pleroma.UnstubbedConfigMock, as: ConfigMock
|
||||
alias Pleroma.Web.CommonAPI
|
||||
alias Pleroma.Web.RichMedia.Card
|
||||
alias Pleroma.Workers.RichMediaWorker
|
||||
|
||||
import Mox
|
||||
import Pleroma.Factory
|
||||
|
@ -37,6 +39,11 @@ defmodule Pleroma.Web.RichMedia.CardTest do
|
|||
content_type: "text/markdown"
|
||||
})
|
||||
|
||||
assert_enqueued(
|
||||
worker: RichMediaWorker,
|
||||
args: %{"url" => url, "activity_id" => activity.id}
|
||||
)
|
||||
|
||||
ObanHelpers.perform_all()
|
||||
|
||||
assert %Card{url_hash: ^url_hash, fields: _} = Card.get_by_activity(activity)
|
||||
|
|
Loading…
Reference in a new issue