Sha256: e3201fff24b8a61156bce3c76b1e0717138422864190e6cefe8d664c2c298e13

Contents?: true

Size: 752 Bytes

Versions: 141

Compression:

Stored size: 752 Bytes

Contents

require 'test_plugin_helper'

class ReportsControllerTest < ActionController::TestCase
  tests ForemanInventoryUpload::ReportsController

  test 'Returns latest report generation status' do
    progress_output = mock('progress_output')
    test_org = FactoryBot.create(:organization)
    ForemanInventoryUpload::Async::ProgressOutput
      .expects(:get)
      .with(ForemanInventoryUpload::Async::GenerateReportJob.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

141 entries across 141 versions & 2 rubygems

Version Path
foreman_rh_cloud-9.0.59 test/controllers/reports_controller_test.rb
foreman_rh_cloud-11.0.2 test/controllers/reports_controller_test.rb
foreman_rh_cloud-11.0.1 test/controllers/reports_controller_test.rb
foreman_rh_cloud-11.0.0 test/controllers/reports_controller_test.rb
foreman_rh_cloud-9.0.58 test/controllers/reports_controller_test.rb
foreman_rh_cloud-10.0.2 test/controllers/reports_controller_test.rb
foreman_rh_cloud-9.0.57 test/controllers/reports_controller_test.rb
foreman_rh_cloud-10.0.1 test/controllers/reports_controller_test.rb
foreman_rh_cloud-9.0.56 test/controllers/reports_controller_test.rb
foreman_rh_cloud-9.0.55 test/controllers/reports_controller_test.rb
foreman_rh_cloud-9.0.54 test/controllers/reports_controller_test.rb
foreman_rh_cloud-9.0.53 test/controllers/reports_controller_test.rb
foreman_rh_cloud-9.0.52 test/controllers/reports_controller_test.rb
foreman_rh_cloud-8.0.52 test/controllers/reports_controller_test.rb
foreman_rh_cloud-9.0.51 test/controllers/reports_controller_test.rb
foreman_rh_cloud-8.0.51 test/controllers/reports_controller_test.rb
foreman_rh_cloud-7.0.48 test/controllers/reports_controller_test.rb
foreman_rh_cloud-7.0.47 test/controllers/reports_controller_test.rb
foreman_rh_cloud-8.0.50 test/controllers/reports_controller_test.rb
foreman_rh_cloud-8.0.49 test/controllers/reports_controller_test.rb