2019-10-17 02:07:30 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-05 06:34:42 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe Projects::PipelinesController, '(JavaScript fixtures)', type: :controller do
|
2017-05-05 06:34:42 -04:00
|
|
|
include JavaScriptFixturesHelpers
|
|
|
|
|
2022-08-19 14:10:17 -04:00
|
|
|
let_it_be(:namespace) { create(:namespace, name: 'frontend-fixtures' ) }
|
2021-02-22 04:10:46 -05:00
|
|
|
let_it_be(:project) { create(:project, :repository, namespace: namespace, path: 'pipelines-project') }
|
|
|
|
|
|
|
|
let_it_be(:commit_without_author) { RepoHelpers.another_sample_commit }
|
2017-05-05 06:34:42 -04:00
|
|
|
let!(:pipeline_without_author) { create(:ci_pipeline, project: project, sha: commit_without_author.id) }
|
2021-02-22 04:10:46 -05:00
|
|
|
let!(:build_pipeline_without_author) { create(:ci_build, pipeline: pipeline_without_author, stage: 'test') }
|
2017-05-05 06:34:42 -04:00
|
|
|
|
2021-02-22 04:10:46 -05:00
|
|
|
let_it_be(:pipeline_without_commit) { create(:ci_pipeline, status: :success, project: project, sha: '0000') }
|
2021-06-28 23:07:32 -04:00
|
|
|
|
2021-02-22 04:10:46 -05:00
|
|
|
let!(:build_pipeline_without_commit) { create(:ci_build, pipeline: pipeline_without_commit, stage: 'test') }
|
|
|
|
|
|
|
|
let(:commit) { create(:commit, project: project) }
|
|
|
|
let(:user) { create(:user, developer_projects: [project], email: commit.author_email) }
|
|
|
|
let!(:pipeline) { create(:ci_pipeline, :with_test_reports, project: project, sha: commit.id, user: user) }
|
|
|
|
let!(:build_success) { create(:ci_build, pipeline: pipeline, stage: 'build') }
|
|
|
|
let!(:build_test) { create(:ci_build, pipeline: pipeline, stage: 'test') }
|
|
|
|
let!(:build_deploy_failed) { create(:ci_build, status: :failed, pipeline: pipeline, stage: 'deploy') }
|
2017-05-05 06:34:42 -04:00
|
|
|
|
2017-08-10 18:31:42 -04:00
|
|
|
before do
|
2020-12-07 07:10:00 -05:00
|
|
|
sign_in(user)
|
2017-05-05 06:34:42 -04:00
|
|
|
end
|
|
|
|
|
2019-04-21 06:58:07 -04:00
|
|
|
it 'pipelines/pipelines.json' do
|
2018-12-19 14:50:20 -05:00
|
|
|
get :index, params: {
|
2017-05-05 06:34:42 -04:00
|
|
|
namespace_id: namespace,
|
2018-12-19 14:50:20 -05:00
|
|
|
project_id: project
|
|
|
|
}, format: :json
|
2017-05-05 06:34:42 -04:00
|
|
|
|
2019-07-17 18:15:53 -04:00
|
|
|
expect(response).to be_successful
|
2017-05-05 06:34:42 -04:00
|
|
|
end
|
2021-02-22 04:10:46 -05:00
|
|
|
|
|
|
|
it "pipelines/test_report.json" do
|
|
|
|
get :test_report, params: {
|
|
|
|
namespace_id: namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: pipeline.id
|
|
|
|
}, format: :json
|
|
|
|
|
|
|
|
expect(response).to be_successful
|
|
|
|
end
|
2017-05-05 06:34:42 -04:00
|
|
|
end
|