branches_controller_spec.rb 3.9 KB
Newer Older
M
Marin Jankovski 已提交
1 2 3 4 5 6 7 8 9 10 11
require 'spec_helper'

describe Projects::BranchesController do
  let(:project) { create(:project) }
  let(:user)    { create(:user) }

  before do
    sign_in(user)

    project.team << [user, :master]

12 13
    allow(project).to receive(:branches).and_return(['master', 'foo/bar/baz'])
    allow(project).to receive(:tags).and_return(['v1.0.0', 'v2.0.0'])
M
Marin Jankovski 已提交
14 15 16 17 18 19
    controller.instance_variable_set(:@project, project)
  end

  describe "POST create" do
    render_views

20 21 22 23 24 25 26 27
    context "on creation of a new branch" do
      before do
        post :create,
          namespace_id: project.namespace.to_param,
          project_id: project.to_param,
          branch_name: branch,
          ref: ref
      end
M
Marin Jankovski 已提交
28

29 30 31 32 33 34 35
      context "valid branch name, valid source" do
        let(:branch) { "merge_branch" }
        let(:ref) { "master" }
        it 'redirects' do
          expect(subject).
            to redirect_to("/#{project.path_with_namespace}/tree/merge_branch")
        end
J
Jeroen van Baarsen 已提交
36
      end
M
Marin Jankovski 已提交
37

38 39 40 41 42 43 44
      context "invalid branch name, valid ref" do
        let(:branch) { "<script>alert('merge');</script>" }
        let(:ref) { "master" }
        it 'redirects' do
          expect(subject).
            to redirect_to("/#{project.path_with_namespace}/tree/alert('merge');")
        end
J
Jeroen van Baarsen 已提交
45
      end
M
Marin Jankovski 已提交
46

47 48 49 50 51
      context "valid branch name, invalid ref" do
        let(:branch) { "merge_branch" }
        let(:ref) { "<script>alert('ref');</script>" }
        it { is_expected.to render_template('new') }
      end
M
Marin Jankovski 已提交
52

53 54 55 56 57 58 59 60 61 62 63 64
      context "invalid branch name, invalid ref" do
        let(:branch) { "<script>alert('merge');</script>" }
        let(:ref) { "<script>alert('ref');</script>" }
        it { is_expected.to render_template('new') }
      end

      context "valid branch name with encoded slashes" do
        let(:branch) { "feature%2Ftest" }
        let(:ref) { "<script>alert('ref');</script>" }
        it { is_expected.to render_template('new') }
        it { project.repository.branch_names.include?('feature/test') }
      end
M
Marin Jankovski 已提交
65
    end
66

67 68
    describe "created from the new branch button on issues" do
      let(:branch) { "1-feature-branch" }
Z
Zeger-Jan van de Weg 已提交
69
      let!(:issue) { create(:issue, project: project) }
70

Z
Zeger-Jan van de Weg 已提交
71 72

      it 'redirects' do
73 74 75 76
        post :create,
          namespace_id: project.namespace.to_param,
          project_id: project.to_param,
          branch_name: branch,
Z
Zeger-Jan van de Weg 已提交
77
          issue_iid: issue.iid
78 79 80 81 82

        expect(subject).
          to redirect_to("/#{project.path_with_namespace}/tree/1-feature-branch")
      end

Z
Zeger-Jan van de Weg 已提交
83 84 85 86 87 88 89 90 91 92
      it 'posts a system note' do
        expect(SystemNoteService).to receive(:new_issue_branch).with(issue, project, user, "1-feature-branch")

        post :create,
          namespace_id: project.namespace.to_param,
          project_id: project.to_param,
          branch_name: branch,
          issue_iid: issue.iid
      end

93
    end
M
Marin Jankovski 已提交
94
  end
95

96 97 98 99 100 101 102 103 104 105 106 107 108 109
  describe "POST destroy with HTML format" do
    render_views

    it 'returns 303' do
      post :destroy,
           format: :html,
           id: 'foo/bar/baz',
           namespace_id: project.namespace.to_param,
           project_id: project.to_param

      expect(response.status).to eq(303)
    end
  end

110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
  describe "POST destroy" do
    render_views

    before do
      post :destroy,
           format: :js,
           id: branch,
           namespace_id: project.namespace.to_param,
           project_id: project.to_param
    end

    context "valid branch name, valid source" do
      let(:branch) { "feature" }

      it { expect(response.status).to eq(200) }
    end

127 128 129 130 131 132 133 134 135 136 137
    context "valid branch name with unencoded slashes" do
      let(:branch) { "improve/awesome" }

      it { expect(response.status).to eq(200) }
    end

    context "valid branch name with encoded slashes" do
      let(:branch) { "improve%2Fawesome" }

      it { expect(response.status).to eq(200) }
    end
138 139 140 141 142 143
    context "invalid branch name, valid ref" do
      let(:branch) { "no-branch" }

      it { expect(response.status).to eq(404) }
    end
  end
M
Marin Jankovski 已提交
144
end