2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe Projects::PipelinesController, '(JavaScript fixtures)', type: :controller do
|
2023-06-20 00:43:36 +05:30
|
|
|
include ApiHelpers
|
|
|
|
include GraphqlHelpers
|
2017-09-10 17:25:29 +05:30
|
|
|
include JavaScriptFixturesHelpers
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
let_it_be(:namespace) { create(:namespace, name: 'frontend-fixtures') }
|
2021-04-17 20:07:23 +05:30
|
|
|
let_it_be(:project) { create(:project, :repository, namespace: namespace, path: 'pipelines-project') }
|
|
|
|
|
|
|
|
let_it_be(:commit_without_author) { RepoHelpers.another_sample_commit }
|
2017-09-10 17:25:29 +05:30
|
|
|
let!(:pipeline_without_author) { create(:ci_pipeline, project: project, sha: commit_without_author.id) }
|
2021-04-17 20:07:23 +05:30
|
|
|
let!(:build_pipeline_without_author) { create(:ci_build, pipeline: pipeline_without_author, stage: 'test') }
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
let_it_be(:pipeline_without_commit) { create(:ci_pipeline, status: :success, project: project, sha: '0000') }
|
2021-09-30 23:02:18 +05:30
|
|
|
|
2021-04-17 20:07:23 +05:30
|
|
|
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-09-10 17:25:29 +05:30
|
|
|
|
2023-04-23 21:23:45 +05:30
|
|
|
let(:bridge) { create(:ci_bridge, pipeline: pipeline) }
|
|
|
|
let(:retried_bridge) { create(:ci_bridge, :retried, pipeline: pipeline) }
|
|
|
|
|
|
|
|
let(:downstream_pipeline) { create(:ci_pipeline, :with_job) }
|
|
|
|
let(:retried_downstream_pipeline) { create(:ci_pipeline, :with_job) }
|
|
|
|
let!(:ci_sources_pipeline) { create(:ci_sources_pipeline, pipeline: downstream_pipeline, source_job: bridge) }
|
|
|
|
let!(:retried_ci_sources_pipeline) do
|
|
|
|
create(:ci_sources_pipeline, pipeline: retried_downstream_pipeline, source_job: retried_bridge)
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
before do
|
2021-02-22 17:27:13 +05:30
|
|
|
sign_in(user)
|
2023-04-23 21:23:45 +05:30
|
|
|
project.add_developer(user)
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
it 'pipelines/pipelines.json' do
|
2019-02-15 15:39:39 +05:30
|
|
|
get :index, params: {
|
2017-09-10 17:25:29 +05:30
|
|
|
namespace_id: namespace,
|
2019-02-15 15:39:39 +05:30
|
|
|
project_id: project
|
|
|
|
}, format: :json
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
expect(response).to be_successful
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
2021-04-17 20:07:23 +05:30
|
|
|
|
|
|
|
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
|
2023-06-20 00:43:36 +05:30
|
|
|
|
|
|
|
describe GraphQL::Query, type: :request do
|
|
|
|
fixtures_path = 'graphql/pipelines/'
|
|
|
|
get_pipeline_actions_query = 'get_pipeline_actions.query.graphql'
|
|
|
|
|
|
|
|
let!(:pipeline_with_manual_actions) { create(:ci_pipeline, project: project, user: user) }
|
|
|
|
let!(:build_scheduled) { create(:ci_build, :scheduled, pipeline: pipeline_with_manual_actions, stage: 'test') }
|
|
|
|
let!(:build_manual) { create(:ci_build, :manual, pipeline: pipeline_with_manual_actions, stage: 'build') }
|
|
|
|
let!(:build_manual_cannot_play) do
|
|
|
|
create(:ci_build, :manual, :skipped, pipeline: pipeline_with_manual_actions, stage: 'build')
|
|
|
|
end
|
|
|
|
|
|
|
|
let_it_be(:query) do
|
|
|
|
get_graphql_query_as_string("pipelines/graphql/queries/#{get_pipeline_actions_query}")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "#{fixtures_path}#{get_pipeline_actions_query}.json" do
|
|
|
|
post_graphql(query, current_user: user,
|
|
|
|
variables: { fullPath: project.full_path, iid: pipeline_with_manual_actions.iid })
|
|
|
|
|
|
|
|
expect_graphql_errors_to_be_empty
|
|
|
|
end
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|