debian-mirror-gitlab/spec/features/projects/pipeline_schedules_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

327 lines
10 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Pipeline Schedules', :js do
2017-09-10 17:25:29 +05:30
let!(:project) { create(:project, :repository) }
2017-08-17 22:00:37 +05:30
let!(:pipeline_schedule) { create(:ci_pipeline_schedule, :nightly, project: project ) }
let!(:pipeline) { create(:ci_pipeline, pipeline_schedule: pipeline_schedule) }
let(:scope) { nil }
let!(:user) { create(:user) }
2022-05-03 16:02:30 +05:30
context 'logged in as the pipeline scheduler owner' do
before do
stub_feature_flags(bootstrap_confirmation_modals: false)
project.add_developer(user)
pipeline_schedule.update!(owner: user)
gitlab_sign_in(user)
end
describe 'GET /projects/pipeline_schedules' do
before do
visit_pipelines_schedules
end
it 'edits the pipeline' do
page.within('.pipeline-schedule-table-row') do
click_link 'Edit'
end
expect(page).to have_content('Edit Pipeline Schedule')
end
end
describe 'PATCH /projects/pipelines_schedules/:id/edit' do
before do
edit_pipeline_schedule
end
it 'displays existing properties' do
description = find_field('schedule_description').value
expect(description).to eq('pipeline schedule')
expect(page).to have_button('master')
expect(page).to have_button('UTC')
end
it 'edits the scheduled pipeline' do
fill_in 'schedule_description', with: 'my brand new description'
save_pipeline_schedule
expect(page).to have_content('my brand new description')
end
context 'when ref is nil' do
before do
pipeline_schedule.update_attribute(:ref, nil)
edit_pipeline_schedule
end
it 'shows the pipeline schedule with default ref' do
2022-05-07 20:08:51 +05:30
page.within('[data-testid="schedule-target-ref"]') do
expect(first('.gl-new-dropdown-button-text').text).to eq('master')
2022-05-03 16:02:30 +05:30
end
end
end
context 'when ref is empty' do
before do
pipeline_schedule.update_attribute(:ref, '')
edit_pipeline_schedule
end
it 'shows the pipeline schedule with default ref' do
2022-05-07 20:08:51 +05:30
page.within('[data-testid="schedule-target-ref"]') do
expect(first('.gl-new-dropdown-button-text').text).to eq('master')
2022-05-03 16:02:30 +05:30
end
end
end
end
end
context 'logged in as a project maintainer' do
2017-09-10 17:25:29 +05:30
before do
2021-12-11 22:18:48 +05:30
stub_feature_flags(bootstrap_confirmation_modals: false)
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2017-09-10 17:25:29 +05:30
gitlab_sign_in(user)
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
describe 'GET /projects/pipeline_schedules' do
before do
visit_pipelines_schedules
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
describe 'The view' do
it 'displays the required information description' do
page.within('.pipeline-schedule-table-row') do
expect(page).to have_content('pipeline schedule')
2021-01-29 00:20:46 +05:30
expect(find(".next-run-cell time")['title'])
2017-09-10 17:25:29 +05:30
.to include(pipeline_schedule.real_next_run.strftime('%b %-d, %Y'))
expect(page).to have_link('master')
expect(page).to have_link("##{pipeline.id}")
end
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
it 'creates a new scheduled pipeline' do
click_link 'New schedule'
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
expect(page).to have_content('Schedule a new pipeline')
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
it 'changes ownership of the pipeline' do
click_link 'Take ownership'
page.within('.pipeline-schedule-table-row') do
expect(page).not_to have_content('No owner')
2022-01-26 12:08:38 +05:30
expect(page).to have_link('Sidney Jones')
2017-09-10 17:25:29 +05:30
end
end
it 'deletes the pipeline' do
2018-03-17 18:26:18 +05:30
accept_confirm { click_link 'Delete' }
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
expect(page).not_to have_css(".pipeline-schedule-table-row")
end
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
context 'when ref is nil' do
before do
pipeline_schedule.update_attribute(:ref, nil)
visit_pipelines_schedules
end
it 'shows a list of the pipeline schedules with empty ref column' do
expect(first('.branch-name-cell').text).to eq('')
2017-08-17 22:00:37 +05:30
end
end
2017-09-10 17:25:29 +05:30
context 'when ref is empty' do
before do
pipeline_schedule.update_attribute(:ref, '')
visit_pipelines_schedules
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
it 'shows a list of the pipeline schedules with empty ref column' do
expect(first('.branch-name-cell').text).to eq('')
end
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
describe 'POST /projects/pipeline_schedules/new' do
before do
visit_new_pipeline_schedule
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
it 'sets defaults for timezone and target branch' do
expect(page).to have_button('master')
expect(page).to have_button('UTC')
end
2019-07-07 11:18:12 +05:30
it 'creates a new scheduled pipeline' do
2017-09-10 17:25:29 +05:30
fill_in_schedule_form
save_pipeline_schedule
expect(page).to have_content('my fancy description')
end
2019-07-07 11:18:12 +05:30
it 'prevents an invalid form from being submitted' do
2017-09-10 17:25:29 +05:30
save_pipeline_schedule
expect(page).to have_content('This field is required')
2017-08-17 22:00:37 +05:30
end
end
2017-09-10 17:25:29 +05:30
context 'when user creates a new pipeline schedule with variables' do
2018-11-08 19:23:39 +05:30
before do
2017-09-10 17:25:29 +05:30
visit_pipelines_schedules
click_link 'New schedule'
fill_in_schedule_form
all('[name="schedule[variables_attributes][][key]"]')[0].set('AAA')
2018-05-09 12:01:36 +05:30
all('[name="schedule[variables_attributes][][secret_value]"]')[0].set('AAA123')
2017-09-10 17:25:29 +05:30
all('[name="schedule[variables_attributes][][key]"]')[1].set('BBB')
2018-05-09 12:01:36 +05:30
all('[name="schedule[variables_attributes][][secret_value]"]')[1].set('BBB123')
2017-09-10 17:25:29 +05:30
save_pipeline_schedule
end
2017-08-17 22:00:37 +05:30
2018-11-08 19:23:39 +05:30
it 'user sees the new variable in edit window' do
2017-09-10 17:25:29 +05:30
find(".content-list .pipeline-schedule-table-row:nth-child(1) .btn-group a[title='Edit']").click
2018-03-17 18:26:18 +05:30
page.within('.ci-variable-list') do
expect(find(".ci-variable-row:nth-child(1) .js-ci-variable-input-key").value).to eq('AAA')
expect(find(".ci-variable-row:nth-child(1) .js-ci-variable-input-value", visible: false).value).to eq('AAA123')
expect(find(".ci-variable-row:nth-child(2) .js-ci-variable-input-key").value).to eq('BBB')
expect(find(".ci-variable-row:nth-child(2) .js-ci-variable-input-value", visible: false).value).to eq('BBB123')
2017-09-10 17:25:29 +05:30
end
end
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
context 'when user edits a variable of a pipeline schedule' do
2018-11-08 19:23:39 +05:30
before do
2017-09-10 17:25:29 +05:30
create(:ci_pipeline_schedule, project: project, owner: user).tap do |pipeline_schedule|
create(:ci_pipeline_schedule_variable, key: 'AAA', value: 'AAA123', pipeline_schedule: pipeline_schedule)
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
visit_pipelines_schedules
find(".content-list .pipeline-schedule-table-row:nth-child(1) .btn-group a[title='Edit']").click
2018-03-17 18:26:18 +05:30
find('.js-ci-variable-list-section .js-secret-value-reveal-button').click
first('.js-ci-variable-input-key').set('foo')
first('.js-ci-variable-input-value').set('bar')
2017-09-10 17:25:29 +05:30
click_button 'Save pipeline schedule'
end
2018-11-08 19:23:39 +05:30
it 'user sees the updated variable in edit window' do
2017-09-10 17:25:29 +05:30
find(".content-list .pipeline-schedule-table-row:nth-child(1) .btn-group a[title='Edit']").click
2018-03-17 18:26:18 +05:30
page.within('.ci-variable-list') do
expect(find(".ci-variable-row:nth-child(1) .js-ci-variable-input-key").value).to eq('foo')
expect(find(".ci-variable-row:nth-child(1) .js-ci-variable-input-value", visible: false).value).to eq('bar')
2017-09-10 17:25:29 +05:30
end
end
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
context 'when user removes a variable of a pipeline schedule' do
2018-11-08 19:23:39 +05:30
before do
2017-09-10 17:25:29 +05:30
create(:ci_pipeline_schedule, project: project, owner: user).tap do |pipeline_schedule|
create(:ci_pipeline_schedule_variable, key: 'AAA', value: 'AAA123', pipeline_schedule: pipeline_schedule)
end
visit_pipelines_schedules
find(".content-list .pipeline-schedule-table-row:nth-child(1) .btn-group a[title='Edit']").click
2018-03-17 18:26:18 +05:30
find('.ci-variable-list .ci-variable-row-remove-button').click
2017-09-10 17:25:29 +05:30
click_button 'Save pipeline schedule'
end
2018-11-08 19:23:39 +05:30
it 'user does not see the removed variable in edit window' do
2017-09-10 17:25:29 +05:30
find(".content-list .pipeline-schedule-table-row:nth-child(1) .btn-group a[title='Edit']").click
2018-03-17 18:26:18 +05:30
page.within('.ci-variable-list') do
expect(find(".ci-variable-row:nth-child(1) .js-ci-variable-input-key").value).to eq('')
expect(find(".ci-variable-row:nth-child(1) .js-ci-variable-input-value", visible: false).value).to eq('')
2017-09-10 17:25:29 +05:30
end
end
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
context 'when active is true and next_run_at is NULL' do
2018-11-08 19:23:39 +05:30
before do
2017-09-10 17:25:29 +05:30
create(:ci_pipeline_schedule, project: project, owner: user).tap do |pipeline_schedule|
2019-09-04 21:01:54 +05:30
pipeline_schedule.update_attribute(:next_run_at, nil) # Consequently next_run_at will be nil
2017-09-10 17:25:29 +05:30
end
end
2018-11-08 19:23:39 +05:30
it 'user edit and recover the problematic pipeline schedule' do
2017-09-10 17:25:29 +05:30
visit_pipelines_schedules
find(".content-list .pipeline-schedule-table-row:nth-child(1) .btn-group a[title='Edit']").click
fill_in 'schedule_cron', with: '* 1 2 3 4'
click_button 'Save pipeline schedule'
page.within('.pipeline-schedule-table-row:nth-child(1)') do
expect(page).to have_css(".next-run-cell time")
end
end
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
context 'logged in as non-member' do
before do
gitlab_sign_in(user)
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
describe 'GET /projects/pipeline_schedules' do
before do
visit_pipelines_schedules
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
describe 'The view' do
it 'does not show create schedule button' do
expect(page).not_to have_link('New schedule')
end
end
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
end
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
context 'not logged in' do
describe 'GET /projects/pipeline_schedules' do
2017-08-17 22:00:37 +05:30
before do
2017-09-10 17:25:29 +05:30
visit_pipelines_schedules
2017-08-17 22:00:37 +05:30
end
2017-09-10 17:25:29 +05:30
describe 'The view' do
it 'does not show create schedule button' do
expect(page).not_to have_link('New schedule')
2017-08-17 22:00:37 +05:30
end
end
end
end
def visit_new_pipeline_schedule
2017-09-10 17:25:29 +05:30
visit new_project_pipeline_schedule_path(project, pipeline_schedule)
2017-08-17 22:00:37 +05:30
end
def edit_pipeline_schedule
2017-09-10 17:25:29 +05:30
visit edit_project_pipeline_schedule_path(project, pipeline_schedule)
2017-08-17 22:00:37 +05:30
end
def visit_pipelines_schedules
2017-09-10 17:25:29 +05:30
visit project_pipeline_schedules_path(project, scope: scope)
2017-08-17 22:00:37 +05:30
end
def select_timezone
find('.js-timezone-dropdown').click
click_link 'American Samoa'
end
def select_target_branch
2022-05-07 20:08:51 +05:30
find('[data-testid="schedule-target-ref"] .dropdown-toggle').click
click_button 'master'
2017-08-17 22:00:37 +05:30
end
def save_pipeline_schedule
click_button 'Save pipeline schedule'
end
def fill_in_schedule_form
fill_in 'schedule_description', with: 'my fancy description'
fill_in 'schedule_cron', with: '* 1 2 3 4'
select_timezone
select_target_branch
end
end