Sha256: f31190851659b077b6a0693a5bdf0273fd182a42121fb88946da49a8554ed043

Contents?: true

Size: 739 Bytes

Versions: 96

Compression:

Stored size: 739 Bytes

Contents

require 'test_plugin_helper'

class UploadsControllerTest < ActionController::TestCase
  tests ForemanInventoryUpload::UploadsController

  test 'Returns latest upload status' do
    progress_output = mock('progress_output')
    test_org = FactoryBot.create(:organization)
    ForemanInventoryUpload::Async::ProgressOutput
      .expects(:get)
      .with(ForemanInventoryUpload::Async::UploadReportJob.output_label(test_org.id))
      .returns(progress_output)
    progress_output.expects(:full_output).returns('test output')

    get :last, params: { organization_id: test_org.id }, session: set_session_user

    assert_response :success
    actual = JSON.parse(response.body)
    assert_equal 'test output', actual['output']
  end
end

Version data entries

96 entries across 96 versions & 2 rubygems

Version Path
foreman_rh_cloud-3.0.18 test/controllers/uploads_controller_test.rb
foreman_rh_cloud-0.9.4.1 test/controllers/uploads_controller_test.rb
foreman_rh_cloud-1.0.4.1 test/controllers/uploads_controller_test.rb
foreman_rh_cloud-1.0.4 test/controllers/uploads_controller_test.rb
foreman_rh_cloud-2.0.4 test/controllers/uploads_controller_test.rb
foreman_rh_cloud-0.9.4 test/controllers/uploads_controller_test.rb
foreman_inventory_upload-2.0.4.pre.2 test/controllers/uploads_controller_test.rb
foreman_inventory_upload-2.0.4.pre.1 test/controllers/uploads_controller_test.rb
foreman_inventory_upload-2.0.3 test/controllers/uploads_controller_test.rb
foreman_inventory_upload-1.0.3 test/controllers/uploads_controller_test.rb
foreman_inventory_upload-0.9.2 test/controllers/uploads_controller_test.rb
foreman_inventory_upload-1.0.2 test/controllers/uploads_controller_test.rb
foreman_inventory_upload-0.9.1 test/controllers/uploads_controller_test.rb
foreman_inventory_upload-1.0.1 test/controllers/uploads_controller_test.rb
foreman_inventory_upload-0.9.0 test/controllers/uploads_controller_test.rb
foreman_inventory_upload-1.0.0 test/controllers/uploads_controller_test.rb