Class: Inferno::Web::Controllers::TestRuns::Create

Inherits:
Controller
  • Object
show all
Includes:
Utils::PersistInputs, Utils::VerifyRunnable
Defined in:
lib/inferno/apps/web/controllers/test_runs/create.rb

Constant Summary collapse

PARAMS =
[:test_session_id, :test_suite_id, :test_group_id, :test_id].freeze

Instance Method Summary collapse

Methods included from Utils::PersistInputs

#persist_inputs

Methods included from Utils::VerifyRunnable

#verify_runnable

Methods inherited from Controller

call, inherited, resource_class, resource_name

Instance Method Details

#create_params(params) ⇒ Object



57
58
59
# File 'lib/inferno/apps/web/controllers/test_runs/create.rb', line 57

def create_params(params)
  params.to_h.slice(*PARAMS)
end

#handle(req, res) ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/inferno/apps/web/controllers/test_runs/create.rb', line 20

def handle(req, res)
  test_session = test_sessions_repo.find(req.params[:test_session_id])

  # if testsession.nil?
  if test_runs_repo.active_test_run_for_session?(test_session.id)
    halt 409, { error: 'Cannot run new test while another test run is in progress' }.to_json
  end

  verify_runnable(
    repo.build_entity(create_params(req.params)).runnable,
    req.params[:inputs],
    test_session.suite_options
  )

  test_run = repo.create(create_params(req.params).merge(status: 'queued'))

  res.body = serialize(test_run, suite_options: test_session.suite_options)

  persist_inputs(session_data_repo, req.params, test_run.runnable)

  Jobs.perform(
    Jobs::ExecuteTestRun,
    test_run.id,
    tags: [
      "session:#{test_session.id}",
      "run:#{test_run.test_suite_id || test_run.test_group_id || test_run.test_id}"
    ]
  )
rescue Sequel::ValidationFailed, Sequel::ForeignKeyConstraintViolation,
       Inferno::Exceptions::RequiredInputsNotFound,
       Inferno::Exceptions::NotUserRunnableException => e
  halt 422, { errors: e.message }.to_json
rescue StandardError => e
  Application['logger'].error(e.full_message)
  halt 500, { errors: e.message }.to_json
end