Sha256: adbf740dd643caf2b69654c9d77409de90c7c633ae8fb6bb4d13bd3a626e16ac

Contents?: true

Size: 1.12 KB

Versions: 12

Compression:

Stored size: 1.12 KB

Contents

require 'test_plugin_helper'

class ForemanRemoteExecutionForemanTasksCleanerExtensionsTest < ActiveSupport::TestCase
  # Apply the same stubbing as in foreman-tasks
  before do
    # To stop dynflow from backing up actions, execution_plans and steps
    ForemanTasks.dynflow.world.persistence.adapter.stubs(:backup_to_csv)
    ForemanTasks::Cleaner.any_instance.stubs(:say) # Make the tests silent
    # Hack to make the tests pass due to ActiveRecord shenanigans
    ForemanTasks::Cleaner.any_instance.stubs(:delete_orphaned_dynflow_tasks)
  end

  it 'tries to delete associated job invocations' do
    job = FactoryBot.create(:job_invocation, :with_task)
    ForemanTasks::Cleaner.new(:filter => "id = #{job.task.id}").delete
    assert_empty JobInvocation.where(:id => job.id)
  end

  it 'removes orphaned job invocations' do
    job = FactoryBot.create(:job_invocation, :with_task)
    assert_equal 1, JobInvocation.where(:id => job.id).count
    job.task.delete
    job.reload
    assert_nil job.task
    refute_nil job.task_id
    ForemanTasks::Cleaner.new(:filter => '').delete
    assert_empty JobInvocation.where(:id => job.id)
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
foreman_remote_execution-14.1.1 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb
foreman_remote_execution-14.0.2 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb
foreman_remote_execution-14.0.1 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb
foreman_remote_execution-13.2.6 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb
foreman_remote_execution-14.0.0 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb
foreman_remote_execution-13.2.5 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb
foreman_remote_execution-13.2.4 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb
foreman_remote_execution-13.2.3 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb
foreman_remote_execution-13.2.2 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb
foreman_remote_execution-13.2.1 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb
foreman_remote_execution-13.2.0 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb
foreman_remote_execution-13.0.0 test/unit/concerns/foreman_tasks_cleaner_extensions_test.rb