debian-mirror-gitlab/spec/controllers/projects/branches_controller_spec.rb

484 lines
14 KiB
Ruby
Raw Normal View History

2016-06-02 11:05:42 +05:30
require 'spec_helper'
describe Projects::BranchesController do
2017-08-17 22:00:37 +05:30
let(:project) { create(:project, :repository) }
let(:user) { create(:user) }
let(:developer) { create(:user) }
2016-06-02 11:05:42 +05:30
before do
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2018-03-17 18:26:18 +05:30
project.add_developer(user)
2016-06-02 11:05:42 +05:30
allow(project).to receive(:branches).and_return(['master', 'foo/bar/baz'])
allow(project).to receive(:tags).and_return(['v1.0.0', 'v2.0.0'])
controller.instance_variable_set(:@project, project)
end
2017-08-17 22:00:37 +05:30
describe "POST create with HTML format" do
2016-06-02 11:05:42 +05:30
render_views
context "on creation of a new branch" do
before do
2017-08-17 22:00:37 +05:30
sign_in(user)
2016-06-02 11:05:42 +05:30
post :create,
2017-08-17 22:00:37 +05:30
namespace_id: project.namespace,
project_id: project,
2016-06-02 11:05:42 +05:30
branch_name: branch,
ref: ref
end
context "valid branch name, valid source" do
let(:branch) { "merge_branch" }
let(:ref) { "master" }
it 'redirects' do
2017-09-10 17:25:29 +05:30
expect(subject)
.to redirect_to("/#{project.full_path}/tree/merge_branch")
2016-06-02 11:05:42 +05:30
end
end
context "invalid branch name, valid ref" do
let(:branch) { "<script>alert('merge');</script>" }
let(:ref) { "master" }
it 'redirects' do
2017-09-10 17:25:29 +05:30
expect(subject)
.to redirect_to("/#{project.full_path}/tree/alert('merge');")
2016-06-02 11:05:42 +05:30
end
end
context "valid branch name, invalid ref" do
let(:branch) { "merge_branch" }
let(:ref) { "<script>alert('ref');</script>" }
it { is_expected.to render_template('new') }
end
context "invalid branch name, invalid ref" do
let(:branch) { "<script>alert('merge');</script>" }
let(:ref) { "<script>alert('ref');</script>" }
it { is_expected.to render_template('new') }
end
context "valid branch name with encoded slashes" do
let(:branch) { "feature%2Ftest" }
let(:ref) { "<script>alert('ref');</script>" }
it { is_expected.to render_template('new') }
2018-03-17 18:26:18 +05:30
it { project.repository.branch_exists?('feature/test') }
2016-06-02 11:05:42 +05:30
end
end
describe "created from the new branch button on issues" do
let(:branch) { "1-feature-branch" }
2017-08-17 22:00:37 +05:30
let(:issue) { create(:issue, project: project) }
before do
sign_in(user)
end
2016-06-02 11:05:42 +05:30
it 'redirects' do
post :create,
2017-08-17 22:00:37 +05:30
namespace_id: project.namespace,
project_id: project,
2016-06-02 11:05:42 +05:30
branch_name: branch,
issue_iid: issue.iid
2017-09-10 17:25:29 +05:30
expect(subject)
.to redirect_to("/#{project.full_path}/tree/1-feature-branch")
2016-06-02 11:05:42 +05:30
end
it 'posts a system note' do
expect(SystemNoteService).to receive(:new_issue_branch).with(issue, project, user, "1-feature-branch")
post :create,
2017-08-17 22:00:37 +05:30
namespace_id: project.namespace,
project_id: project,
2016-06-02 11:05:42 +05:30
branch_name: branch,
issue_iid: issue.iid
end
2017-01-15 13:20:01 +05:30
2017-08-17 22:00:37 +05:30
context 'repository-less project' do
2017-09-10 17:25:29 +05:30
let(:project) { create :project }
2017-08-17 22:00:37 +05:30
it 'redirects to newly created branch' do
result = { status: :success, branch: double(name: branch) }
expect_any_instance_of(CreateBranchService).to receive(:execute).and_return(result)
expect(SystemNoteService).to receive(:new_issue_branch).and_return(true)
post :create,
namespace_id: project.namespace.to_param,
project_id: project.to_param,
branch_name: branch,
issue_iid: issue.iid
2017-09-10 17:25:29 +05:30
expect(response).to redirect_to project_tree_path(project, branch)
2017-08-17 22:00:37 +05:30
end
2018-03-17 18:26:18 +05:30
shared_examples 'same behavior between KubernetesService and Platform::Kubernetes' do
it 'redirects to autodeploy setup page' do
result = { status: :success, branch: double(name: branch) }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect_any_instance_of(CreateBranchService).to receive(:execute).and_return(result)
expect(SystemNoteService).to receive(:new_issue_branch).and_return(true)
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
post :create,
namespace_id: project.namespace.to_param,
project_id: project.to_param,
branch_name: branch,
issue_iid: issue.iid
expect(response.location).to include(project_new_blob_path(project, branch))
expect(response).to have_gitlab_http_status(302)
end
end
context 'when user configured kubernetes from Integration > Kubernetes' do
before do
project.services << build(:kubernetes_service)
end
it_behaves_like 'same behavior between KubernetesService and Platform::Kubernetes'
end
context 'when user configured kubernetes from CI/CD > Clusters' do
before do
create(:cluster, :provided_by_gcp, projects: [project])
end
it_behaves_like 'same behavior between KubernetesService and Platform::Kubernetes'
end
2018-11-08 19:23:39 +05:30
it 'redirects to autodeploy setup page' do
result = { status: :success, branch: double(name: branch) }
create(:cluster, :provided_by_gcp, projects: [project])
expect_any_instance_of(CreateBranchService).to receive(:execute).and_return(result)
expect(SystemNoteService).to receive(:new_issue_branch).and_return(true)
post :create,
namespace_id: project.namespace.to_param,
project_id: project.to_param,
branch_name: branch,
issue_iid: issue.iid
expect(response.location).to include(project_new_blob_path(project, branch))
expect(response).to have_gitlab_http_status(302)
end
2018-03-17 18:26:18 +05:30
end
context 'when create branch service fails' do
let(:branch) { "./invalid-branch-name" }
it "doesn't post a system note" do
expect(SystemNoteService).not_to receive(:new_issue_branch)
2017-08-17 22:00:37 +05:30
post :create,
2018-03-17 18:26:18 +05:30
namespace_id: project.namespace,
project_id: project,
2017-08-17 22:00:37 +05:30
branch_name: branch,
issue_iid: issue.iid
end
end
2017-01-15 13:20:01 +05:30
context 'without issue feature access' do
before do
project.update!(visibility_level: Gitlab::VisibilityLevel::PUBLIC)
project.project_feature.update!(issues_access_level: ProjectFeature::PRIVATE)
project.team.truncate
end
it "doesn't post a system note" do
expect(SystemNoteService).not_to receive(:new_issue_branch)
post :create,
2017-08-17 22:00:37 +05:30
namespace_id: project.namespace,
project_id: project,
2017-01-15 13:20:01 +05:30
branch_name: branch,
issue_iid: issue.iid
end
end
2016-06-02 11:05:42 +05:30
end
end
2017-08-17 22:00:37 +05:30
describe 'POST create with JSON format' do
before do
sign_in(user)
end
context 'with valid params' do
it 'returns a successful 200 response' do
create_branch name: 'my-branch', ref: 'master'
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-08-17 22:00:37 +05:30
end
it 'returns the created branch' do
create_branch name: 'my-branch', ref: 'master'
expect(response).to match_response_schema('branch')
end
end
context 'with invalid params' do
it 'returns an unprocessable entity 422 response' do
create_branch name: "<script>alert('merge');</script>", ref: "<script>alert('ref');</script>"
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(422)
2017-08-17 22:00:37 +05:30
end
end
def create_branch(name:, ref:)
post :create, namespace_id: project.namespace.to_param,
project_id: project.to_param,
branch_name: name,
ref: ref,
format: :json
end
end
2016-06-02 11:05:42 +05:30
describe "POST destroy with HTML format" do
render_views
2017-08-17 22:00:37 +05:30
before do
sign_in(user)
end
2016-06-02 11:05:42 +05:30
it 'returns 303' do
post :destroy,
format: :html,
id: 'foo/bar/baz',
2017-08-17 22:00:37 +05:30
namespace_id: project.namespace,
project_id: project
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(303)
2016-06-02 11:05:42 +05:30
end
end
describe "POST destroy" do
render_views
before do
2017-08-17 22:00:37 +05:30
sign_in(user)
2016-06-02 11:05:42 +05:30
post :destroy,
2017-08-17 22:00:37 +05:30
format: format,
id: branch,
namespace_id: project.namespace,
project_id: project
end
context 'as JS' do
let(:branch) { "feature" }
let(:format) { :js }
context "valid branch name, valid source" do
let(:branch) { "feature" }
2018-03-17 18:26:18 +05:30
it { expect(response).to have_gitlab_http_status(200) }
2017-08-17 22:00:37 +05:30
it { expect(response.body).to be_blank }
end
context "valid branch name with unencoded slashes" do
let(:branch) { "improve/awesome" }
2018-03-17 18:26:18 +05:30
it { expect(response).to have_gitlab_http_status(200) }
2017-08-17 22:00:37 +05:30
it { expect(response.body).to be_blank }
end
context "valid branch name with encoded slashes" do
let(:branch) { "improve%2Fawesome" }
2018-03-17 18:26:18 +05:30
it { expect(response).to have_gitlab_http_status(200) }
2017-08-17 22:00:37 +05:30
it { expect(response.body).to be_blank }
end
context "invalid branch name, valid ref" do
let(:branch) { "no-branch" }
2018-03-17 18:26:18 +05:30
it { expect(response).to have_gitlab_http_status(404) }
2017-08-17 22:00:37 +05:30
it { expect(response.body).to be_blank }
end
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
context 'as JSON' do
2016-06-02 11:05:42 +05:30
let(:branch) { "feature" }
2017-08-17 22:00:37 +05:30
let(:format) { :json }
context 'valid branch name, valid source' do
let(:branch) { "feature" }
it 'returns JSON response with message' do
expect(json_response).to eql("message" => 'Branch was removed')
end
2018-03-17 18:26:18 +05:30
it { expect(response).to have_gitlab_http_status(200) }
2017-08-17 22:00:37 +05:30
end
context 'valid branch name with unencoded slashes' do
let(:branch) { "improve/awesome" }
it 'returns JSON response with message' do
expect(json_response).to eql('message' => 'Branch was removed')
end
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
it { expect(response).to have_gitlab_http_status(200) }
2017-08-17 22:00:37 +05:30
end
context "valid branch name with encoded slashes" do
let(:branch) { 'improve%2Fawesome' }
it 'returns JSON response with message' do
expect(json_response).to eql('message' => 'Branch was removed')
end
2018-03-17 18:26:18 +05:30
it { expect(response).to have_gitlab_http_status(200) }
2017-08-17 22:00:37 +05:30
end
context 'invalid branch name, valid ref' do
let(:branch) { 'no-branch' }
it 'returns JSON response with message' do
expect(json_response).to eql('message' => 'No such branch')
end
2018-03-17 18:26:18 +05:30
it { expect(response).to have_gitlab_http_status(404) }
2017-08-17 22:00:37 +05:30
end
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
context 'as HTML' do
let(:branch) { "feature" }
let(:format) { :html }
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
it 'redirects to branches path' do
expect(response)
2017-09-10 17:25:29 +05:30
.to redirect_to(project_branches_path(project))
2017-08-17 22:00:37 +05:30
end
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
describe "DELETE destroy_all_merged" do
def destroy_all_merged
delete :destroy_all_merged,
namespace_id: project.namespace,
project_id: project
end
context 'when user is allowed to push' do
before do
sign_in(user)
end
it 'redirects to branches' do
destroy_all_merged
2017-09-10 17:25:29 +05:30
expect(response).to redirect_to project_branches_path(project)
2017-08-17 22:00:37 +05:30
end
it 'starts worker to delete merged branches' do
expect_any_instance_of(DeleteMergedBranchesService).to receive(:async_execute)
destroy_all_merged
end
end
context 'when user is not allowed to push' do
before do
sign_in(developer)
end
it 'responds with status 404' do
destroy_all_merged
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
end
end
end
describe "GET index" do
render_views
before do
sign_in(user)
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
context 'when rendering a JSON format' do
it 'filters branches by name' do
get :index,
namespace_id: project.namespace,
project_id: project,
format: :json,
search: 'master'
parsed_response = JSON.parse(response.body)
expect(parsed_response.length).to eq 1
expect(parsed_response.first).to eq 'master'
end
end
2018-03-17 18:26:18 +05:30
2018-05-09 12:01:36 +05:30
# We need :request_store because Gitaly only counts the queries whenever
# `RequestStore.active?` in GitalyClient.enforce_gitaly_request_limits
# And the main goal of this test is making sure TooManyInvocationsError
# was not raised whenever the cache is enabled yet cold.
context 'when cache is enabled yet cold', :request_store do
it 'return with a status 200' do
get :index,
namespace_id: project.namespace,
project_id: project,
state: 'all',
format: :html
expect(response).to have_gitlab_http_status(200)
end
end
2018-03-17 18:26:18 +05:30
context 'when branch contains an invalid UTF-8 sequence' do
before do
project.repository.create_branch("wrong-\xE5-utf8-sequence")
end
it 'return with a status 200' do
get :index,
namespace_id: project.namespace,
project_id: project,
2018-03-27 19:54:05 +05:30
state: 'all',
2018-03-17 18:26:18 +05:30
format: :html
expect(response).to have_gitlab_http_status(200)
end
end
2018-03-27 19:54:05 +05:30
2018-05-09 12:01:36 +05:30
context 'when deprecated sort/search/page parameters are specified' do
2018-03-27 19:54:05 +05:30
it 'returns with a status 301 when sort specified' do
get :index,
namespace_id: project.namespace,
project_id: project,
sort: 'updated_asc',
format: :html
expect(response).to redirect_to project_branches_filtered_path(project, state: 'all')
end
it 'returns with a status 301 when search specified' do
get :index,
namespace_id: project.namespace,
project_id: project,
search: 'feature',
format: :html
expect(response).to redirect_to project_branches_filtered_path(project, state: 'all')
end
it 'returns with a status 301 when page specified' do
get :index,
namespace_id: project.namespace,
project_id: project,
page: 2,
format: :html
expect(response).to redirect_to project_branches_filtered_path(project, state: 'all')
end
end
2016-06-02 11:05:42 +05:30
end
end