2017-08-17 22:00:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
feature 'Environments page', :js do
|
|
|
|
given(:project) { create(:project) }
|
2017-08-17 22:00:37 +05:30
|
|
|
given(:user) { create(:user) }
|
|
|
|
given(:role) { :developer }
|
|
|
|
|
|
|
|
background do
|
|
|
|
project.team << [user, role]
|
2017-09-10 17:25:29 +05:30
|
|
|
sign_in(user)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe 'page tabs' do
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'shows "Available" and "Stopped" tab with links' do
|
|
|
|
visit_environments(project)
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_link('Available')
|
|
|
|
expect(page).to have_link('Stopped')
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with one available environment' do
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
|
|
|
create(:environment, project: project, state: :available)
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
describe 'in available tab page' do
|
|
|
|
it 'should show one environment' do
|
2017-09-10 17:25:29 +05:30
|
|
|
visit_environments(project, scope: 'available')
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_css('.environments-container')
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(page.all('.environment-name').length).to eq(1)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'in stopped tab page' do
|
|
|
|
it 'should show no environments' do
|
2017-09-10 17:25:29 +05:30
|
|
|
visit_environments(project, scope: 'stopped')
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_css('.environments-container')
|
|
|
|
expect(page).to have_content('You don\'t have any environments right now')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'with one stopped environment' do
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
|
|
|
create(:environment, project: project, state: :stopped)
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
describe 'in available tab page' do
|
|
|
|
it 'should show no environments' do
|
2017-09-10 17:25:29 +05:30
|
|
|
visit_environments(project, scope: 'available')
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_css('.environments-container')
|
|
|
|
expect(page).to have_content('You don\'t have any environments right now')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'in stopped tab page' do
|
|
|
|
it 'should show one environment' do
|
2017-09-10 17:25:29 +05:30
|
|
|
visit_environments(project, scope: 'stopped')
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_css('.environments-container')
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(page.all('.environment-name').length).to eq(1)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'without environments' do
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
|
|
|
visit_environments(project)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'does not show environments and counters are set to zero' do
|
|
|
|
expect(page).to have_content('You don\'t have any environments right now.')
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page.find('.js-available-environments-count').text).to eq('0')
|
|
|
|
expect(page.find('.js-stopped-environments-count').text).to eq('0')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
describe 'environments table' do
|
|
|
|
given!(:environment) do
|
|
|
|
create(:environment, project: project, state: :available)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'when there are no deployments' do
|
|
|
|
before do
|
|
|
|
visit_environments(project)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'shows environments names and counters' do
|
|
|
|
expect(page).to have_link(environment.name)
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(page.find('.js-available-environments-count').text).to eq('1')
|
|
|
|
expect(page.find('.js-stopped-environments-count').text).to eq('0')
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'does not show deployments' do
|
|
|
|
expect(page).to have_content('No deployments yet')
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'does not show stip button when environment is not stoppable' do
|
|
|
|
expect(page).not_to have_selector('.stop-env-link')
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'when there are deployments' do
|
|
|
|
given(:project) { create(:project, :repository) }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
given!(:deployment) do
|
2017-08-17 22:00:37 +05:30
|
|
|
create(:deployment, environment: environment,
|
|
|
|
sha: project.commit.id)
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'shows deployment SHA and internal ID' do
|
|
|
|
visit_environments(project)
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(page).to have_link(deployment.short_sha)
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_content(deployment.iid)
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'when builds and manual actions are present' do
|
|
|
|
given!(:pipeline) { create(:ci_pipeline, project: project) }
|
|
|
|
given!(:build) { create(:ci_build, pipeline: pipeline) }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
given!(:action) do
|
2017-08-17 22:00:37 +05:30
|
|
|
create(:ci_build, :manual, pipeline: pipeline, name: 'deploy to production')
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
given!(:deployment) do
|
2017-08-17 22:00:37 +05:30
|
|
|
create(:deployment, environment: environment,
|
|
|
|
deployable: build,
|
|
|
|
sha: project.commit.id)
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
|
|
|
visit_environments(project)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows a play button' do
|
2017-08-17 22:00:37 +05:30
|
|
|
find('.js-dropdown-play-icon-container').click
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_content(action.name.humanize)
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'allows to play a manual action', js: true do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(action).to be_manual
|
|
|
|
|
|
|
|
find('.js-dropdown-play-icon-container').click
|
|
|
|
expect(page).to have_content(action.name.humanize)
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
expect { find('.js-manual-action-link').trigger('click') }
|
2017-08-17 22:00:37 +05:30
|
|
|
.not_to change { Ci::Pipeline.count }
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'shows build name and id' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_link("#{build.name} ##{build.id}")
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'shows a stop button' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).not_to have_selector('.stop-env-link')
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'does not show external link button' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).not_to have_css('external-url')
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'does not show terminal button' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).not_to have_terminal_button
|
|
|
|
end
|
|
|
|
|
|
|
|
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) }
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'shows an external link button' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_link(nil, href: environment.external_url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with stop action' do
|
|
|
|
given(:action) do
|
|
|
|
create(:ci_build, :manual, pipeline: pipeline, name: 'close_app')
|
|
|
|
end
|
|
|
|
|
|
|
|
given(:deployment) do
|
|
|
|
create(:deployment, environment: environment,
|
|
|
|
deployable: build,
|
|
|
|
on_stop: 'close_app')
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'shows a stop button' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_selector('.stop-env-link')
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'when user is a reporter' do
|
2017-08-17 22:00:37 +05:30
|
|
|
let(:role) { :reporter }
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'does not show stop button' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).not_to have_selector('.stop-env-link')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'when kubernetes terminal is available' do
|
2017-08-17 22:00:37 +05:30
|
|
|
let(:project) { create(:kubernetes_project, :test_repo) }
|
|
|
|
|
|
|
|
context 'for project master' do
|
|
|
|
let(:role) { :master }
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'shows the terminal button' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_terminal_button
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'when user is a developer' do
|
2017-08-17 22:00:37 +05:30
|
|
|
let(:role) { :developer }
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'does not show terminal button' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).not_to have_terminal_button
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'does have a new environment button' do
|
|
|
|
visit_environments(project)
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).to have_link('New environment')
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
describe 'creating a new environment' do
|
2017-08-17 22:00:37 +05:30
|
|
|
before do
|
|
|
|
visit_environments(project)
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'user is a developer' do
|
|
|
|
given(:role) { :developer }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
scenario 'developer creates a new environment with a valid name' do
|
|
|
|
within(".top-area") { click_link 'New environment' }
|
|
|
|
fill_in('Name', with: 'production')
|
|
|
|
click_on 'Save'
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(page).to have_content('production')
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
scenario 'developer creates a new environmetn with invalid name' do
|
|
|
|
within(".top-area") { click_link 'New environment' }
|
|
|
|
fill_in('Name', with: 'name,with,commas')
|
|
|
|
click_on 'Save'
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(page).to have_content('Name can contain only letters')
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
context 'user is a reporter' do
|
2017-08-17 22:00:37 +05:30
|
|
|
given(:role) { :reporter }
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
scenario 'reporters tries to create a new environment' do
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).not_to have_link('New environment')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
describe 'environments folders' do
|
|
|
|
before do
|
|
|
|
create(:environment, project: project,
|
|
|
|
name: 'staging/review-1',
|
|
|
|
state: :available)
|
|
|
|
create(:environment, project: project,
|
|
|
|
name: 'staging/review-2',
|
|
|
|
state: :available)
|
|
|
|
end
|
|
|
|
|
|
|
|
scenario 'users unfurls an environment folder' do
|
|
|
|
visit_environments(project)
|
|
|
|
|
|
|
|
expect(page).not_to have_content 'review-1'
|
|
|
|
expect(page).not_to have_content 'review-2'
|
|
|
|
expect(page).to have_content 'staging 2'
|
|
|
|
|
|
|
|
within('.folder-row') do
|
|
|
|
find('.folder-name', text: 'staging').click
|
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_content 'review-1'
|
|
|
|
expect(page).to have_content 'review-2'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def have_terminal_button
|
2017-09-10 17:25:29 +05:30
|
|
|
have_link(nil, href: terminal_project_environment_path(project, environment))
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def visit_environments(project, **opts)
|
|
|
|
visit project_environments_path(project, **opts)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|