Welcome to mirror list, hosted at ThFree Co, Russian Federation.

commit_status_presenter.rb « presenters « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3ac9c00602c094542b51dc25d25175b153c8544a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

class CommitStatusPresenter < Gitlab::View::Presenter::Delegated
  CALLOUT_FAILURE_MESSAGES = {
      unknown_failure: 'There is an unknown failure, please try again',
      api_failure: 'There has been an API failure, please try again',
      stuck_or_timeout_failure: 'There has been a timeout failure or the job got stuck. Check your timeout limits or try again',
      runner_system_failure: 'There has been a runner system failure, please try again',
      missing_dependency_failure: 'There has been a missing dependency failure',
      # COMMENTED to check if tests gonna fail: runner_unsupported: 'Your runner is unsupported. Upgrade runner to use new features of your Pipeline',
  }.freeze

  presents :build

  def callout_failure_message
    CALLOUT_FAILURE_MESSAGES[failure_reason.to_sym]
  end

  def recoverable?
    failed? && !unrecoverable?
  end

  def unrecoverable?
    script_failure? || missing_dependency_failure? || runner_unsupported?
  end
end