2012-09-25 23:40:04 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2013-06-23 13:25:06 -04:00
|
|
|
describe Projects::CommitsController do
|
2017-01-25 16:44:33 -05:00
|
|
|
let(:project) { create(:project, :repository) }
|
2013-04-25 10:15:33 -04:00
|
|
|
let(:user) { create(:user) }
|
2012-09-25 23:40:04 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
2014-05-26 08:53:34 -04:00
|
|
|
project.team << [user, :master]
|
2012-09-25 23:40:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET show" do
|
2016-10-07 11:49:48 -04:00
|
|
|
context "when the ref name ends in .atom" do
|
|
|
|
render_views
|
|
|
|
|
|
|
|
context "when the ref does not exist with the suffix" do
|
|
|
|
it "renders as atom" do
|
|
|
|
get(:show,
|
2017-02-23 18:55:01 -05:00
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
2016-10-07 11:49:48 -04:00
|
|
|
id: "master.atom")
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
expect(response.content_type).to eq('application/atom+xml')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when the ref exists with the suffix" do
|
|
|
|
before do
|
|
|
|
commit = project.repository.commit('master')
|
|
|
|
|
|
|
|
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,
|
2017-02-23 18:55:01 -05:00
|
|
|
namespace_id: project.namespace,
|
|
|
|
project_id: project,
|
2016-10-07 11:49:48 -04:00
|
|
|
id: "master.atom")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "renders as HTML" do
|
|
|
|
expect(response).to be_success
|
|
|
|
expect(response.content_type).to eq('text/html')
|
|
|
|
end
|
2012-09-25 23:40:04 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|