summaryrefslogtreecommitdiff
path: root/spec/serializers/build_entity_spec.rb
blob: 6dcfaec259e15ea84afdf69cb88c5530246c8ed9 (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
require 'spec_helper'

describe BuildEntity do
  let(:entity) do
    described_class.new(build, request: double)
  end

  subject { entity.as_json }

  context 'when build is a regular job' do
    let(:build) { create(:ci_build) }

    it 'contains paths to build page and retry action' do
      expect(subject).to include(:build_path, :retry_path)
      expect(subject).not_to include(:play_path)
    end

    it 'does not contain sensitive information' do
      expect(subject).not_to include(/token/)
      expect(subject).not_to include(/variables/)
    end
  end

  context 'when build is a manual action' do
    let(:build) { create(:ci_build, :manual) }

    it 'contains path to play action' do
      expect(subject).to include(:play_path)
    end
  end
end