debian-mirror-gitlab/features/steps/project/commits/branches.rb

86 lines
2.3 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class Spinach::Features::ProjectCommitsBranches < Spinach::FeatureSteps
include SharedAuthentication
include SharedProject
include SharedPaths
step 'I click link "All"' do
click_link "All"
end
step 'I should see "Shop" all branches list' do
2015-09-11 14:41:01 +05:30
expect(page).to have_content "Branches"
expect(page).to have_content "master"
2015-04-26 12:48:37 +05:30
end
step 'I click link "Protected"' do
click_link "Protected"
end
step 'I should see "Shop" protected branches list' do
2015-09-11 14:41:01 +05:30
page.within ".protected-branches-list" do
expect(page).to have_content "stable"
expect(page).not_to have_content "master"
2015-04-26 12:48:37 +05:30
end
end
step 'project "Shop" has protected branches' do
project = Project.find_by(name: "Shop")
project.protected_branches.create(name: "stable")
end
step 'I click new branch link' do
click_link "New branch"
end
step 'I submit new branch form' do
fill_in 'branch_name', with: 'deploy_keys'
fill_in 'ref', with: 'master'
click_button 'Create branch'
end
step 'I submit new branch form with invalid name' do
fill_in 'branch_name', with: '1.0 stable'
fill_in 'ref', with: 'master'
click_button 'Create branch'
end
step 'I submit new branch form with invalid reference' do
fill_in 'branch_name', with: 'foo'
fill_in 'ref', with: 'foo'
click_button 'Create branch'
end
step 'I submit new branch form with branch that already exists' do
fill_in 'branch_name', with: 'master'
fill_in 'ref', with: 'master'
click_button 'Create branch'
end
step 'I should see new branch created' do
2015-09-11 14:41:01 +05:30
expect(page).to have_content 'deploy_keys'
2015-04-26 12:48:37 +05:30
end
step 'I should see new an error that branch is invalid' do
2015-09-11 14:41:01 +05:30
expect(page).to have_content 'Branch name invalid'
2015-04-26 12:48:37 +05:30
end
step 'I should see new an error that ref is invalid' do
2015-09-11 14:41:01 +05:30
expect(page).to have_content 'Invalid reference name'
2015-04-26 12:48:37 +05:30
end
step 'I should see new an error that branch already exists' do
2015-09-11 14:41:01 +05:30
expect(page).to have_content 'Branch already exists'
2015-04-26 12:48:37 +05:30
end
step "I click branch 'improve/awesome' delete link" do
2015-09-11 14:41:01 +05:30
page.within '.js-branch-improve\/awesome' do
2015-04-26 12:48:37 +05:30
find('.btn-remove').click
sleep 0.05
end
end
step "I should not see branch 'improve/awesome'" do
2015-09-11 14:41:01 +05:30
expect(page.all(visible: true)).not_to have_content 'improve/awesome'
2015-04-26 12:48:37 +05:30
end
end