Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-12-14 18:08:04 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-14 18:08:04 +0300
commit8c4225a66b12683bcf1bba9bb9328fcf65395b6d (patch)
treed3b583abd26fcbbcbf0db828aee2b940414e1649 /spec/features
parent075c890053f626018ba680e4da21a93743acb244 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/features')
-rw-r--r--spec/features/dashboard/todos/todos_filtering_spec.rb4
-rw-r--r--spec/features/dashboard/todos/todos_spec.rb14
-rw-r--r--spec/features/merge_request/admin_views_hidden_merge_request_spec.rb26
-rw-r--r--spec/features/merge_requests/admin_views_hidden_merge_requests_spec.rb26
-rw-r--r--spec/features/projects/pipelines/legacy_pipeline_spec.rb1315
-rw-r--r--spec/features/projects/pipelines/legacy_pipelines_spec.rb851
6 files changed, 61 insertions, 2175 deletions
diff --git a/spec/features/dashboard/todos/todos_filtering_spec.rb b/spec/features/dashboard/todos/todos_filtering_spec.rb
index 4af3a93b916..ea8c7e800c5 100644
--- a/spec/features/dashboard/todos/todos_filtering_spec.rb
+++ b/spec/features/dashboard/todos/todos_filtering_spec.rb
@@ -58,9 +58,9 @@ RSpec.describe 'Dashboard > User filters todos', :js, feature_category: :team_pl
wait_for_requests
- expect(page).to have_content "#{group1.name} / project_1 #{issue1.to_reference} · issue"
+ expect(page).to have_content "issue · #{group1.name} / project_1 #{issue1.to_reference}"
expect(page).to have_content merge_request.to_reference.to_s
- expect(page).not_to have_content "#{group2.name} / project_3 #{issue2.to_reference} · issue"
+ expect(page).not_to have_content "issue · #{group2.name} / project_3 #{issue2.to_reference}"
end
context 'Author filter' do
diff --git a/spec/features/dashboard/todos/todos_spec.rb b/spec/features/dashboard/todos/todos_spec.rb
index 4ec7859a292..bef3ac47c54 100644
--- a/spec/features/dashboard/todos/todos_spec.rb
+++ b/spec/features/dashboard/todos/todos_spec.rb
@@ -167,7 +167,7 @@ RSpec.describe 'Dashboard Todos', feature_category: :team_planning do
it 'shows issue assigned to yourself message' do
page.within('.js-todos-all') do
- expect(page).to have_content("#{project.namespace.owner_name} / #{project.name} #{issue.to_reference} · Fix bug")
+ expect(page).to have_content("Fix bug · #{project.namespace.owner_name} / #{project.name} #{issue.to_reference}")
expect(page).to have_content("You assigned to yourself.")
end
end
@@ -181,7 +181,7 @@ RSpec.describe 'Dashboard Todos', feature_category: :team_planning do
it 'shows you added a to-do item message' do
page.within('.js-todos-all') do
- expect(page).to have_content("#{project.namespace.owner_name} / #{project.name} #{issue.to_reference} · Fix bug")
+ expect(page).to have_content("Fix bug · #{project.namespace.owner_name} / #{project.name} #{issue.to_reference}")
expect(page).to have_content("You added a to-do item.")
end
end
@@ -195,7 +195,7 @@ RSpec.describe 'Dashboard Todos', feature_category: :team_planning do
it 'shows you mentioned yourself message' do
page.within('.js-todos-all') do
- expect(page).to have_content("#{project.namespace.owner_name} / #{project.name} #{issue.to_reference} · Fix bug")
+ expect(page).to have_content("Fix bug · #{project.namespace.owner_name} / #{project.name} #{issue.to_reference}")
expect(page).to have_content("You mentioned yourself.")
end
end
@@ -209,7 +209,7 @@ RSpec.describe 'Dashboard Todos', feature_category: :team_planning do
it 'shows you directly addressed yourself message being displayed as mentioned yourself' do
page.within('.js-todos-all') do
- expect(page).to have_content("#{project.namespace.owner_name} / #{project.name} #{issue.to_reference} · Fix bug")
+ expect(page).to have_content("Fix bug · #{project.namespace.owner_name} / #{project.name} #{issue.to_reference}")
expect(page).to have_content("You mentioned yourself.")
end
end
@@ -225,7 +225,7 @@ RSpec.describe 'Dashboard Todos', feature_category: :team_planning do
it 'shows you set yourself as an approver message' do
page.within('.js-todos-all') do
- expect(page).to have_content("#{project.namespace.owner_name} / #{project.name} #{merge_request.to_reference} · Fixes issue")
+ expect(page).to have_content("Fixes issue · #{project.namespace.owner_name} / #{project.name} #{merge_request.to_reference}")
expect(page).to have_content("You set yourself as an approver.")
end
end
@@ -241,7 +241,7 @@ RSpec.describe 'Dashboard Todos', feature_category: :team_planning do
it 'shows you set yourself as an reviewer message' do
page.within('.js-todos-all') do
- expect(page).to have_content("#{project.namespace.owner_name} / #{project.name} #{merge_request.to_reference} · Fixes issue")
+ expect(page).to have_content("Fixes issue · #{project.namespace.owner_name} / #{project.name} #{merge_request.to_reference}")
expect(page).to have_content("You requested a review from yourself.")
end
end
@@ -261,7 +261,7 @@ RSpec.describe 'Dashboard Todos', feature_category: :team_planning do
it 'shows unmergeable message' do
page.within('.js-todos-all') do
- expect(page).to have_content("#{project.namespace.owner_name} / #{project.name} #{issue.to_reference} · Fix bug")
+ expect(page).to have_content("Fix bug · #{project.namespace.owner_name} / #{project.name} #{issue.to_reference}")
expect(page).to have_content("Could not merge.")
end
end
diff --git a/spec/features/merge_request/admin_views_hidden_merge_request_spec.rb b/spec/features/merge_request/admin_views_hidden_merge_request_spec.rb
new file mode 100644
index 00000000000..99344d2cf32
--- /dev/null
+++ b/spec/features/merge_request/admin_views_hidden_merge_request_spec.rb
@@ -0,0 +1,26 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe 'Admin views hidden merge request', feature_category: :code_review do
+ context 'when signed in as admin and viewing a hidden merge request', :js do
+ let_it_be(:admin) { create(:admin) }
+ let_it_be(:author) { create(:user, :banned) }
+ let_it_be(:project) { create(:project, :repository) }
+ let!(:merge_request) { create(:merge_request, source_project: project, author: author) }
+
+ before do
+ sign_in(admin)
+ gitlab_enable_admin_mode_sign_in(admin)
+ visit(project_merge_request_path(project, merge_request))
+ end
+
+ it 'shows a hidden merge request icon' do
+ page.within('.detail-page-header-body') do
+ tooltip = format(_('This %{issuable} is hidden because its author has been banned'), issuable: 'merge request')
+ expect(page).to have_css("div[data-testid='hidden'][title='#{tooltip}']")
+ expect(page).to have_css('svg[data-testid="spam-icon"]')
+ end
+ end
+ end
+end
diff --git a/spec/features/merge_requests/admin_views_hidden_merge_requests_spec.rb b/spec/features/merge_requests/admin_views_hidden_merge_requests_spec.rb
new file mode 100644
index 00000000000..bc5ec124861
--- /dev/null
+++ b/spec/features/merge_requests/admin_views_hidden_merge_requests_spec.rb
@@ -0,0 +1,26 @@
+# frozen_string_literal: true
+
+require 'spec_helper'
+
+RSpec.describe 'Admin views hidden merge requests', feature_category: :code_review do
+ context 'when signed in as admin and viewing a hidden merge request' do
+ let_it_be(:admin) { create(:admin) }
+ let_it_be(:author) { create(:user, :banned) }
+ let_it_be(:project) { create(:project) }
+ let!(:merge_request) { create(:merge_request, source_project: project, author: author) }
+
+ before do
+ sign_in(admin)
+ gitlab_enable_admin_mode_sign_in(admin)
+ visit(project_merge_requests_path(project))
+ end
+
+ it 'shows a hidden merge request icon' do
+ page.within("#merge_request_#{merge_request.id}") do
+ tooltip = format(_('This %{issuable} is hidden because its author has been banned'), issuable: 'merge request')
+ expect(page).to have_css("span[title='#{tooltip}']")
+ expect(page).to have_css('svg[data-testid="spam-icon"]')
+ end
+ end
+ end
+end
diff --git a/spec/features/projects/pipelines/legacy_pipeline_spec.rb b/spec/features/projects/pipelines/legacy_pipeline_spec.rb
deleted file mode 100644
index 8ae6d26e2a0..00000000000
--- a/spec/features/projects/pipelines/legacy_pipeline_spec.rb
+++ /dev/null
@@ -1,1315 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe 'Pipeline', :js, feature_category: :projects do
- include RoutesHelpers
- include ProjectForksHelper
- include ::ExclusiveLeaseHelpers
-
- let_it_be(:project) { create(:project) }
-
- let(:user) { create(:user) }
- let(:role) { :developer }
-
- before do
- sign_in(user)
- project.add_role(user, role)
- stub_feature_flags(pipeline_tabs_vue: false)
- end
-
- shared_context 'pipeline builds' do
- let!(:build_passed) do
- create(:ci_build, :success,
- pipeline: pipeline, stage: 'build', stage_idx: 0, name: 'build')
- end
-
- let!(:build_failed) do
- create(:ci_build, :failed,
- pipeline: pipeline, stage: 'test', stage_idx: 1, name: 'test')
- end
-
- let!(:build_preparing) do
- create(:ci_build, :preparing,
- pipeline: pipeline, stage: 'deploy', stage_idx: 2, name: 'prepare')
- end
-
- let!(:build_running) do
- create(:ci_build, :running,
- pipeline: pipeline, stage: 'deploy', stage_idx: 3, name: 'deploy')
- end
-
- let!(:build_manual) do
- create(:ci_build, :manual,
- pipeline: pipeline, stage: 'deploy', stage_idx: 3, name: 'manual-build')
- end
-
- let!(:build_scheduled) do
- create(:ci_build, :scheduled,
- pipeline: pipeline, stage: 'deploy', stage_idx: 3, name: 'delayed-job')
- end
-
- let!(:build_external) do
- create(:generic_commit_status, status: 'success',
- pipeline: pipeline,
- name: 'jenkins',
- stage: 'external',
- ref: 'master',
- target_url: 'http://gitlab.com/status')
- end
- end
-
- describe 'GET /:project/-/pipelines/:id' do
- include_context 'pipeline builds'
-
- let_it_be(:group) { create(:group) }
- let_it_be(:project, reload: true) { create(:project, :repository, group: group) }
-
- let(:pipeline) { create(:ci_pipeline, project: project, ref: 'master', sha: project.commit.id, user: user) }
-
- subject(:visit_pipeline) { visit project_pipeline_path(project, pipeline) }
-
- it 'shows the pipeline graph' do
- visit_pipeline
-
- expect(page).to have_selector('.js-pipeline-graph')
- expect(page).to have_content('build')
- expect(page).to have_content('test')
- expect(page).to have_content('deploy')
- expect(page).to have_content('Retry')
- expect(page).to have_content('Cancel running')
- end
-
- it 'shows Pipeline tab pane as active' do
- visit_pipeline
-
- expect(page).to have_css('#js-tab-pipeline.active')
- end
-
- it 'shows link to the pipeline ref' do
- visit_pipeline
-
- expect(page).to have_link(pipeline.ref)
- end
-
- it 'shows the pipeline information' do
- visit_pipeline
-
- within '.pipeline-info' do
- expect(page).to have_content("#{pipeline.statuses.count} jobs " \
- "for #{pipeline.ref}")
- expect(page).to have_link(pipeline.ref,
- href: project_commits_path(pipeline.project, pipeline.ref))
- end
- end
-
- describe 'related merge requests' do
- context 'when there are no related merge requests' do
- it 'shows a "no related merge requests" message' do
- visit_pipeline
-
- within '.related-merge-request-info' do
- expect(page).to have_content('No related merge requests found.')
- end
- end
- end
-
- context 'when there is one related merge request' do
- let!(:merge_request) do
- create(:merge_request,
- source_project: project,
- source_branch: pipeline.ref)
- end
-
- it 'shows a link to the merge request' do
- visit_pipeline
-
- within '.related-merge-requests' do
- expect(page).to have_content('1 related merge request: ')
- expect(page).to have_selector('.js-truncated-mr-list')
- expect(page).to have_link("#{merge_request.to_reference} #{merge_request.title}")
-
- expect(page).not_to have_selector('.js-full-mr-list')
- expect(page).not_to have_selector('.text-expander')
- end
- end
- end
-
- context 'when there are two related merge requests' do
- let!(:merge_request1) do
- create(:merge_request,
- source_project: project,
- source_branch: pipeline.ref)
- end
-
- let!(:merge_request2) do
- create(:merge_request,
- source_project: project,
- source_branch: pipeline.ref,
- target_branch: 'fix')
- end
-
- it 'links to the most recent related merge request' do
- visit_pipeline
-
- within '.related-merge-requests' do
- expect(page).to have_content('2 related merge requests: ')
- expect(page).to have_link("#{merge_request2.to_reference} #{merge_request2.title}")
- expect(page).to have_selector('.text-expander')
- expect(page).to have_selector('.js-full-mr-list', visible: false)
- end
- end
-
- it 'expands to show links to all related merge requests' do
- visit_pipeline
-
- within '.related-merge-requests' do
- find('.text-expander').click
-
- expect(page).to have_selector('.js-full-mr-list', visible: true)
-
- pipeline.all_merge_requests.map do |merge_request|
- expect(page).to have_link(href: project_merge_request_path(project, merge_request))
- end
- end
- end
- end
- end
-
- describe 'pipelines details view' do
- let!(:status) { create(:user_status, user: pipeline.user, emoji: 'smirk', message: 'Authoring this object') }
-
- it 'pipeline header shows the user status and emoji' do
- visit project_pipeline_path(project, pipeline)
-
- within '[data-testid="ci-header-content"]' do
- expect(page).to have_selector("[data-testid='#{status.message}']")
- expect(page).to have_selector("[data-name='#{status.emoji}']")
- end
- end
- end
-
- describe 'pipeline graph' do
- before do
- visit_pipeline
- end
-
- context 'when pipeline has running builds' do
- it 'shows a running icon and a cancel action for the running build' do
- page.within('#ci-badge-deploy') do
- expect(page).to have_selector('.js-ci-status-icon-running')
- expect(page).to have_selector('.js-icon-cancel')
- expect(page).to have_content('deploy')
- end
- end
-
- it 'cancels the running build and shows retry button', :sidekiq_might_not_need_inline do
- find('#ci-badge-deploy .ci-action-icon-container').click
-
- page.within('#ci-badge-deploy') do
- expect(page).to have_css('.js-icon-retry')
- end
- end
- end
-
- context 'when pipeline has preparing builds' do
- it 'shows a preparing icon and a cancel action' do
- page.within('#ci-badge-prepare') do
- expect(page).to have_selector('.js-ci-status-icon-preparing')
- expect(page).to have_selector('.js-icon-cancel')
- expect(page).to have_content('prepare')
- end
- end
-
- it 'cancels the preparing build and shows retry button', :sidekiq_might_not_need_inline do
- find('#ci-badge-deploy .ci-action-icon-container').click
-
- page.within('#ci-badge-deploy') do
- expect(page).to have_css('.js-icon-retry')
- end
- end
- end
-
- context 'when pipeline has successful builds' do
- it 'shows the success icon and a retry action for the successful build' do
- page.within('#ci-badge-build') do
- expect(page).to have_selector('.js-ci-status-icon-success')
- expect(page).to have_content('build')
- end
-
- page.within('#ci-badge-build .ci-action-icon-container.js-icon-retry') do
- expect(page).to have_selector('svg')
- end
- end
-
- it 'is possible to retry the success job', :sidekiq_might_not_need_inline do
- find('#ci-badge-build .ci-action-icon-container').click
- wait_for_requests
-
- expect(page).not_to have_content('Retry job')
- within('.js-pipeline-header-container') do
- expect(page).to have_selector('.js-ci-status-icon-running')
- end
- end
- end
-
- context 'when pipeline has a delayed job' do
- let(:project) { create(:project, :repository, group: group) }
-
- it 'shows the scheduled icon and an unschedule action for the delayed job' do
- page.within('#ci-badge-delayed-job') do
- expect(page).to have_selector('.js-ci-status-icon-scheduled')
- expect(page).to have_content('delayed-job')
- end
-
- page.within('#ci-badge-delayed-job .ci-action-icon-container.js-icon-time-out') do
- expect(page).to have_selector('svg')
- end
- end
-
- it 'unschedules the delayed job and shows play button as a manual job', :sidekiq_might_not_need_inline do
- find('#ci-badge-delayed-job .ci-action-icon-container').click
-
- page.within('#ci-badge-delayed-job') do
- expect(page).to have_css('.js-icon-play')
- end
- end
- end
-
- context 'when pipeline has failed builds' do
- it 'shows the failed icon and a retry action for the failed build' do
- page.within('#ci-badge-test') do
- expect(page).to have_selector('.js-ci-status-icon-failed')
- expect(page).to have_content('test')
- end
-
- page.within('#ci-badge-test .ci-action-icon-container.js-icon-retry') do
- expect(page).to have_selector('svg')
- end
- end
-
- it 'is possible to retry the failed build', :sidekiq_might_not_need_inline do
- find('#ci-badge-test .ci-action-icon-container').click
- wait_for_requests
-
- expect(page).not_to have_content('Retry job')
- within('.js-pipeline-header-container') do
- expect(page).to have_selector('.js-ci-status-icon-running')
- end
- end
-
- it 'includes the failure reason' do
- page.within('#ci-badge-test') do
- build_link = page.find('.js-pipeline-graph-job-link')
- expect(build_link['title']).to eq('test - failed - (unknown failure)')
- end
- end
- end
-
- context 'when pipeline has manual jobs' do
- it 'shows the skipped icon and a play action for the manual build' do
- page.within('#ci-badge-manual-build') do
- expect(page).to have_selector('.js-ci-status-icon-manual')
- expect(page).to have_content('manual')
- end
-
- page.within('#ci-badge-manual-build .ci-action-icon-container.js-icon-play') do
- expect(page).to have_selector('svg')
- end
- end
-
- it 'is possible to play the manual job', :sidekiq_might_not_need_inline do
- find('#ci-badge-manual-build .ci-action-icon-container').click
- wait_for_requests
-
- expect(page).not_to have_content('Play job')
- within('.js-pipeline-header-container') do
- expect(page).to have_selector('.js-ci-status-icon-running')
- end
- end
- end
-
- context 'when pipeline has external job' do
- it 'shows the success icon and the generic comit status build' do
- expect(page).to have_selector('.js-ci-status-icon-success')
- expect(page).to have_content('jenkins')
- expect(page).to have_link('jenkins', href: 'http://gitlab.com/status')
- end
- end
- end
-
- context 'when the pipeline has manual stage' do
- before do
- create(:ci_build, :manual, pipeline: pipeline, stage_idx: 10, stage: 'publish', name: 'CentOS')
- create(:ci_build, :manual, pipeline: pipeline, stage_idx: 10, stage: 'publish', name: 'Debian')
- create(:ci_build, :manual, pipeline: pipeline, stage_idx: 10, stage: 'publish', name: 'OpenSUDE')
-
- # force to update stages statuses
- Ci::ProcessPipelineService.new(pipeline).execute
-
- visit_pipeline
- end
-
- it 'displays play all button' do
- expect(page).to have_selector('.js-stage-action')
- end
- end
-
- context 'page tabs' do
- before do
- visit_pipeline
- end
-
- it 'shows Pipeline, Jobs, DAG and Failed Jobs tabs with link' do
- expect(page).to have_link('Pipeline')
- expect(page).to have_link('Jobs')
- expect(page).to have_link('Needs')
- expect(page).to have_link('Failed Jobs')
- end
-
- it 'shows counter in Jobs tab' do
- expect(page.find('.js-builds-counter').text).to eq(pipeline.total_size.to_s)
- end
-
- it 'shows Pipeline tab as active' do
- expect(page).to have_css('.js-pipeline-tab-link .active')
- end
-
- context 'without permission to access builds' do
- let(:project) { create(:project, :public, :repository, public_builds: false) }
- let(:role) { :guest }
-
- it 'does not show the pipeline details page' do
- expect(page).to have_content('Not Found')
- end
- end
- end
-
- describe 'test tabs' do
- let(:pipeline) { create(:ci_pipeline, :with_test_reports, :with_report_results, project: project) }
-
- before do
- stub_feature_flags(pipeline_tabs_vue: false)
- visit_pipeline
- wait_for_requests
- end
-
- context 'with test reports' do
- it 'shows badge counter in Tests tab' do
- expect(page.find('.js-test-report-badge-counter').text).to eq(pipeline.test_report_summary.total[:count].to_s)
- end
-
- it 'calls summary.json endpoint', :js do
- find('.js-tests-tab-link').click
-
- expect(page).to have_content('Jobs')
- expect(page).to have_selector('[data-testid="tests-detail"]', visible: :all)
- end
- end
-
- context 'without test reports' do
- let(:pipeline) { create(:ci_pipeline, project: project) }
-
- it 'shows zero' do
- expect(page.find('.js-test-report-badge-counter', visible: :all).text).to eq("0")
- end
- end
- end
-
- context 'retrying jobs' do
- before do
- visit_pipeline
- end
-
- it { expect(page).not_to have_content('retried') }
-
- context 'when retrying' do
- before do
- find('[data-testid="retryPipeline"]').click
- wait_for_requests
- end
-
- it 'does not show a "Retry" button', :sidekiq_might_not_need_inline do
- expect(page).not_to have_content('Retry')
- end
-
- it 'shows running status in pipeline header', :sidekiq_might_not_need_inline do
- within('.js-pipeline-header-container') do
- expect(page).to have_selector('.js-ci-status-icon-running')
- end
- end
- end
- end
-
- context 'canceling jobs' do
- before do
- visit_pipeline
- end
-
- it { expect(page).not_to have_selector('.ci-canceled') }
-
- context 'when canceling' do
- before do
- click_on 'Cancel running'
- end
-
- it 'does not show a "Cancel running" button', :sidekiq_might_not_need_inline do
- expect(page).not_to have_content('Cancel running')
- end
- end
- end
-
- context 'when user can not delete' do
- before do
- visit_pipeline
- end
-
- it { expect(page).not_to have_button('Delete') }
- end
-
- context 'when deleting' do
- before do
- group.add_owner(user)
-
- visit_pipeline
-
- click_button 'Delete'
- click_button 'Delete pipeline'
- end
-
- it 'redirects to pipeline overview page', :sidekiq_inline do
- expect(page).to have_content('The pipeline has been deleted')
- expect(page).to have_current_path(project_pipelines_path(project), ignore_query: true)
- end
- end
-
- context 'when pipeline ref does not exist in repository anymore' do
- let(:pipeline) do
- create(:ci_empty_pipeline, project: project,
- ref: 'non-existent',
- sha: project.commit.id,
- user: user)
- end
-
- before do
- visit_pipeline
- end
-
- it 'does not render link to the pipeline ref' do
- expect(page).not_to have_link(pipeline.ref)
- expect(page).to have_content(pipeline.ref)
- end
-
- it 'does not render render raw HTML to the pipeline ref' do
- page.within '.pipeline-info' do
- expect(page).not_to have_content('<span class="ref-name"')
- end
- end
- end
-
- context 'when pipeline is detached merge request pipeline' do
- let(:source_project) { project }
- let(:target_project) { project }
-
- let(:merge_request) do
- create(:merge_request,
- :with_detached_merge_request_pipeline,
- source_project: source_project,
- target_project: target_project)
- end
-
- let(:pipeline) do
- merge_request.all_pipelines.last
- end
-
- it 'shows the pipeline information' do
- visit_pipeline
-
- within '.pipeline-info' do
- expect(page).to have_content("#{pipeline.statuses.count} jobs " \
- "for !#{merge_request.iid} " \
- "with #{merge_request.source_branch}")
- expect(page).to have_link("!#{merge_request.iid}",
- href: project_merge_request_path(project, merge_request))
- expect(page).to have_link(merge_request.source_branch,
- href: project_commits_path(merge_request.source_project, merge_request.source_branch))
- end
- end
-
- context 'when source branch does not exist' do
- before do
- project.repository.rm_branch(user, merge_request.source_branch)
- end
-
- it 'does not link to the source branch commit path' do
- visit_pipeline
-
- within '.pipeline-info' do
- expect(page).not_to have_link(merge_request.source_branch)
- expect(page).to have_content(merge_request.source_branch)
- end
- end
- end
-
- context 'when source project is a forked project' do
- let(:source_project) { fork_project(project, user, repository: true) }
-
- before do
- visit project_pipeline_path(source_project, pipeline)
- end
-
- it 'shows the pipeline information', :sidekiq_might_not_need_inline do
- within '.pipeline-info' do
- expect(page).to have_content("#{pipeline.statuses.count} jobs " \
- "for !#{merge_request.iid} " \
- "with #{merge_request.source_branch}")
- expect(page).to have_link("!#{merge_request.iid}",
- href: project_merge_request_path(project, merge_request))
- expect(page).to have_link(merge_request.source_branch,
- href: project_commits_path(merge_request.source_project, merge_request.source_branch))
- end
- end
- end
- end
-
- context 'when pipeline is merge request pipeline' do
- let(:project) { create(:project, :repository, group: group) }
- let(:source_project) { project }
- let(:target_project) { project }
-
- let(:merge_request) do
- create(:merge_request,
- :with_merge_request_pipeline,
- source_project: source_project,
- target_project: target_project,
- merge_sha: project.commit.id)
- end
-
- let(:pipeline) do
- merge_request.all_pipelines.last
- end
-
- before do
- pipeline.update!(user: user)
- end
-
- it 'shows the pipeline information' do
- visit_pipeline
-
- within '.pipeline-info' do
- expect(page).to have_content("#{pipeline.statuses.count} jobs " \
- "for !#{merge_request.iid} " \
- "with #{merge_request.source_branch} " \
- "into #{merge_request.target_branch}")
- expect(page).to have_link("!#{merge_request.iid}",
- href: project_merge_request_path(project, merge_request))
- expect(page).to have_link(merge_request.source_branch,
- href: project_commits_path(merge_request.source_project, merge_request.source_branch))
- expect(page).to have_link(merge_request.target_branch,
- href: project_commits_path(merge_request.target_project, merge_request.target_branch))
- end
- end
-
- context 'when target branch does not exist' do
- before do
- project.repository.rm_branch(user, merge_request.target_branch)
- end
-
- it 'does not link to the target branch commit path' do
- visit_pipeline
-
- within '.pipeline-info' do
- expect(page).not_to have_link(merge_request.target_branch)
- expect(page).to have_content(merge_request.target_branch)
- end
- end
- end
-
- context 'when source project is a forked project' do
- let(:source_project) { fork_project(project, user, repository: true) }
-
- before do
- visit project_pipeline_path(source_project, pipeline)
- end
-
- it 'shows the pipeline information', :sidekiq_might_not_need_inline do
- within '.pipeline-info' do
- expect(page).to have_content("#{pipeline.statuses.count} jobs " \
- "for !#{merge_request.iid} " \
- "with #{merge_request.source_branch} " \
- "into #{merge_request.target_branch}")
- expect(page).to have_link("!#{merge_request.iid}",
- href: project_merge_request_path(project, merge_request))
- expect(page).to have_link(merge_request.source_branch,
- href: project_commits_path(merge_request.source_project, merge_request.source_branch))
- expect(page).to have_link(merge_request.target_branch,
- href: project_commits_path(merge_request.target_project, merge_request.target_branch))
- end
- end
- end
- end
- end
-
- context 'when user does not have access to read jobs' do
- before do
- project.update!(public_builds: false)
- end
-
- describe 'GET /:project/-/pipelines/:id' do
- include_context 'pipeline builds'
-
- let_it_be(:project) { create(:project, :repository) }
-
- let(:pipeline) { create(:ci_pipeline, project: project, ref: 'master', sha: project.commit.id, user: user) }
-
- before do
- visit project_pipeline_path(project, pipeline)
- end
-
- it 'shows the pipeline graph' do
- expect(page).to have_selector('.js-pipeline-graph')
- expect(page).to have_content('build')
- expect(page).to have_content('test')
- expect(page).to have_content('deploy')
- expect(page).to have_content('Retry')
- expect(page).to have_content('Cancel running')
- end
-
- it 'does not link to job' do
- expect(page).not_to have_selector('.js-pipeline-graph-job-link')
- end
- end
- end
-
- context 'when a bridge job exists' do
- include_context 'pipeline builds'
-
- let(:project) { create(:project, :repository) }
- let(:downstream) { create(:project, :repository) }
-
- let(:pipeline) do
- create(:ci_pipeline, project: project,
- ref: 'master',
- sha: project.commit.id,
- user: user)
- end
-
- let!(:bridge) do
- create(:ci_bridge, pipeline: pipeline,
- name: 'cross-build',
- user: user,
- downstream: downstream)
- end
-
- describe 'GET /:project/-/pipelines/:id' do
- before do
- visit project_pipeline_path(project, pipeline)
- end
-
- it 'shows the pipeline with a bridge job' do
- expect(page).to have_selector('.js-pipeline-graph')
- expect(page).to have_content('cross-build')
- end
-
- context 'when a scheduled pipeline is created by a blocked user' do
- let(:project) { create(:project, :repository) }
-
- let(:schedule) do
- create(:ci_pipeline_schedule,
- project: project,
- owner: project.first_owner,
- description: 'blocked user schedule'
- ).tap do |schedule|
- schedule.update_column(:next_run_at, 1.minute.ago)
- end
- end
-
- before do
- schedule.owner.block!
- PipelineScheduleWorker.new.perform
- end
-
- it 'displays the PipelineSchedule in an inactive state' do
- stub_feature_flags(pipeline_schedules_vue: false)
-
- visit project_pipeline_schedules_path(project)
- page.click_link('Inactive')
-
- expect(page).to have_selector('table.ci-table > tbody > tr > td', text: 'blocked user schedule')
- end
-
- it 'does not create a new Pipeline' do
- visit project_pipelines_path(project)
-
- expect(page).not_to have_selector('.ci-table')
- expect(schedule.last_pipeline).to be_nil
- end
- end
- end
-
- describe 'GET /:project/-/pipelines/:id/builds' do
- before do
- visit builds_project_pipeline_path(project, pipeline)
- end
-
- it 'shows a bridge job on a list' do
- expect(page).to have_content('cross-build')
- expect(page).to have_content(bridge.id)
- end
- end
- end
-
- context 'when build requires resource', :sidekiq_inline do
- let_it_be(:project) { create(:project, :repository) }
-
- let(:pipeline) { create(:ci_pipeline, project: project) }
- let(:resource_group) { create(:ci_resource_group, project: project) }
-
- let!(:test_job) do
- create(:ci_build, :pending, stage: 'test', name: 'test', stage_idx: 1, pipeline: pipeline, project: project)
- end
-
- let!(:deploy_job) do
- create(:ci_build, :created,
- stage: 'deploy',
- name: 'deploy',
- stage_idx: 2,
- pipeline: pipeline,
- project: project,
- resource_group: resource_group)
- end
-
- describe 'GET /:project/-/pipelines/:id' do
- subject { visit project_pipeline_path(project, pipeline) }
-
- it 'shows deploy job as created' do
- subject
-
- within('.js-pipeline-header-container') do
- expect(page).to have_content('pending')
- end
-
- within('.js-pipeline-graph') do
- within(all('[data-testid="stage-column"]')[0]) do
- expect(page).to have_content('test')
- expect(page).to have_css('.ci-status-icon-pending')
- end
-
- within(all('[data-testid="stage-column"]')[1]) do
- expect(page).to have_content('deploy')
- expect(page).to have_css('.ci-status-icon-created')
- end
- end
- end
-
- context 'when test job succeeded' do
- before do
- test_job.success!
- end
-
- it 'shows deploy job as pending' do
- subject
-
- within('.js-pipeline-header-container') do
- expect(page).to have_content('running')
- end
-
- within('.js-pipeline-graph') do
- within(all('[data-testid="stage-column"]')[0]) do
- expect(page).to have_content('test')
- expect(page).to have_css('.ci-status-icon-success')
- end
-
- within(all('[data-testid="stage-column"]')[1]) do
- expect(page).to have_content('deploy')
- expect(page).to have_css('.ci-status-icon-pending')
- end
- end
- end
- end
-
- context 'when test job succeeded but there are no available resources' do
- let(:another_job) { create(:ci_build, :running, project: project, resource_group: resource_group) }
-
- before do
- resource_group.assign_resource_to(another_job)
- test_job.success!
- end
-
- it 'shows deploy job as waiting for resource' do
- subject
-
- within('.js-pipeline-header-container') do
- expect(page).to have_content('waiting')
- end
-
- within('.js-pipeline-graph') do
- within(all('[data-testid="stage-column"]')[1]) do
- expect(page).to have_content('deploy')
- expect(page).to have_css('.ci-status-icon-waiting-for-resource')
- end
- end
- end
-
- context 'when resource is released from another job' do
- before do
- another_job.success!
- end
-
- it 'shows deploy job as pending' do
- subject
-
- within('.js-pipeline-header-container') do
- expect(page).to have_content('running')
- end
-
- within('.js-pipeline-graph') do
- within(all('[data-testid="stage-column"]')[1]) do
- expect(page).to have_content('deploy')
- expect(page).to have_css('.ci-status-icon-pending')
- end
- end
- end
- end
-
- context 'when deploy job is a bridge to trigger a downstream pipeline' do
- let!(:deploy_job) do
- create(:ci_bridge, :created,
- stage: 'deploy',
- name: 'deploy',
- stage_idx: 2,
- pipeline: pipeline,
- project: project,
- resource_group: resource_group
- )
- end
-
- it 'shows deploy job as waiting for resource' do
- subject
-
- within('.js-pipeline-header-container') do
- expect(page).to have_content('waiting')
- end
-
- within('.js-pipeline-graph') do
- within(all('[data-testid="stage-column"]')[1]) do
- expect(page).to have_content('deploy')
- expect(page).to have_css('.ci-status-icon-waiting-for-resource')
- end
- end
- end
- end
-
- context 'when deploy job is a bridge to trigger a downstream pipeline' do
- let!(:deploy_job) do
- create(:ci_bridge, :created,
- stage: 'deploy',
- name: 'deploy',
- stage_idx: 2,
- pipeline: pipeline,
- project: project,
- resource_group: resource_group
- )
- end
-
- it 'shows deploy job as waiting for resource' do
- subject
-
- within('.js-pipeline-header-container') do
- expect(page).to have_content('waiting')
- end
-
- within('.js-pipeline-graph') do
- within(all('[data-testid="stage-column"]')[1]) do
- expect(page).to have_content('deploy')
- expect(page).to have_css('.ci-status-icon-waiting-for-resource')
- end
- end
- end
- end
- end
- end
- end
-
- describe 'GET /:project/-/pipelines/:id/dag' do
- include_context 'pipeline builds'
-
- let_it_be(:project) { create(:project, :repository) }
-
- let(:pipeline) { create(:ci_pipeline, project: project, ref: 'master', sha: project.commit.id) }
-
- before do
- visit dag_project_pipeline_path(project, pipeline)
- end
-
- it 'shows DAG tab pane as active' do
- expect(page).to have_css('#js-tab-dag.active', visible: false)
- end
-
- context 'page tabs' do
- it 'shows Pipeline, Jobs and DAG tabs with link' do
- expect(page).to have_link('Pipeline')
- expect(page).to have_link('Jobs')
- expect(page).to have_link('DAG')
- end
-
- it 'shows counter in Jobs tab' do
- expect(page.find('.js-builds-counter').text).to eq(pipeline.total_size.to_s)
- end
-
- it 'shows DAG tab as active' do
- expect(page).to have_css('li.js-dag-tab-link .active')
- end
- end
- end
-
- context 'when user sees pipeline flags in a pipeline detail page' do
- let_it_be(:project) { create(:project, :repository) }
-
- context 'when pipeline is latest' do
- include_context 'pipeline builds'
-
- let(:pipeline) do
- create(:ci_pipeline,
- project: project,
- ref: 'master',
- sha: project.commit.id,
- user: user)
- end
-
- before do
- visit project_pipeline_path(project, pipeline)
- end
-
- it 'contains badge that indicates it is the latest build' do
- page.within(all('.well-segment')[1]) do
- expect(page).to have_content 'latest'
- end
- end
- end
-
- context 'when pipeline has configuration errors' do
- let(:pipeline) do
- create(:ci_pipeline,
- :invalid,
- project: project,
- ref: 'master',
- sha: project.commit.id,
- user: user)
- end
-
- before do
- visit project_pipeline_path(project, pipeline)
- end
-
- it 'contains badge that indicates errors' do
- page.within(all('.well-segment')[1]) do
- expect(page).to have_content 'yaml invalid'
- end
- end
-
- it 'contains badge with tooltip which contains error' do
- expect(pipeline).to have_yaml_errors
-
- page.within(all('.well-segment')[1]) do
- expect(page).to have_selector(
- %Q{span[title="#{pipeline.yaml_errors}"]})
- end
- end
-
- it 'contains badge that indicates failure reason' do
- expect(page).to have_content 'error'
- end
-
- it 'contains badge with tooltip which contains failure reason' do
- expect(pipeline.failure_reason?).to eq true
-
- page.within(all('.well-segment')[1]) do
- expect(page).to have_selector(
- %Q{span[title="#{pipeline.present.failure_reason}"]})
- end
- end
-
- it 'contains a pipeline header with title' do
- expect(page).to have_content "Pipeline ##{pipeline.id}"
- end
- end
-
- context 'when pipeline is stuck' do
- include_context 'pipeline builds'
-
- let(:pipeline) do
- create(:ci_pipeline,
- project: project,
- ref: 'master',
- sha: project.commit.id,
- user: user)
- end
-
- before do
- create(:ci_build, :pending, pipeline: pipeline)
- visit project_pipeline_path(project, pipeline)
- end
-
- it 'contains badge that indicates being stuck' do
- page.within(all('.well-segment')[1]) do
- expect(page).to have_content 'stuck'
- end
- end
- end
-
- context 'when pipeline uses auto devops' do
- include_context 'pipeline builds'
-
- let(:project) { create(:project, :repository, auto_devops_attributes: { enabled: true }) }
- let(:pipeline) do
- create(:ci_pipeline,
- :auto_devops_source,
- project: project,
- ref: 'master',
- sha: project.commit.id,
- user: user)
- end
-
- before do
- visit project_pipeline_path(project, pipeline)
- end
-
- it 'contains badge that indicates using auto devops' do
- page.within(all('.well-segment')[1]) do
- expect(page).to have_content 'Auto DevOps'
- end
- end
- end
-
- context 'when pipeline runs in a merge request context' do
- include_context 'pipeline builds'
-
- let(:pipeline) do
- create(:ci_pipeline,
- source: :merge_request_event,
- project: merge_request.source_project,
- ref: 'feature',
- sha: merge_request.diff_head_sha,
- user: user,
- merge_request: merge_request)
- end
-
- let(:merge_request) do
- create(:merge_request,
- source_project: project,
- source_branch: 'feature',
- target_project: project,
- target_branch: 'master')
- end
-
- before do
- visit project_pipeline_path(project, pipeline)
- end
-
- it 'contains badge that indicates detached merge request pipeline' do
- page.within(all('.well-segment')[1]) do
- expect(page).to have_content 'merge request'
- end
- end
- end
- end
-
- describe 'GET /:project/-/pipelines/:id/builds' do
- include_context 'pipeline builds'
-
- let_it_be(:project) { create(:project, :repository) }
-
- let(:pipeline) { create(:ci_pipeline, project: project, ref: 'master', sha: project.commit.id) }
-
- before do
- visit builds_project_pipeline_path(project, pipeline)
- end
-
- it 'shows a list of jobs' do
- expect(page).to have_content('Test')
- expect(page).to have_content(build_passed.id)
- expect(page).to have_content('Deploy')
- expect(page).to have_content(build_failed.id)
- expect(page).to have_content(build_running.id)
- expect(page).to have_content(build_external.id)
- expect(page).to have_content('Retry')
- expect(page).to have_content('Cancel running')
- expect(page).to have_button('Play')
- end
-
- context 'page tabs' do
- it 'shows Pipeline, Jobs and DAG tabs with link' do
- expect(page).to have_link('Pipeline')
- expect(page).to have_link('Jobs')
- expect(page).to have_link('Needs')
- end
-
- it 'shows counter in Jobs tab' do
- expect(page.find('.js-builds-counter').text).to eq(pipeline.total_size.to_s)
- end
- end
-
- context 'retrying jobs' do
- it { expect(page).not_to have_content('retried') }
-
- context 'when retrying' do
- before do
- find('[data-testid="retry"]', match: :first).click
- end
-
- it 'does not show a "Retry" button', :sidekiq_might_not_need_inline do
- expect(page).not_to have_content('Retry')
- end
- end
- end
-
- context 'canceling jobs' do
- it { expect(page).not_to have_selector('.ci-canceled') }
-
- context 'when canceling' do
- before do
- click_on 'Cancel running'
- end
-
- it 'does not show a "Cancel running" button', :sidekiq_might_not_need_inline do
- expect(page).not_to have_content('Cancel running')
- end
- end
- end
-
- context 'playing manual job' do
- before do
- within '[data-testid="jobs-tab-table"]' do
- click_button('Play')
-
- wait_for_requests
- end
- end
-
- it { expect(build_manual.reload).to be_pending }
- end
-
- context 'when user unschedules a delayed job' do
- before do
- within '[data-testid="jobs-tab-table"]' do
- click_button('Unschedule')
- end
- end
-
- it 'unschedules the delayed job and shows play button as a manual job' do
- expect(page).to have_button('Play')
- expect(page).not_to have_button('Unschedule')
- end
- end
- end
-
- describe 'GET /:project/-/pipelines/:id/failures' do
- let(:pipeline) { create(:ci_pipeline, project: project, ref: 'master', sha: '1234') }
- let(:pipeline_failures_page) { failures_project_pipeline_path(project, pipeline) }
- let!(:failed_build) { create(:ci_build, :failed, pipeline: pipeline) }
-
- subject { visit pipeline_failures_page }
-
- context 'with failed build' do
- before do
- failed_build.trace.set('4 examples, 1 failure')
- end
-
- it 'lists failed builds' do
- subject
-
- expect(page).to have_content(failed_build.name)
- expect(page).to have_content(failed_build.stage_name)
- end
-
- it 'shows build failure logs' do
- subject
-
- expect(page).to have_content('4 examples, 1 failure')
- end
-
- it 'shows the failure reason' do
- subject
-
- expect(page).to have_content('There is an unknown failure, please try again')
- end
-
- context 'when user does not have permission to retry build' do
- it 'shows retry button for failed build' do
- subject
-
- page.within(find('#js-tab-failures', match: :first)) do
- expect(page).not_to have_button('Retry')
- end
- end
- end
-
- context 'when user does have permission to retry build' do
- before do
- create(:protected_branch, :developers_can_merge,
- name: pipeline.ref, project: project)
- end
-
- it 'shows retry button for failed build' do
- subject
-
- page.within(find('#js-tab-failures', match: :first)) do
- expect(page).to have_button('Retry')
- end
- end
- end
- end
-
- context 'when missing build logs' do
- it 'lists failed builds' do
- subject
-
- expect(page).to have_content(failed_build.name)
- expect(page).to have_content(failed_build.stage_name)
- end
-
- it 'does not show log' do
- subject
-
- expect(page).to have_content('No job log')
- end
- end
-
- context 'without permission to access builds' do
- let(:role) { :guest }
-
- before do
- project.update!(public_builds: false)
- end
-
- context 'when accessing failed jobs page' do
- it 'renders a 404 page' do
- requests = inspect_requests { subject }
-
- expect(page).to have_title('Not Found')
- expect(requests.first.status_code).to eq(404)
- end
- end
- end
-
- context 'without failures' do
- before do
- failed_build.update!(status: :success)
- end
-
- it 'does not show the failure tab' do
- subject
-
- expect(page).not_to have_content('Failed Jobs')
- end
-
- it 'displays the pipeline graph' do
- subject
-
- expect(page).to have_current_path(pipeline_path(pipeline), ignore_query: true)
- expect(page).to have_selector('.js-pipeline-graph')
- end
- end
- end
-end
diff --git a/spec/features/projects/pipelines/legacy_pipelines_spec.rb b/spec/features/projects/pipelines/legacy_pipelines_spec.rb
deleted file mode 100644
index b6ae4144709..00000000000
--- a/spec/features/projects/pipelines/legacy_pipelines_spec.rb
+++ /dev/null
@@ -1,851 +0,0 @@
-# frozen_string_literal: true
-
-require 'spec_helper'
-
-RSpec.describe 'Pipelines', :js, feature_category: :projects do
- include ProjectForksHelper
- include Spec::Support::Helpers::ModalHelpers
-
- let(:project) { create(:project) }
- let(:expected_detached_mr_tag) { 'merge request' }
-
- context 'when user is logged in' do
- let(:user) { create(:user) }
-
- before do
- sign_in(user)
-
- project.add_developer(user)
- project.update!(auto_devops_attributes: { enabled: false })
-
- stub_feature_flags(pipeline_tabs_vue: false)
- end
-
- describe 'GET /:project/-/pipelines' do
- let(:project) { create(:project, :repository) }
-
- let!(:pipeline) do
- create(
- :ci_empty_pipeline,
- project: project,
- ref: 'master',
- status: 'running',
- sha: project.commit.id
- )
- end
-
- context 'scope' do
- before do
- create(:ci_empty_pipeline, status: 'pending', project: project, sha: project.commit.id, ref: 'master')
- create(:ci_empty_pipeline, status: 'running', project: project, sha: project.commit.id, ref: 'master')
- create(:ci_empty_pipeline, status: 'created', project: project, sha: project.commit.id, ref: 'master')
- create(:ci_empty_pipeline, status: 'success', project: project, sha: project.commit.id, ref: 'master')
- end
-
- [:all, :running, :pending, :finished, :branches].each do |scope|
- context "when displaying #{scope}" do
- before do
- visit_project_pipelines(scope: scope)
- end
-
- it 'contains pipeline commit short SHA' do
- expect(page).to have_content(pipeline.short_sha)
- end
-
- it 'contains branch name' do
- expect(page).to have_content(pipeline.ref)
- end
- end
- end
- end
-
- context 'header tabs' do
- before do
- visit project_pipelines_path(project)
- wait_for_requests
- end
-
- it 'shows a tab for All pipelines and count' do
- expect(page.find('.js-pipelines-tab-all').text).to include('All')
- expect(page.find('.js-pipelines-tab-all .badge').text).to include('1')
- end
-
- it 'shows a tab for Finished pipelines and count' do
- expect(page.find('.js-pipelines-tab-finished').text).to include('Finished')
- end
-
- it 'shows a tab for Branches' do
- expect(page.find('.js-pipelines-tab-branches').text).to include('Branches')
- end
-
- it 'shows a tab for Tags' do
- expect(page.find('.js-pipelines-tab-tags').text).to include('Tags')
- end
-
- it 'updates content when tab is clicked' do
- page.find('.js-pipelines-tab-finished').click
- wait_for_requests
- expect(page).to have_content('There are currently no finished pipelines.')
- end
- end
-
- context 'navigation links' do
- before do
- visit project_pipelines_path(project)
- wait_for_requests
- end
-
- it 'renders "CI lint" link' do
- expect(page).to have_link('CI lint')
- end
-
- it 'renders "Run pipeline" link' do
- expect(page).to have_link('Run pipeline')
- end
- end
-
- context 'when pipeline is cancelable' do
- let!(:build) do
- create(:ci_build, pipeline: pipeline,
- stage: 'test')
- end
-
- before do
- build.run
- visit_project_pipelines
- end
-
- it 'indicates that pipeline can be canceled' do
- expect(page).to have_selector('.js-pipelines-cancel-button')
- expect(page).to have_selector('.ci-running')
- end
-
- context 'when canceling' do
- before do
- find('.js-pipelines-cancel-button').click
- click_button 'Stop pipeline'
- wait_for_requests
- end
-
- it 'indicated that pipelines was canceled', :sidekiq_might_not_need_inline do
- expect(page).not_to have_selector('.js-pipelines-cancel-button')
- expect(page).to have_selector('.ci-canceled')
- end
- end
- end
-
- context 'when pipeline is retryable', :sidekiq_might_not_need_inline do
- let!(:build) do
- create(:ci_build, pipeline: pipeline,
- stage: 'test')
- end
-
- before do
- build.drop
- visit_project_pipelines
- end
-
- it 'indicates that pipeline can be retried' do
- expect(page).to have_selector('.js-pipelines-retry-button')
- expect(page).to have_selector('.ci-failed')
- end
-
- context 'when retrying' do
- before do
- find('.js-pipelines-retry-button').click
- wait_for_requests
- end
-
- it 'shows running pipeline that is not retryable' do
- expect(page).not_to have_selector('.js-pipelines-retry-button')
- expect(page).to have_selector('.ci-running')
- end
- end
- end
-
- context 'when pipeline is detached merge request pipeline' do
- let(:merge_request) do
- create(:merge_request,
- :with_detached_merge_request_pipeline,
- source_project: source_project,
- target_project: target_project)
- end
-
- let!(:pipeline) { merge_request.all_pipelines.first }
- let(:source_project) { project }
- let(:target_project) { project }
-
- before do
- visit project_pipelines_path(source_project)
- end
-
- shared_examples_for 'detached merge request pipeline' do
- it 'shows pipeline information without pipeline ref', :sidekiq_might_not_need_inline do
- within '.pipeline-tags' do
- expect(page).to have_content(expected_detached_mr_tag)
-
- expect(page).to have_link(merge_request.iid,
- href: project_merge_request_path(project, merge_request))
-
- expect(page).not_to have_link(pipeline.ref)
- end
- end
- end
-
- it_behaves_like 'detached merge request pipeline'
-
- context 'when source project is a forked project' do
- let(:source_project) { fork_project(project, user, repository: true) }
-
- it_behaves_like 'detached merge request pipeline'
- end
- end
-
- context 'when pipeline is merge request pipeline' do
- let(:merge_request) do
- create(:merge_request,
- :with_merge_request_pipeline,
- source_project: source_project,
- target_project: target_project,
- merge_sha: target_project.commit.sha)
- end
-
- let!(:pipeline) { merge_request.all_pipelines.first }
- let(:source_project) { project }
- let(:target_project) { project }
-
- before do
- visit project_pipelines_path(source_project)
- end
-
- shared_examples_for 'Correct merge request pipeline information' do
- it 'does not show detached tag for the pipeline, and shows the link of the merge request' \
- 'and does not show the ref of the pipeline', :sidekiq_might_not_need_inline do
- within '.pipeline-tags' do
- expect(page).not_to have_content(expected_detached_mr_tag)
-
- expect(page).to have_link(merge_request.iid,
- href: project_merge_request_path(project, merge_request))
-
- expect(page).not_to have_link(pipeline.ref)
- end
- end
- end
-
- it_behaves_like 'Correct merge request pipeline information'
-
- context 'when source project is a forked project' do
- let(:source_project) { fork_project(project, user, repository: true) }
-
- it_behaves_like 'Correct merge request pipeline information'
- end
- end
-
- context 'when pipeline has configuration errors' do
- let(:pipeline) do
- create(:ci_pipeline, :invalid, project: project)
- end
-
- before do
- visit_project_pipelines
- end
-
- it 'contains badge that indicates errors' do
- expect(page).to have_content 'yaml invalid'
- end
-
- it 'contains badge with tooltip which contains error' do
- expect(pipeline).to have_yaml_errors
- expect(page).to have_selector(
- %Q{span[title="#{pipeline.yaml_errors}"]})
- end
-
- it 'contains badge that indicates failure reason' do
- expect(page).to have_content 'error'
- end
-
- it 'contains badge with tooltip which contains failure reason' do
- expect(pipeline.failure_reason?).to eq true
- expect(page).to have_selector(
- %Q{span[title="#{pipeline.present.failure_reason}"]})
- end
- end
-
- context 'with manual actions' do
- let!(:manual) do
- create(:ci_build, :manual,
- pipeline: pipeline,
- name: 'manual build',
- stage: 'test')
- end
-
- before do
- visit_project_pipelines
- end
-
- it 'has a dropdown with play button' do
- expect(page).to have_selector('[data-testid="pipelines-manual-actions-dropdown"] [data-testid="play-icon"]')
- end
-
- it 'has link to the manual action' do
- find('[data-testid="pipelines-manual-actions-dropdown"]').click
-
- expect(page).to have_button('manual build')
- end
-
- context 'when manual action was played' do
- before do
- find('[data-testid="pipelines-manual-actions-dropdown"]').click
- click_button('manual build')
- end
-
- it 'enqueues manual action job' do
- expect(page).to have_selector(
- '[data-testid="pipelines-manual-actions-dropdown"] .gl-dropdown-toggle:disabled'
- )
- end
- end
- end
-
- context 'when there is a delayed job' do
- let!(:delayed_job) do
- create(:ci_build, :scheduled,
- pipeline: pipeline,
- name: 'delayed job 1',
- stage: 'test')
- end
-
- before do
- visit_project_pipelines
- end
-
- it 'has a dropdown for actionable jobs' do
- expect(page).to have_selector('[data-testid="pipelines-manual-actions-dropdown"] [data-testid="play-icon"]')
- end
-
- it "has link to the delayed job's action" do
- find('[data-testid="pipelines-manual-actions-dropdown"]').click
-
- time_diff = [0, delayed_job.scheduled_at - Time.zone.now].max
- expect(page).to have_button('delayed job 1')
- expect(page).to have_content(Time.at(time_diff).utc.strftime("%H:%M:%S"))
- end
-
- context 'when delayed job is expired already' do
- let!(:delayed_job) do
- create(:ci_build, :expired_scheduled,
- pipeline: pipeline,
- name: 'delayed job 1',
- stage: 'test')
- end
-
- it "shows 00:00:00 as the remaining time" do
- find('[data-testid="pipelines-manual-actions-dropdown"]').click
-
- expect(page).to have_content("00:00:00")
- end
- end
-
- context 'when user played a delayed job immediately' do
- before do
- find('[data-testid="pipelines-manual-actions-dropdown"]').click
- accept_gl_confirm do
- click_button 'delayed job 1'
- end
- wait_for_requests
- end
-
- it 'enqueues the delayed job', :js do
- find('[data-testid="mini-pipeline-graph-dropdown"]').click
-
- within('[data-testid="mini-pipeline-graph-dropdown"]') { find('.ci-status-icon-pending') }
-
- expect(delayed_job.reload).to be_pending
- end
- end
- end
-
- context 'for generic statuses' do
- context 'when preparing' do
- let!(:pipeline) do
- create(:ci_empty_pipeline,
- status: 'preparing', project: project)
- end
-
- let!(:status) do
- create(:generic_commit_status,
- :preparing, pipeline: pipeline)
- end
-
- before do
- visit_project_pipelines
- end
-
- it 'is cancelable' do
- expect(page).to have_selector('.js-pipelines-cancel-button')
- end
-
- it 'shows the pipeline as preparing' do
- expect(page).to have_selector('.ci-preparing')
- end
- end
-
- context 'when running' do
- let!(:running) do
- create(:generic_commit_status,
- status: 'running',
- pipeline: pipeline,
- stage: 'test')
- end
-
- before do
- visit_project_pipelines
- end
-
- it 'is cancelable' do
- expect(page).to have_selector('.js-pipelines-cancel-button')
- end
-
- it 'has pipeline running' do
- expect(page).to have_selector('.ci-running')
- end
-
- context 'when canceling' do
- before do
- find('.js-pipelines-cancel-button').click
- click_button 'Stop pipeline'
- end
-
- it 'indicates that pipeline was canceled', :sidekiq_might_not_need_inline do
- expect(page).not_to have_selector('.js-pipelines-cancel-button')
- expect(page).to have_selector('.ci-canceled')
- end
- end
- end
-
- context 'when failed' do
- let!(:status) do
- create(:generic_commit_status, :pending,
- pipeline: pipeline,
- stage: 'test')
- end
-
- before do
- status.drop
- visit_project_pipelines
- end
-
- it 'is not retryable' do
- expect(page).not_to have_selector('.js-pipelines-retry-button')
- end
-
- it 'has failed pipeline', :sidekiq_might_not_need_inline do
- expect(page).to have_selector('.ci-failed')
- end
- end
- end
-
- context 'downloadable pipelines' do
- context 'with artifacts' do
- let!(:with_artifacts) do
- build = create(:ci_build, :success,
- pipeline: pipeline,
- name: 'rspec tests',
- stage: 'test')
-
- create(:ci_job_artifact, :codequality, job: build)
- end
-
- before do
- visit_project_pipelines
- end
-
- it 'has artifacts dropdown' do
- expect(page).to have_selector('[data-testid="pipeline-multi-actions-dropdown"]')
- end
- end
-
- context 'with artifacts expired' do
- let!(:with_artifacts_expired) do
- create(:ci_build, :expired, :success,
- pipeline: pipeline,
- name: 'rspec',
- stage: 'test')
- end
-
- before do
- visit_project_pipelines
- end
-
- it { expect(page).not_to have_selector('[data-testid="artifact-item"]') }
- end
-
- context 'without artifacts' do
- let!(:without_artifacts) do
- create(:ci_build, :success,
- pipeline: pipeline,
- name: 'rspec',
- stage: 'test')
- end
-
- before do
- visit_project_pipelines
- end
-
- it { expect(page).not_to have_selector('[data-testid="artifact-item"]') }
- end
-
- context 'with trace artifact' do
- before do
- create(:ci_build, :success, :trace_artifact, pipeline: pipeline)
-
- visit_project_pipelines
- end
-
- it 'does not show trace artifact as artifacts' do
- expect(page).not_to have_selector('[data-testid="artifact-item"]')
- end
- end
- end
-
- context 'mini pipeline graph' do
- let!(:build) do
- create(:ci_build, :pending, pipeline: pipeline,
- stage: 'build',
- name: 'build')
- end
-
- dropdown_selector = '[data-testid="mini-pipeline-graph-dropdown"]'
-
- before do
- visit_project_pipelines
- end
-
- it 'renders a mini pipeline graph' do
- expect(page).to have_selector('[data-testid="pipeline-mini-graph"]')
- expect(page).to have_selector(dropdown_selector)
- end
-
- context 'when clicking a stage badge' do
- it 'opens a dropdown' do
- find(dropdown_selector).click
-
- expect(page).to have_link build.name
- end
-
- it 'is possible to cancel pending build' do
- find(dropdown_selector).click
- find('.js-ci-action').click
- wait_for_requests
-
- expect(build.reload).to be_canceled
- end
- end
-
- context 'for a failed pipeline' do
- let!(:build) do
- create(:ci_build, :failed, pipeline: pipeline,
- stage: 'build',
- name: 'build')
- end
-
- it 'displays the failure reason' do
- find(dropdown_selector).click
-
- within('.js-builds-dropdown-list') do
- build_element = page.find('.mini-pipeline-graph-dropdown-item')
- expect(build_element['title']).to eq('build - failed - (unknown failure)')
- end
- end
- end
- end
-
- context 'with pagination' do
- before do
- allow(Ci::Pipeline).to receive(:default_per_page).and_return(1)
- create(:ci_empty_pipeline, project: project)
- end
-
- it 'renders pagination' do
- visit project_pipelines_path(project)
- wait_for_requests
-
- expect(page).to have_selector('.gl-pagination')
- end
-
- it 'renders second page of pipelines' do
- visit project_pipelines_path(project, page: '2')
- wait_for_requests
-
- expect(page).to have_selector('.gl-pagination .page-link', count: 4)
- end
-
- it 'shows updated content' do
- visit project_pipelines_path(project)
- wait_for_requests
- page.find('.page-link.next-page-item').click
-
- expect(page).to have_selector('.gl-pagination .page-link', count: 4)
- end
- end
-
- context 'with pipeline key selection' do
- before do
- visit project_pipelines_path(project)
- wait_for_requests
- end
-
- it 'changes the Pipeline ID column for Pipeline IID' do
- page.find('[data-testid="pipeline-key-dropdown"]').click
-
- within '.gl-dropdown-contents' do
- dropdown_options = page.find_all '.gl-dropdown-item'
-
- dropdown_options[1].click
- end
-
- expect(page.find('[data-testid="pipeline-th"]')).to have_content 'Pipeline'
- expect(page.find('[data-testid="pipeline-url-link"]')).to have_content "##{pipeline.iid}"
- end
- end
- end
-
- describe 'GET /:project/-/pipelines/show' do
- let(:project) { create(:project, :repository) }
-
- let(:pipeline) do
- create(:ci_empty_pipeline,
- project: project,
- sha: project.commit.id,
- user: user)
- end
-
- before do
- create_build('build', 0, 'build', :success)
- create_build('test', 1, 'rspec 0:2', :pending)
- create_build('test', 1, 'rspec 1:2', :running)
- create_build('test', 1, 'spinach 0:2', :created)
- create_build('test', 1, 'spinach 1:2', :created)
- create_build('test', 1, 'audit', :created)
- create_build('deploy', 2, 'production', :created)
-
- create(
- :generic_commit_status,
- pipeline: pipeline,
- stage: 'external',
- name: 'jenkins',
- stage_idx: 3,
- ref: 'master'
- )
-
- visit project_pipeline_path(project, pipeline)
- wait_for_requests
- end
-
- it 'shows a graph with grouped stages' do
- expect(page).to have_css('.js-pipeline-graph')
-
- # header
- expect(page).to have_text("##{pipeline.id}")
- expect(page).to have_selector(%Q(img[src="#{pipeline.user.avatar_url}"]))
- expect(page).to have_link(pipeline.user.name, href: user_path(pipeline.user))
-
- # stages
- expect(page).to have_text('build')
- expect(page).to have_text('test')
- expect(page).to have_text('deploy')
- expect(page).to have_text('external')
-
- # builds
- expect(page).to have_text('rspec')
- expect(page).to have_text('spinach')
- expect(page).to have_text('rspec')
- expect(page).to have_text('production')
- expect(page).to have_text('jenkins')
- end
-
- def create_build(stage, stage_idx, name, status)
- create(:ci_build, pipeline: pipeline, stage: stage, stage_idx: stage_idx, name: name, status: status)
- end
- end
-
- describe 'POST /:project/-/pipelines' do
- let(:project) { create(:project, :repository) }
-
- before do
- visit new_project_pipeline_path(project)
- end
-
- context 'for valid commit', :js do
- before do
- click_button project.default_branch
- wait_for_requests
-
- find('p', text: 'master').click
- wait_for_requests
- end
-
- context 'with gitlab-ci.yml', :js do
- before do
- stub_ci_pipeline_to_return_yaml_file
- end
-
- it 'creates a new pipeline' do
- expect do
- click_on 'Run pipeline'
- wait_for_requests
- end
- .to change { Ci::Pipeline.count }.by(1)
-
- expect(Ci::Pipeline.last).to be_web
- end
-
- context 'when variables are specified' do
- it 'creates a new pipeline with variables' do
- page.within(find("[data-testid='ci-variable-row']")) do
- find("[data-testid='pipeline-form-ci-variable-key']").set('key_name')
- find("[data-testid='pipeline-form-ci-variable-value']").set('value')
- end
-
- expect do
- click_on 'Run pipeline'
- wait_for_requests
- end
- .to change { Ci::Pipeline.count }.by(1)
-
- expect(Ci::Pipeline.last.variables.map { |var| var.slice(:key, :secret_value) })
- .to eq [{ key: "key_name", secret_value: "value" }.with_indifferent_access]
- end
- end
- end
-
- context 'without gitlab-ci.yml' do
- before do
- click_on 'Run pipeline'
- wait_for_requests
- end
-
- it { expect(page).to have_content('Missing CI config file') }
-
- it 'creates a pipeline after first request failed and a valid gitlab-ci.yml file' \
- 'is available when trying again' do
- stub_ci_pipeline_to_return_yaml_file
-
- expect do
- click_on 'Run pipeline'
- wait_for_requests
- end
- .to change { Ci::Pipeline.count }.by(1)
- end
- end
- end
- end
-
- describe 'Reset runner caches' do
- let(:project) { create(:project, :repository) }
-
- before do
- create(:ci_empty_pipeline, status: 'success', project: project, sha: project.commit.id, ref: 'master')
- project.add_maintainer(user)
- visit project_pipelines_path(project)
- end
-
- it 'has a clear caches button' do
- expect(page).to have_button 'Clear runner caches'
- end
-
- describe 'user clicks the button' do
- context 'when project already has jobs_cache_index' do
- before do
- project.update!(jobs_cache_index: 1)
- end
-
- it 'increments jobs_cache_index' do
- click_button 'Clear runner caches'
- wait_for_requests
- expect(page.find('[data-testid="alert-info"]')).to have_content 'Project cache successfully reset.'
- end
- end
-
- context 'when project does not have jobs_cache_index' do
- it 'sets jobs_cache_index to 1' do
- click_button 'Clear runner caches'
- wait_for_requests
- expect(page.find('[data-testid="alert-info"]')).to have_content 'Project cache successfully reset.'
- end
- end
- end
- end
-
- describe 'Run Pipelines' do
- let(:project) { create(:project, :repository) }
-
- before do
- visit new_project_pipeline_path(project)
- end
-
- describe 'new pipeline page' do
- it 'has field to add a new pipeline' do
- expect(page).to have_selector('[data-testid="ref-select"]')
- expect(find('[data-testid="ref-select"]')).to have_content project.default_branch
- expect(page).to have_content('Run for')
- end
- end
-
- describe 'find pipelines' do
- it 'shows filtered pipelines', :js do
- click_button project.default_branch
-
- page.within '[data-testid="ref-select"]' do
- find('[data-testid="search-refs"]').native.send_keys('fix')
-
- page.within '.gl-dropdown-contents' do
- expect(page).to have_content('fix')
- end
- end
- end
- end
- end
-
- describe 'Empty State' do
- let(:project) { create(:project, :repository) }
-
- before do
- visit project_pipelines_path(project)
- end
-
- it 'renders empty state' do
- expect(page).to have_content 'Try test template'
- end
- end
- end
-
- context 'when user is not logged in' do
- before do
- project.update!(auto_devops_attributes: { enabled: false })
- visit project_pipelines_path(project)
- end
-
- context 'when project is public' do
- let(:project) { create(:project, :public, :repository) }
-
- context 'without pipelines' do
- it { expect(page).to have_content 'This project is not currently set up to run pipelines.' }
- end
- end
-
- context 'when project is private' do
- let(:project) { create(:project, :private, :repository) }
-
- it 'redirects the user to sign_in and displays the flash alert' do
- expect(page).to have_content 'You need to sign in'
- expect(page).to have_current_path("/users/sign_in")
- end
- end
- end
-
- def visit_project_pipelines(**query)
- visit project_pipelines_path(project, query)
- wait_for_requests
- end
-end