summaryrefslogtreecommitdiff
path: root/spec/serializers/test_suite_entity_spec.rb
blob: bd88d23501316658e3a883be163b47e17b176e93 (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
# frozen_string_literal: true

require 'spec_helper'

describe TestSuiteEntity do
  let(:pipeline)   { create(:ci_pipeline, :with_test_reports) }
  let(:test_suite) { pipeline.test_reports.test_suites.each_value.first }
  let(:entity)     { described_class.new(test_suite) }

  describe '#as_json' do
    subject(:as_json) { entity.as_json }

    it 'contains the suite name' do
      expect(as_json[:name]).to be_present
    end

    it 'contains the total time' do
      expect(as_json[:total_time]).to be_present
    end

    it 'contains the counts' do
      expect(as_json[:total_count]).to eq(4)
      expect(as_json[:success_count]).to eq(2)
      expect(as_json[:failed_count]).to eq(2)
      expect(as_json[:skipped_count]).to eq(0)
      expect(as_json[:error_count]).to eq(0)
    end

    it 'contains the test cases' do
      expect(as_json[:test_cases].count).to eq(4)
    end

    it 'contains an empty error message' do
      expect(as_json[:suite_error]).to be_nil
    end

    context 'with a suite error' do
      before do
        test_suite.set_suite_error('a really bad error')
      end

      it 'contains the suite name' do
        expect(as_json[:name]).to be_present
      end

      it 'contains the total time' do
        expect(as_json[:total_time]).to be_present
      end

      it 'returns all the counts as 0' do
        expect(as_json[:total_count]).to eq(0)
        expect(as_json[:success_count]).to eq(0)
        expect(as_json[:failed_count]).to eq(0)
        expect(as_json[:skipped_count]).to eq(0)
        expect(as_json[:error_count]).to eq(0)
      end

      it 'returns no test cases' do
        expect(as_json[:test_cases]).to be_empty
      end

      it 'returns a suite error' do
        expect(as_json[:suite_error]).to eq('a really bad error')
      end
    end
  end
end