Commit 289a6100 authored by Michael Kozono's avatar Michael Kozono

Dry up tests

parent b8a031e5
...@@ -27,69 +27,61 @@ module QA ...@@ -27,69 +27,61 @@ module QA
end end
scenario 'user is able to protect a branch' do scenario 'user is able to protect a branch' do
protected_branch = Factory::Resource::Branch.fabricate! do |resource| protected_branch = fabricate_branch(allow_to_push: true)
resource.branch_name = branch_name
resource.project = project
resource.allow_to_push = true
resource.protected = true
end
expect(protected_branch.name).to have_content(branch_name) expect(protected_branch.name).to have_content(branch_name)
expect(protected_branch.push_allowance).to have_content('Developers + Maintainers') expect(protected_branch.push_allowance).to have_content('Developers + Maintainers')
end end
scenario 'users without authorization cannot push to protected branch' do context 'push to protected branch' do
Factory::Resource::Branch.fabricate! do |resource| scenario 'unauthorized users are blocked' do
resource.branch_name = branch_name fabricate_branch(allow_to_push: false)
resource.project = project
resource.allow_to_push = false
resource.protected = true
end
project.visit! project.visit!
Git::Repository.perform do |repository| Git::Repository.perform do |repository|
repository.uri = location.uri push_output = push_to_repository(repository)
repository.use_default_credentials
repository.act do expect(push_output)
clone .to match(/remote\: GitLab\: You are not allowed to push code to protected branches on this project/)
configure_identity('GitLab QA', 'root@gitlab.com') expect(push_output)
checkout('protected-branch') .to match(/\[remote rejected\] #{branch_name} -> #{branch_name} \(pre-receive hook declined\)/)
commit_file('README.md', 'readme content', 'Add a readme')
push_changes('protected-branch')
end end
end
scenario 'authorized users are allowed' do
fabricate_branch(allow_to_push: true)
project.visit!
expect(repository.push_output) Git::Repository.perform do |repository|
.to match(/remote\: GitLab\: You are not allowed to push code to protected branches on this project/) push_output = push_to_repository(repository)
expect(repository.push_output)
.to match(/\[remote rejected\] #{branch_name} -> #{branch_name} \(pre-receive hook declined\)/) expect(push_output).to match(/remote: To create a merge request for protected-branch, visit/)
end
end end
end end
scenario 'users with authorization can push to protected branch' do def fabricate_branch(allow_to_push:)
Factory::Resource::Branch.fabricate! do |resource| Factory::Resource::Branch.fabricate! do |resource|
resource.branch_name = branch_name resource.branch_name = branch_name
resource.project = project resource.project = project
resource.allow_to_push = true resource.allow_to_push = allow_to_push
resource.protected = true resource.protected = true
end end
end
project.visit! def push_to_repository(repository)
repository.uri = location.uri
Git::Repository.perform do |repository| repository.use_default_credentials
repository.uri = location.uri
repository.use_default_credentials
repository.act do
clone
configure_identity('GitLab QA', 'root@gitlab.com')
checkout('protected-branch')
commit_file('README.md', 'readme content', 'Add a readme')
push_changes('protected-branch')
end
expect(repository.push_output).to match(/remote: To create a merge request for protected-branch, visit/) repository.act do
clone
configure_identity('GitLab QA', 'root@gitlab.com')
checkout('protected-branch')
commit_file('README.md', 'readme content', 'Add a readme')
push_changes('protected-branch')
push_output
end end
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment