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

57 lines
1.5 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) }
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
allow(project).to receive(:branches).and_return(['master', 'foo/bar/baz'])
allow(project).to receive(:tags).and_return(['v1.0.0', 'v2.0.0'])
2012-09-17 16:38:59 +00:00
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.to_param, id: id }
2012-09-17 16:38:59 +00:00
context "valid branch, no path" do
let(:id) { 'master' }
it { is_expected.to respond_with(:success) }
2012-09-17 16:38:59 +00:00
end
context "valid branch, valid path" do
let(:id) { 'master/encoding/' }
it { is_expected.to respond_with(:success) }
2012-09-17 16:38:59 +00:00
end
context "valid branch, invalid path" do
let(:id) { 'master/invalid-path/' }
it { is_expected.to respond_with(:not_found) }
2012-09-17 16:38:59 +00:00
end
context "invalid branch, valid path" do
let(:id) { 'invalid-branch/encoding/' }
it { is_expected.to respond_with(:not_found) }
2012-09-17 16:38:59 +00:00
end
end
2014-07-08 18:25:25 +00: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 { is_expected.to redirect_to("/#{project.path_with_namespace}/blob/master/README.md") }
2014-07-08 18:25:25 +00:00
end
end
2012-09-17 16:38:59 +00:00
end