gitlab-org--gitlab-foss/spec/controllers/tree_controller_spec.rb

44 lines
1.1 KiB
Ruby
Raw Normal View History

2012-09-17 16:38:59 +00:00
require 'spec_helper'
describe Projects::TreeController do
let(:project) { create(:project_with_code) }
2012-09-17 16:38:59 +00:00
let(:user) { create(:user) }
before do
sign_in(user)
2013-01-04 16:50:31 +00:00
project.team << [user, :master]
2012-09-17 16:38:59 +00: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
before { get :show, project_id: project.code, id: id }
context "valid branch, no path" do
let(:id) { 'master' }
it { should respond_with(:success) }
end
context "valid branch, valid path" do
let(:id) { 'master/app/' }
2012-09-17 16:38:59 +00:00
it { should respond_with(:success) }
end
context "valid branch, invalid path" do
let(:id) { 'master/invalid-path/' }
2012-09-17 16:38:59 +00:00
it { should respond_with(:not_found) }
end
context "invalid branch, valid path" do
let(:id) { 'invalid-branch/app/' }
2012-09-17 16:38:59 +00:00
it { should respond_with(:not_found) }
end
end
end