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

127 lines
3.3 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'spec_helper'
describe Projects::TreeController do
2017-08-17 22:00:37 +05:30
let(:project) { create(:project, :repository) }
2014-09-02 18:07:02 +05:30
let(:user) { create(:user) }
before do
sign_in(user)
project.team << [user, :master]
controller.instance_variable_set(:@project, project)
end
describe "GET show" do
# Make sure any errors accessing the tree in our views bubble up to this spec
render_views
2015-04-26 12:48:37 +05:30
before do
2015-09-11 14:41:01 +05:30
get(:show,
namespace_id: project.namespace.to_param,
2017-08-17 22:00:37 +05:30
project_id: project,
2015-09-11 14:41:01 +05:30
id: id)
2015-04-26 12:48:37 +05:30
end
2014-09-02 18:07:02 +05:30
context "valid branch, no path" do
let(:id) { 'master' }
2015-04-26 12:48:37 +05:30
it { is_expected.to respond_with(:success) }
2014-09-02 18:07:02 +05:30
end
context "valid branch, valid path" do
let(:id) { 'master/encoding/' }
2015-04-26 12:48:37 +05:30
it { is_expected.to respond_with(:success) }
2014-09-02 18:07:02 +05:30
end
context "valid branch, invalid path" do
let(:id) { 'master/invalid-path/' }
2015-04-26 12:48:37 +05:30
it { is_expected.to respond_with(:not_found) }
2014-09-02 18:07:02 +05:30
end
context "invalid branch, valid path" do
let(:id) { 'invalid-branch/encoding/' }
2015-04-26 12:48:37 +05:30
it { is_expected.to respond_with(:not_found) }
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
context "valid empty branch, invalid path" do
let(:id) { 'empty-branch/invalid-path/' }
it { is_expected.to respond_with(:not_found) }
end
context "valid empty branch" do
let(:id) { 'empty-branch' }
it { is_expected.to respond_with(:success) }
end
context "invalid SHA commit ID" do
let(:id) { 'ff39438/.gitignore' }
it { is_expected.to respond_with(:not_found) }
end
context "valid SHA commit ID" do
let(:id) { '6d39438' }
it { is_expected.to respond_with(:success) }
end
context "valid SHA commit ID with path" do
let(:id) { '6d39438/.gitignore' }
2016-08-24 12:49:21 +05:30
it { expect(response).to have_http_status(302) }
2015-09-11 14:41:01 +05:30
end
2014-09-02 18:07:02 +05:30
end
describe 'GET show with blob path' do
render_views
before do
2015-09-11 14:41:01 +05:30
get(:show,
namespace_id: project.namespace.to_param,
2017-08-17 22:00:37 +05:30
project_id: project,
2015-09-11 14:41:01 +05:30
id: id)
2014-09-02 18:07:02 +05:30
end
context 'redirect to blob' do
let(:id) { 'master/README.md' }
2015-04-26 12:48:37 +05:30
it 'redirects' do
redirect_url = "/#{project.path_with_namespace}/blob/master/README.md"
expect(subject).
to redirect_to(redirect_url)
end
2014-09-02 18:07:02 +05:30
end
end
2015-10-24 18:46:33 +05:30
describe '#create_dir' do
render_views
before do
post(:create_dir,
namespace_id: project.namespace.to_param,
2017-08-17 22:00:37 +05:30
project_id: project,
2015-10-24 18:46:33 +05:30
id: 'master',
dir_name: path,
2017-08-17 22:00:37 +05:30
branch_name: branch_name,
2015-10-24 18:46:33 +05:30
commit_message: 'Test commit message')
end
context 'successful creation' do
let(:path) { 'files/new_dir'}
2017-08-17 22:00:37 +05:30
let(:branch_name) { 'master-test'}
2015-10-24 18:46:33 +05:30
it 'redirects to the new directory' do
expect(subject).
2017-08-17 22:00:37 +05:30
to redirect_to("/#{project.path_with_namespace}/tree/#{branch_name}/#{path}")
expect(flash[:notice]).to eq('The directory has been successfully created.')
2015-10-24 18:46:33 +05:30
end
end
context 'unsuccessful creation' do
let(:path) { 'README.md' }
2017-08-17 22:00:37 +05:30
let(:branch_name) { 'master'}
2015-10-24 18:46:33 +05:30
it 'does not allow overwriting of existing files' do
expect(subject).
to redirect_to("/#{project.path_with_namespace}/tree/master")
2017-08-17 22:00:37 +05:30
expect(flash[:alert]).to eq('A file with this name already exists')
2015-10-24 18:46:33 +05:30
end
end
end
2014-09-02 18:07:02 +05:30
end