summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/reports/test_suite_summary_spec.rb
blob: 9acea8528324fb69401ee7f530f989c7262fe42a (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Reports::TestSuiteSummary do
  let(:build_report_result_1) { build(:ci_build_report_result) }
  let(:build_report_result_2) { build(:ci_build_report_result, :with_junit_success) }
  let(:test_suite_summary) { described_class.new([build_report_result_1, build_report_result_2]) }

  describe '#name' do
    subject { test_suite_summary.name }

    context 'when test suite summary has several build report results' do
      it 'returns the suite name' do
        expect(subject).to eq("rspec")
      end
    end
  end

  describe '#build_ids' do
    subject { test_suite_summary.build_ids }

    context 'when test suite summary has several build report results' do
      it 'returns the build ids' do
        expect(subject).to contain_exactly(build_report_result_1.build_id, build_report_result_2.build_id)
      end
    end
  end

  describe '#total_time' do
    subject { test_suite_summary.total_time }

    context 'when test suite summary has several build report results' do
      it 'returns the total time' do
        expect(subject).to eq(0.84)
      end
    end
  end

  describe '#success_count' do
    subject { test_suite_summary.success_count }

    context 'when test suite summary has several build report results' do
      it 'returns the total success' do
        expect(subject).to eq(2)
      end
    end
  end

  describe '#failed_count' do
    subject { test_suite_summary.failed_count }

    context 'when test suite summary has several build report results' do
      it 'returns the total failed' do
        expect(subject).to eq(0)
      end
    end
  end

  describe '#error_count' do
    subject { test_suite_summary.error_count }

    context 'when test suite summary has several build report results' do
      it 'returns the total errored' do
        expect(subject).to eq(2)
      end
    end
  end

  describe '#skipped_count' do
    subject { test_suite_summary.skipped_count }

    context 'when test suite summary has several build report results' do
      it 'returns the total skipped' do
        expect(subject).to eq(0)
      end
    end
  end

  describe '#total_count' do
    subject { test_suite_summary.total_count }

    context 'when test suite summary has several build report results' do
      it 'returns the total count' do
        expect(subject).to eq(4)
      end
    end
  end

  describe '#suite_error' do
    subject(:suite_error) { test_suite_summary.suite_error }

    context 'when there are no build report results with suite errors' do
      it { is_expected.to be_nil }
    end

    context 'when there are build report results with suite errors' do
      let(:build_report_result_1) do
        build(
          :ci_build_report_result,
          :with_junit_suite_error,
          test_suite_name: 'karma',
          test_suite_error: 'karma parsing error'
        )
      end

      let(:build_report_result_2) do
        build(
          :ci_build_report_result,
          :with_junit_suite_error,
          test_suite_name: 'karma',
          test_suite_error: 'another karma parsing error'
        )
      end

      it 'includes the first suite error from the collection of build report results' do
        expect(suite_error).to eq('karma parsing error')
      end
    end
  end

  describe '#to_h' do
    subject { test_suite_summary.to_h }

    context 'when test suite summary has several build report results' do
      it 'returns the total as a hash' do
        expect(subject).to include(:time, :count, :success, :failed, :skipped, :error, :suite_error)
      end
    end
  end
end