2012-09-17 12:38:59 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2013-06-23 13:25:06 -04:00
|
|
|
describe Projects::TreeController do
|
2014-01-22 14:03:52 -05:00
|
|
|
let(:project) { create(:project) }
|
2012-09-17 12:38:59 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
|
2013-01-04 11:50:31 -05:00
|
|
|
project.team << [user, :master]
|
2012-09-17 12:38:59 -04:00
|
|
|
|
|
|
|
project.stub(:branches).and_return(['master', 'foo/bar/baz'])
|
|
|
|
project.stub(:tags).and_return(['v1.0.0', 'v2.0.0'])
|
|
|
|
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
|
|
|
|
|
2013-09-05 07:46:34 -04:00
|
|
|
before { get :show, project_id: project.to_param, id: id }
|
2012-09-17 12:38:59 -04:00
|
|
|
|
|
|
|
context "valid branch, no path" do
|
|
|
|
let(:id) { 'master' }
|
|
|
|
it { should respond_with(:success) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "valid branch, valid path" do
|
2013-04-03 08:55:08 -04:00
|
|
|
let(:id) { 'master/app/' }
|
2012-09-17 12:38:59 -04:00
|
|
|
it { should respond_with(:success) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "valid branch, invalid path" do
|
2013-04-03 08:55:08 -04:00
|
|
|
let(:id) { 'master/invalid-path/' }
|
2012-09-17 12:38:59 -04:00
|
|
|
it { should respond_with(:not_found) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "invalid branch, valid path" do
|
2013-04-03 08:55:08 -04:00
|
|
|
let(:id) { 'invalid-branch/app/' }
|
2012-09-17 12:38:59 -04:00
|
|
|
it { should respond_with(:not_found) }
|
|
|
|
end
|
|
|
|
end
|
2014-07-08 14:25:25 -04:00
|
|
|
|
|
|
|
describe 'GET show with blob path' do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
before do
|
|
|
|
get :show, project_id: project.to_param, id: id
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'redirect to blob' do
|
|
|
|
let(:id) { 'master/README.md' }
|
|
|
|
it { should redirect_to("/#{project.path_with_namespace}/blob/master/README.md") }
|
|
|
|
end
|
|
|
|
end
|
2012-09-17 12:38:59 -04:00
|
|
|
end
|