summaryrefslogtreecommitdiff
path: root/lib/gitlab/ci/reports/test_case.rb
blob: 292e273a03aa031a89166b8172099863aa3cc831 (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
27
28
29
30
31
32
33
34
# frozen_string_literal: true

module Gitlab
  module Ci
    module Reports
      class TestCase
        STATUS_SUCCESS = 'success'.freeze
        STATUS_FAILED = 'failed'.freeze
        STATUS_SKIPPED = 'skipped'.freeze
        STATUS_ERROR = 'error'.freeze
        STATUS_TYPES = [STATUS_SUCCESS, STATUS_FAILED, STATUS_SKIPPED, STATUS_ERROR].freeze

        attr_reader :name, :classname, :execution_time, :status, :file, :system_output, :stack_trace, :key

        def initialize(name:, classname:, execution_time:, status:, file: nil, system_output: nil, stack_trace: nil)
          @name = name
          @classname = classname
          @file = file
          @execution_time = execution_time.to_f
          @status = status
          @system_output = system_output
          @stack_trace = stack_trace
          @key = sanitize_key_name("#{classname}_#{name}")
        end

        private

        def sanitize_key_name(key)
          key.gsub(/[^0-9A-Za-z]/, '-')
        end
      end
    end
  end
end