summaryrefslogtreecommitdiff
path: root/spec/controllers/commit_controller_spec.rb
blob: 8e98b0a3ce381e8339fcf9128d1d550a9942afec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
require 'spec_helper'

describe Projects::CommitController do
  let(:project) { create(:project_with_code) }
  let(:user) { create(:user) }
  let(:commit) { project.repository.last_commit_for("master") }

  before do
    sign_in(user)
    project.team << [user, :master]
  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