gitlab-org--gitlab-foss/spec/features/environments_spec.rb

275 lines
8.9 KiB
Ruby
Raw Normal View History

2016-06-14 12:47:00 +00:00
require 'spec_helper'
feature 'Environments', feature: true do
given(:project) { create(:empty_project) }
given(:user) { create(:user) }
given(:role) { :developer }
2016-06-14 12:47:00 +00:00
background do
2016-06-14 12:47:00 +00:00
login_as(user)
project.team << [user, role]
end
describe 'when showing environments' do
given!(:environment) { }
given!(:deployment) { }
given!(:manual) { }
2016-06-14 12:47:00 +00:00
before do
visit namespace_project_environments_path(project.namespace, project)
end
2016-10-17 21:40:44 +00:00
context 'shows two tabs' do
2016-10-18 14:46:19 +00:00
scenario 'shows "Available" and "Stopped" tab with links' do
expect(page).to have_link('Available')
expect(page).to have_link('Stopped')
end
end
2016-06-14 12:47:00 +00:00
context 'without environments' do
scenario 'does show no environments' do
expect(page).to have_content('You don\'t have any environments right now.')
2016-06-14 12:47:00 +00:00
end
2016-10-17 21:40:44 +00:00
scenario 'does show 0 as counter for environments in both tabs' do
2016-10-17 19:06:10 +00:00
expect(page.find('.js-available-environments-count').text).to eq('0')
expect(page.find('.js-stopped-environments-count').text).to eq('0')
end
2016-06-14 12:47:00 +00:00
end
context 'with environments' do
given(:environment) { create(:environment, project: project) }
2016-06-14 12:47:00 +00:00
scenario 'does show environment name' do
2016-06-14 12:47:00 +00:00
expect(page).to have_link(environment.name)
end
2016-10-17 21:40:44 +00:00
2016-10-18 14:46:19 +00:00
scenario 'does show number of available and stopped environments' do
2016-10-17 19:06:10 +00:00
expect(page.find('.js-available-environments-count').text).to eq('1')
2016-10-11 10:03:11 +00:00
expect(page.find('.js-stopped-environments-count').text).to eq('0')
end
2016-06-14 12:47:00 +00:00
context 'without deployments' do
scenario 'does show no deployments' do
2016-06-21 10:52:51 +00:00
expect(page).to have_content('No deployments yet')
2016-06-14 12:47:00 +00:00
end
end
context 'with deployments' do
given(:deployment) { create(:deployment, environment: environment) }
2016-06-14 12:47:00 +00:00
scenario 'does show deployment SHA' do
2016-06-14 12:47:00 +00:00
expect(page).to have_link(deployment.short_sha)
end
2016-10-17 21:40:44 +00:00
scenario 'does show deployment internal id' do
expect(page).to have_content(deployment.iid)
end
context 'with build and manual actions' do
given(:pipeline) { create(:ci_pipeline, project: project) }
given(:build) { create(:ci_build, pipeline: pipeline) }
given(:deployment) { create(:deployment, environment: environment, deployable: build) }
given(:manual) { create(:ci_build, :manual, pipeline: pipeline, name: 'deploy to production') }
scenario 'does show a play button' do
2016-07-18 16:42:57 +00:00
expect(page).to have_link(manual.name.humanize)
end
scenario 'does allow to play manual action' do
expect(manual).to be_skipped
2016-07-18 16:42:57 +00:00
expect{ click_link(manual.name.humanize) }.not_to change { Ci::Pipeline.count }
expect(page).to have_content(manual.name)
expect(manual.reload).to be_pending
end
2016-10-17 21:40:44 +00:00
scenario 'does show build name and id' do
expect(page).to have_link("#{build.name} (##{build.id})")
end
2016-10-17 19:06:10 +00:00
scenario 'does not show stop button' do
2016-10-17 21:10:43 +00:00
expect(page).not_to have_selector('.stop-env-link')
2016-10-17 19:06:10 +00:00
end
scenario 'does not show external link button' do
expect(page).not_to have_css('external-url')
end
2016-10-17 21:40:44 +00:00
context 'with external_url' do
given(:environment) { create(:environment, project: project, external_url: 'https://git.gitlab.com') }
given(:build) { create(:ci_build, pipeline: pipeline) }
given(:deployment) { create(:deployment, environment: environment, deployable: build) }
2016-10-17 21:40:44 +00:00
scenario 'does show an external link button' do
2016-10-07 10:48:43 +00:00
expect(page).to have_link(nil, href: environment.external_url)
end
end
2016-10-17 19:06:10 +00:00
context 'with stop action' do
given(:manual) { create(:ci_build, :manual, pipeline: pipeline, name: 'close_app') }
given(:deployment) { create(:deployment, environment: environment, deployable: build, on_stop: 'close_app') }
scenario 'does show stop button' do
2016-10-17 21:10:43 +00:00
expect(page).to have_selector('.stop-env-link')
2016-10-17 19:06:10 +00:00
end
2016-10-17 20:01:56 +00:00
scenario 'starts build when stop button clicked' do
2016-10-17 21:10:43 +00:00
first('.stop-env-link').click
2016-10-17 19:06:10 +00:00
expect(page).to have_content('close_app')
end
context 'for reporter' do
let(:role) { :reporter }
scenario 'does not show stop button' do
2016-10-17 21:10:43 +00:00
expect(page).not_to have_selector('.stop-env-link')
2016-10-17 19:06:10 +00:00
end
end
2016-10-11 10:03:11 +00:00
end
end
2016-06-14 12:47:00 +00:00
end
end
scenario 'does have a New environment button' do
2016-06-14 12:47:00 +00:00
expect(page).to have_link('New environment')
end
end
describe 'when showing the environment' do
given(:environment) { create(:environment, project: project) }
given!(:deployment) { }
given!(:manual) { }
2016-06-14 12:47:00 +00:00
before do
visit namespace_project_environment_path(project.namespace, project, environment)
end
2016-06-14 12:47:00 +00:00
context 'without deployments' do
scenario 'does show no deployments' do
expect(page).to have_content('You don\'t have any deployments right now.')
2016-06-14 12:47:00 +00:00
end
end
context 'with deployments' do
given(:deployment) { create(:deployment, environment: environment) }
2016-06-14 12:47:00 +00:00
scenario 'does show deployment SHA' do
2016-06-14 12:47:00 +00:00
expect(page).to have_link(deployment.short_sha)
end
scenario 'does not show a re-deploy button for deployment without build' do
expect(page).not_to have_link('Re-deploy')
2016-06-14 12:47:00 +00:00
end
context 'with build' do
given(:pipeline) { create(:ci_pipeline, project: project) }
given(:build) { create(:ci_build, pipeline: pipeline) }
given(:deployment) { create(:deployment, environment: environment, deployable: build) }
2016-06-14 12:47:00 +00:00
scenario 'does show build name' do
2016-06-14 12:47:00 +00:00
expect(page).to have_link("#{build.name} (##{build.id})")
end
scenario 'does show re-deploy button' do
expect(page).to have_link('Re-deploy')
2016-06-14 12:47:00 +00:00
end
2016-10-17 19:06:10 +00:00
scenario 'does not show stop button' do
expect(page).not_to have_link('Stop')
end
context 'with manual action' do
given(:manual) { create(:ci_build, :manual, pipeline: pipeline, name: 'deploy to production') }
scenario 'does show a play button' do
2016-07-18 16:42:57 +00:00
expect(page).to have_link(manual.name.humanize)
end
scenario 'does allow to play manual action' do
expect(manual).to be_skipped
2016-07-18 16:42:57 +00:00
expect{ click_link(manual.name.humanize) }.not_to change { Ci::Pipeline.count }
expect(page).to have_content(manual.name)
expect(manual.reload).to be_pending
end
2016-10-17 21:40:44 +00:00
context 'with external_url' do
given(:environment) { create(:environment, project: project, external_url: 'https://git.gitlab.com') }
given(:build) { create(:ci_build, pipeline: pipeline) }
given(:deployment) { create(:deployment, environment: environment, deployable: build) }
2016-10-17 19:06:10 +00:00
scenario 'does show an external link button' do
2016-10-07 10:48:43 +00:00
expect(page).to have_link(nil, href: environment.external_url)
end
end
2016-10-17 19:06:10 +00:00
context 'with stop action' do
given(:manual) { create(:ci_build, :manual, pipeline: pipeline, name: 'close_app') }
given(:deployment) { create(:deployment, environment: environment, deployable: build, on_stop: 'close_app') }
scenario 'does show stop button' do
expect(page).to have_link('Stop')
end
2016-10-17 21:40:44 +00:00
scenario 'does allow to stop environment' do
2016-10-17 19:06:10 +00:00
click_link('Stop')
expect(page).to have_content('close_app')
end
context 'for reporter' do
let(:role) { :reporter }
scenario 'does not show stop button' do
expect(page).not_to have_link('Stop')
end
end
2016-10-11 10:03:11 +00:00
end
end
2016-06-14 12:47:00 +00:00
end
end
end
describe 'when creating a new environment' do
before do
visit namespace_project_environments_path(project.namespace, project)
end
2016-06-14 12:47:00 +00:00
context 'when logged as developer' do
before do
click_link 'New environment'
end
2016-06-14 12:47:00 +00:00
context 'for valid name' do
before do
2016-06-15 10:07:06 +00:00
fill_in('Name', with: 'production')
click_on 'Save'
2016-06-14 12:47:00 +00:00
end
scenario 'does create a new pipeline' do
2016-06-21 10:52:51 +00:00
expect(page).to have_content('Production')
2016-06-14 12:47:00 +00:00
end
end
context 'for invalid name' do
before do
fill_in('Name', with: 'name,with,commas')
click_on 'Save'
2016-06-14 12:47:00 +00:00
end
scenario 'does show errors' do
expect(page).to have_content('Name can contain only letters')
end
2016-06-14 12:47:00 +00:00
end
end
context 'when logged as reporter' do
given(:role) { :reporter }
2016-06-14 12:47:00 +00:00
scenario 'does not have a New environment link' do
2016-06-14 12:47:00 +00:00
expect(page).not_to have_link('New environment')
end
end
end
end