pipelines_controller_spec.rb 6.1 KB
Newer Older
1 2 3
require 'spec_helper'

describe Projects::PipelinesController do
4 5
  include ApiHelpers

6
  let(:user) { create(:user) }
7
  let(:project) { create(:project, :public) }
K
Kamil Trzcinski 已提交
8
  let(:feature) { ProjectFeature::DISABLED }
9 10

  before do
11 12
    stub_not_protect_default_branch
    project.add_developer(user)
K
Kamil Trzcinski 已提交
13 14
    project.project_feature.update(
      builds_access_level: feature)
15

16 17 18
    sign_in(user)
  end

19 20
  describe 'GET index.json' do
    before do
21 22 23 24
      create(:ci_empty_pipeline, status: 'pending', project: project)
      create(:ci_empty_pipeline, status: 'running', project: project)
      create(:ci_empty_pipeline, status: 'created', project: project)
      create(:ci_empty_pipeline, status: 'success', project: project)
25

26 27
      get :index, namespace_id: project.namespace,
                  project_id: project,
28 29 30 31 32
                  format: :json
    end

    it 'returns JSON with serialized pipelines' do
      expect(response).to have_http_status(:ok)
33
      expect(response).to match_response_schema('pipeline')
34 35

      expect(json_response).to include('pipelines')
36 37 38 39 40
      expect(json_response['pipelines'].count).to eq 4
      expect(json_response['count']['all']).to eq 4
      expect(json_response['count']['running']).to eq 1
      expect(json_response['count']['pending']).to eq 1
      expect(json_response['count']['finished']).to eq 1
41 42 43
    end
  end

44
  describe 'GET show JSON' do
45
    let(:pipeline) { create(:ci_pipeline_with_one_job, project: project) }
46 47 48 49 50 51 52 53 54 55

    it 'returns the pipeline' do
      get_pipeline_json

      expect(response).to have_http_status(:ok)
      expect(json_response).not_to be_an(Array)
      expect(json_response['id']).to be(pipeline.id)
      expect(json_response['details']).to have_key 'stages'
    end

56
    context 'when the pipeline has multiple stages and groups', :request_store do
57 58 59 60 61 62 63
      before do
        create_build('build', 0, 'build')
        create_build('test', 1, 'rspec 0')
        create_build('deploy', 2, 'production')
        create_build('post deploy', 3, 'pages 0')
      end

64
      let(:project) { create(:project, :repository) }
65 66 67 68
      let(:pipeline) do
        create(:ci_empty_pipeline, project: project, user: user, sha: project.commit.id)
      end

69 70 71
      it 'does not perform N + 1 queries' do
        control_count = ActiveRecord::QueryRecorder.new { get_pipeline_json }.count

72 73 74 75 76 77
        create_build('test', 1, 'rspec 1')
        create_build('test', 1, 'spinach 0')
        create_build('test', 1, 'spinach 1')
        create_build('test', 1, 'audit')
        create_build('post deploy', 3, 'pages 1')
        create_build('post deploy', 3, 'pages 2')
78

79 80
        new_count = ActiveRecord::QueryRecorder.new { get_pipeline_json }.count
        expect(new_count).to be_within(12).of(control_count)
81 82 83 84 85 86
      end
    end

    def get_pipeline_json
      get :show, namespace_id: project.namespace, project_id: project, id: pipeline, format: :json
    end
87 88 89 90

    def create_build(stage, stage_idx, name)
      create(:ci_build, pipeline: pipeline, stage: stage, stage_idx: stage_idx, name: name)
    end
91 92
  end

93
  describe 'GET stages.json' do
94 95
    let(:pipeline) { create(:ci_pipeline, project: project) }

96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
    context 'when accessing existing stage' do
      before do
        create(:ci_build, pipeline: pipeline, stage: 'build')

        get_stage('build')
      end

      it 'returns html source for stage dropdown' do
        expect(response).to have_http_status(:ok)
        expect(response).to render_template('projects/pipelines/_stage')
        expect(json_response).to include('html')
      end
    end

    context 'when accessing unknown stage' do
      before do
        get_stage('test')
      end

115 116 117
      it 'responds with not found' do
        expect(response).to have_http_status(:not_found)
      end
118 119
    end

120
    def get_stage(name)
121 122
      get :stage, namespace_id: project.namespace,
                  project_id: project,
123 124 125 126
                  id: pipeline.id,
                  stage: name,
                  format: :json
    end
127
  end
S
Shinya Maeda 已提交
128 129

  describe 'GET status.json' do
130 131
    let(:pipeline) { create(:ci_pipeline, project: project) }
    let(:status) { pipeline.detailed_status(double('user')) }
S
Shinya Maeda 已提交
132

133 134 135 136 137 138
    before do
      get :status, namespace_id: project.namespace,
                   project_id: project,
                   id: pipeline.id,
                   format: :json
    end
S
Shinya Maeda 已提交
139

140 141 142 143 144
    it 'return a detailed pipeline status in json' do
      expect(response).to have_http_status(:ok)
      expect(json_response['text']).to eq status.text
      expect(json_response['label']).to eq status.label
      expect(json_response['icon']).to eq status.icon
145
      expect(json_response['favicon']).to eq "/assets/ci_favicons/#{status.favicon}.ico"
S
Shinya Maeda 已提交
146 147
    end
  end
148 149 150 151 152 153 154 155 156 157 158 159

  describe 'POST retry.json' do
    let!(:pipeline) { create(:ci_pipeline, :failed, project: project) }
    let!(:build) { create(:ci_build, :failed, pipeline: pipeline) }

    before do
      post :retry, namespace_id: project.namespace,
                   project_id: project,
                   id: pipeline.id,
                   format: :json
    end

K
Kamil Trzcinski 已提交
160 161
    context 'when builds are enabled' do
      let(:feature) { ProjectFeature::ENABLED }
162

K
Kamil Trzcinski 已提交
163 164 165 166 167 168 169 170 171 172
      it 'retries a pipeline without returning any content' do
        expect(response).to have_http_status(:no_content)
        expect(build.reload).to be_retried
      end
    end

    context 'when builds are disabled' do
      it 'fails to retry pipeline' do
        expect(response).to have_http_status(:not_found)
      end
173 174 175 176 177 178
    end
  end

  describe 'POST cancel.json' do
    let!(:pipeline) { create(:ci_pipeline, project: project) }
    let!(:build) { create(:ci_build, :running, pipeline: pipeline) }
179

180 181 182 183 184 185 186
    before do
      post :cancel, namespace_id: project.namespace,
                    project_id: project,
                    id: pipeline.id,
                    format: :json
    end

K
Kamil Trzcinski 已提交
187 188
    context 'when builds are enabled' do
      let(:feature) { ProjectFeature::ENABLED }
189

K
Kamil Trzcinski 已提交
190 191 192 193 194 195 196 197 198 199
      it 'cancels a pipeline without returning any content' do
        expect(response).to have_http_status(:no_content)
        expect(pipeline.reload).to be_canceled
      end
    end

    context 'when builds are disabled' do
      it 'fails to retry pipeline' do
        expect(response).to have_http_status(:not_found)
      end
200 201
    end
  end
202
end