2014-09-02 18:07:02 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Projects::CommitsController 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
|
2018-11-18 11:00:15 +05:30
|
|
|
project.add_maintainer(user)
|
|
|
|
end
|
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
context 'signed in' do
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET commits_root" do
|
|
|
|
context "no ref is provided" do
|
|
|
|
it 'should redirect to the default branch of the project' do
|
|
|
|
get(:commits_root,
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project)
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
expect(response).to redirect_to project_commits_path(project)
|
|
|
|
end
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
describe "GET show" do
|
|
|
|
render_views
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
context 'with file path' do
|
|
|
|
before do
|
|
|
|
get(:show,
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: id)
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
context "valid branch, valid file" do
|
|
|
|
let(:id) { 'master/README.md' }
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
it { is_expected.to respond_with(:success) }
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
context "valid branch, invalid file" do
|
|
|
|
let(:id) { 'master/invalid-path.rb' }
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
it { is_expected.to respond_with(:not_found) }
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
context "invalid branch, valid file" do
|
|
|
|
let(:id) { 'invalid-branch/README.md' }
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
it { is_expected.to respond_with(:not_found) }
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
context "when the ref name ends in .atom" do
|
|
|
|
context "when the ref does not exist with the suffix" do
|
|
|
|
before do
|
|
|
|
get(:show,
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: "master.atom")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders as atom" do
|
|
|
|
expect(response).to be_success
|
|
|
|
expect(response.content_type).to eq('application/atom+xml')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders summary with type=html' do
|
|
|
|
expect(response.body).to include('<summary type="html">')
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
context "when the ref exists with the suffix" do
|
|
|
|
before do
|
|
|
|
commit = project.repository.commit('master')
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
allow_any_instance_of(Repository).to receive(:commit).and_call_original
|
|
|
|
allow_any_instance_of(Repository).to receive(:commit).with('master.atom').and_return(commit)
|
|
|
|
|
|
|
|
get(:show,
|
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
|
|
|
id: "master.atom")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders as HTML" do
|
|
|
|
expect(response).to be_success
|
|
|
|
expect(response.content_type).to eq('text/html')
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
2018-11-29 20:51:05 +05:30
|
|
|
end
|
|
|
|
end
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
context 'token authentication' do
|
|
|
|
context 'public project' do
|
|
|
|
it_behaves_like 'authenticates sessionless user', :show, :atom, public: true do
|
2016-11-03 12:29:30 +05:30
|
|
|
before do
|
2018-11-29 20:51:05 +05:30
|
|
|
public_project = create(:project, :repository, :public)
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
default_params.merge!(namespace_id: public_project.namespace, project_id: public_project, id: "master.atom")
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
2018-11-29 20:51:05 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'private project' do
|
|
|
|
it_behaves_like 'authenticates sessionless user', :show, :atom, public: false do
|
|
|
|
before do
|
|
|
|
private_project = create(:project, :repository, :private)
|
|
|
|
private_project.add_maintainer(user)
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2018-11-29 20:51:05 +05:30
|
|
|
default_params.merge!(namespace_id: private_project.namespace, project_id: private_project, id: "master.atom")
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|