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

test_report_summary_spec.rb « reports « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70d828511254e396effe23d8fb2854c2b8096e30 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Reports::TestReportSummary 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_report_summary) { described_class.new([build_report_result_1, build_report_result_2]) }

  describe '#total' do
    subject { test_report_summary.total }

    context 'when test report summary has several build report results' do
      it 'returns test suite summary object' do
        expect(subject).to be_a_kind_of(Gitlab::Ci::Reports::TestSuiteSummary)
      end
    end
  end

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

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

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

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

  describe '#success_count' do
    subject { test_report_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_report_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_report_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_report_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 '#test_suites' do
    subject { test_report_summary.test_suites }

    context 'when test report summary has several build report results' do
      it 'returns test suites grouped by name' do
        expect(subject.keys).to eq(["rspec"])
        expect(subject.keys.size).to eq(1)
      end
    end
  end
end