2013-04-03 08:55:08 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2013-06-23 13:25:06 -04:00
|
|
|
describe Projects::BlobController do
|
2014-01-22 14:03:52 -05:00
|
|
|
let(:project) { create(:project) }
|
2013-04-03 08:55:08 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
project.team << [user, :master]
|
|
|
|
|
|
|
|
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
|
|
|
|
render_views
|
|
|
|
|
2013-09-05 07:46:34 -04:00
|
|
|
before { get :show, project_id: project.to_param, id: id }
|
2013-04-03 08:55:08 -04:00
|
|
|
|
|
|
|
context "valid branch, valid file" do
|
|
|
|
let(:id) { 'master/README.md' }
|
|
|
|
it { should respond_with(:success) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "valid branch, invalid file" do
|
|
|
|
let(:id) { 'master/invalid-path.rb' }
|
|
|
|
it { should respond_with(:not_found) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context "invalid branch, valid file" do
|
|
|
|
let(:id) { 'invalid-branch/README.md' }
|
|
|
|
it { should respond_with(:not_found) }
|
|
|
|
end
|
|
|
|
end
|
2014-07-08 14:25:25 -04:00
|
|
|
|
|
|
|
describe 'GET show with tree path' do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
before do
|
|
|
|
get :show, project_id: project.to_param, id: id
|
|
|
|
controller.instance_variable_set(:@blob, nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'redirect to tree' do
|
2014-08-07 13:46:17 -04:00
|
|
|
let(:id) { 'markdown/doc' }
|
|
|
|
it { should redirect_to("/#{project.path_with_namespace}/tree/markdown/doc") }
|
2014-07-08 14:25:25 -04:00
|
|
|
end
|
|
|
|
end
|
2013-04-03 08:55:08 -04:00
|
|
|
end
|