summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/data_builder/pipeline_spec.rb
blob: a68f5943a6a91015338a69a24789480f6d259363 (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
require 'spec_helper'

describe Gitlab::DataBuilder::Pipeline do
  let(:user) { create(:user) }
  let(:project) { create(:project) }

  let(:pipeline) do
    create(:ci_pipeline,
           project: project,
           status: 'success',
           sha: project.commit.sha,
           ref: project.default_branch)
  end

  let!(:build) { create(:ci_build, pipeline: pipeline) }

  describe '.build' do
    let(:data) { described_class.build(pipeline) }
    let(:attributes) { data[:object_attributes] }
    let(:build_data) { data[:builds].first }
    let(:project_data) { data[:project] }

    it { expect(attributes).to be_a(Hash) }
    it { expect(attributes[:ref]).to eq(pipeline.ref) }
    it { expect(attributes[:sha]).to eq(pipeline.sha) }
    it { expect(attributes[:tag]).to eq(pipeline.tag) }
    it { expect(attributes[:id]).to eq(pipeline.id) }
    it { expect(attributes[:status]).to eq(pipeline.status) }

    it { expect(build_data).to be_a(Hash) }
    it { expect(build_data[:id]).to eq(build.id) }
    it { expect(build_data[:status]).to eq(build.status) }

    it { expect(project_data).to eq(project.hook_attrs(backward: false)) }
  end
end