Heavily inspired by https://git.pleroma.social/pleroma/pleroma/-/merge_requests/3777 Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/273
		
			
				
	
	
		
			64 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
# Pleroma: A lightweight social networking server
 | 
						|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
 | 
						|
# SPDX-License-Identifier: AGPL-3.0-only
 | 
						|
 | 
						|
defmodule Pleroma.Workers.PurgeExpiredActivityTest do
 | 
						|
  use Pleroma.DataCase, async: true
 | 
						|
  use Oban.Testing, repo: Pleroma.Repo
 | 
						|
 | 
						|
  import Pleroma.Factory
 | 
						|
 | 
						|
  alias Pleroma.Workers.PurgeExpiredActivity
 | 
						|
 | 
						|
  test "enqueue job" do
 | 
						|
    activity = insert(:note_activity)
 | 
						|
 | 
						|
    assert {:ok, _} =
 | 
						|
             PurgeExpiredActivity.enqueue(%{
 | 
						|
               activity_id: activity.id,
 | 
						|
               expires_at: DateTime.add(DateTime.utc_now(), 3601)
 | 
						|
             })
 | 
						|
 | 
						|
    assert_enqueued(
 | 
						|
      worker: Pleroma.Workers.PurgeExpiredActivity,
 | 
						|
      args: %{activity_id: activity.id}
 | 
						|
    )
 | 
						|
 | 
						|
    assert {:ok, _} =
 | 
						|
             perform_job(Pleroma.Workers.PurgeExpiredActivity, %{activity_id: activity.id})
 | 
						|
 | 
						|
    assert %Oban.Job{} = Pleroma.Workers.PurgeExpiredActivity.get_expiration(activity.id)
 | 
						|
  end
 | 
						|
 | 
						|
  test "error if user was not found" do
 | 
						|
    activity = insert(:note_activity)
 | 
						|
 | 
						|
    assert {:ok, _} =
 | 
						|
             PurgeExpiredActivity.enqueue(%{
 | 
						|
               activity_id: activity.id,
 | 
						|
               expires_at: DateTime.add(DateTime.utc_now(), 3601)
 | 
						|
             })
 | 
						|
 | 
						|
    user = Pleroma.User.get_by_ap_id(activity.actor)
 | 
						|
    Pleroma.Repo.delete(user)
 | 
						|
 | 
						|
    assert {:error, :user_not_found} =
 | 
						|
             perform_job(Pleroma.Workers.PurgeExpiredActivity, %{activity_id: activity.id})
 | 
						|
  end
 | 
						|
 | 
						|
  test "error if actiivity was not found" do
 | 
						|
    assert {:ok, _} =
 | 
						|
             PurgeExpiredActivity.enqueue(%{
 | 
						|
               activity_id: "some_id",
 | 
						|
               expires_at: DateTime.add(DateTime.utc_now(), 3601)
 | 
						|
             })
 | 
						|
 | 
						|
    assert {:error, :activity_not_found} =
 | 
						|
             perform_job(Pleroma.Workers.PurgeExpiredActivity, %{activity_id: "some_if"})
 | 
						|
  end
 | 
						|
 | 
						|
  test "has a timeout" do
 | 
						|
    clear_config([:workers, :timeout, :activity_expiration], 50)
 | 
						|
    assert Pleroma.Workers.PurgeExpiredActivity.timeout(%Oban.Job{}) == 50
 | 
						|
  end
 | 
						|
end
 |