summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-11-25 00:05:11 +0100
committerRiyad Preukschas <riyad@informatik.uni-bremen.de>2012-11-25 00:05:11 +0100
commitddb7399ac424222719ebfddb239abb3abac4b7eb (patch)
tree0f87a25bc27d68fbcd0a7167a25f4919d89a458c /spec
parent3b7c2adf0aead7438a0319d21a050c30b408c03a (diff)
downloadgitlab-ce-ddb7399ac424222719ebfddb239abb3abac4b7eb.tar.gz
Add specs for exporting commits as diff or patch
Diffstat (limited to 'spec')
-rw-r--r--spec/controllers/commit_controller_spec.rb74
1 files changed, 74 insertions, 0 deletions
diff --git a/spec/controllers/commit_controller_spec.rb b/spec/controllers/commit_controller_spec.rb
new file mode 100644
index 00000000000..5aef4c676ee
--- /dev/null
+++ b/spec/controllers/commit_controller_spec.rb
@@ -0,0 +1,74 @@
+require 'spec_helper'
+
+describe CommitController do
+ let(:project) { create(:project) }
+ let(:user) { create(:user) }
+ let(:commit) { project.last_commit_for("master") }
+
+ before do
+ sign_in(user)
+
+ project.add_access(user, :read, :admin)
+ end
+
+ describe "#show" do
+ shared_examples "export as" do |format|
+ it "should generally work" do
+ get :show, project_id: project.code, id: commit.id, format: format
+
+ expect(response).to be_success
+ end
+
+ it "should generate it" do
+ Commit.any_instance.should_receive(:"to_#{format}")
+
+ get :show, project_id: project.code, id: commit.id, format: format
+ end
+
+ it "should render it" do
+ get :show, project_id: project.code, id: commit.id, format: format
+
+ expect(response.body).to eq(commit.send(:"to_#{format}"))
+ end
+
+ it "should not escape Html" do
+ Commit.any_instance.stub(:"to_#{format}").and_return('HTML entities &<>" ')
+
+ get :show, project_id: project.code, id: commit.id, format: format
+
+ expect(response.body).to_not include('&amp;')
+ expect(response.body).to_not include('&gt;')
+ expect(response.body).to_not include('&lt;')
+ expect(response.body).to_not include('&quot;')
+ end
+ end
+
+ describe "as diff" do
+ include_examples "export as", :diff
+ let(:format) { :diff }
+
+ it "should really only be a git diff" do
+ get :show, project_id: project.code, id: commit.id, format: format
+
+ expect(response.body).to start_with("diff --git")
+ end
+ end
+
+ describe "as patch" do
+ include_examples "export as", :patch
+ let(:format) { :patch }
+
+ it "should really be a git email patch" do
+ get :show, project_id: project.code, id: commit.id, format: format
+
+ expect(response.body).to start_with("From #{commit.id}")
+ end
+
+ it "should contain a git diff" do
+ get :show, project_id: project.code, id: commit.id, format: format
+
+ expect(response.body).to match(/^diff --git/)
+ end
+ end
+ end
+end