2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
module Reports
|
|
|
|
class TestCase
|
2019-12-04 20:38:33 +05:30
|
|
|
STATUS_SUCCESS = 'success'
|
|
|
|
STATUS_FAILED = 'failed'
|
|
|
|
STATUS_SKIPPED = 'skipped'
|
|
|
|
STATUS_ERROR = 'error'
|
2018-11-18 11:00:15 +05:30
|
|
|
STATUS_TYPES = [STATUS_SUCCESS, STATUS_FAILED, STATUS_SKIPPED, STATUS_ERROR].freeze
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
attr_reader :name, :classname, :execution_time, :status, :file, :system_output, :stack_trace, :key, :attachment, :job
|
|
|
|
|
|
|
|
def initialize(params)
|
|
|
|
@name = params.fetch(:name)
|
|
|
|
@classname = params.fetch(:classname)
|
|
|
|
@file = params.fetch(:file, nil)
|
|
|
|
@execution_time = params.fetch(:execution_time).to_f
|
|
|
|
@status = params.fetch(:status)
|
|
|
|
@system_output = params.fetch(:system_output, nil)
|
|
|
|
@stack_trace = params.fetch(:stack_trace, nil)
|
|
|
|
@attachment = params.fetch(:attachment, nil)
|
|
|
|
@job = params.fetch(:job, nil)
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
@key = sanitize_key_name("#{classname}_#{name}")
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def has_attachment?
|
|
|
|
attachment.present?
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
def attachment_url
|
|
|
|
return unless has_attachment?
|
|
|
|
|
|
|
|
Rails.application.routes.url_helpers.file_project_job_artifacts_path(
|
|
|
|
job.project,
|
|
|
|
job.id,
|
|
|
|
attachment
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
def sanitize_key_name(key)
|
|
|
|
key.gsub(/[^0-9A-Za-z]/, '-')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|