branches_controller_spec.rb 7.2 KB
Newer Older
M
Marin Jankovski 已提交
1 2 3
require 'spec_helper'

describe Projects::BranchesController do
4
  let(:project)   { create(:project, :repository) }
5 6
  let(:user)      { create(:user) }
  let(:developer) { create(:user) }
M
Marin Jankovski 已提交
7 8 9

  before do
    project.team << [user, :master]
10
    project.team << [user, :developer]
M
Marin Jankovski 已提交
11

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
    context "on creation of a new branch" do
      before do
22 23
        sign_in(user)

24 25 26 27 28 29
        post :create,
          namespace_id: project.namespace.to_param,
          project_id: project.to_param,
          branch_name: branch,
          ref: ref
      end
M
Marin Jankovski 已提交
30

31 32 33 34 35 36 37
      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 已提交
38
      end
M
Marin Jankovski 已提交
39

40 41 42 43 44 45 46
      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 已提交
47
      end
M
Marin Jankovski 已提交
48

49 50 51 52 53
      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 已提交
54

55 56 57 58 59 60 61 62 63 64 65 66
      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 已提交
67
    end
68

69 70
    describe "created from the new branch button on issues" do
      let(:branch) { "1-feature-branch" }
71
      let(:issue) { create(:issue, project: project) }
72

73 74 75 76
      before do
        sign_in(user)
      end

Z
Zeger-Jan van de Weg 已提交
77
      it 'redirects' do
78 79 80 81
        post :create,
          namespace_id: project.namespace.to_param,
          project_id: project.to_param,
          branch_name: branch,
Z
Zeger-Jan van de Weg 已提交
82
          issue_iid: issue.iid
83 84 85 86 87

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

Z
Zeger-Jan van de Weg 已提交
88 89 90 91 92 93 94 95 96
      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
97

98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
      context 'repository-less project' do
        let(:project) { create :empty_project }

        it 'redirects to newly created branch' do
          result = { status: :success, branch: double(name: branch) }

          expect_any_instance_of(CreateBranchService).to receive(:execute).and_return(result)
          expect(SystemNoteService).to receive(:new_issue_branch).and_return(true)

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

          expect(response).to redirect_to namespace_project_tree_path(project.namespace, project, branch)
        end

        it 'redirects to autodeploy setup page' do
          result = { status: :success, branch: double(name: branch) }

          project.create_kubernetes_service(
            active: true,
            properties: {
              namespace: project.path,
              api_url: 'https://kubernetes.example.com',
              token: 'a' * 40,
            }
          )

          expect_any_instance_of(CreateBranchService).to receive(:execute).and_return(result)
          expect(SystemNoteService).to receive(:new_issue_branch).and_return(true)

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

          expect(response.location).to include(namespace_project_new_blob_path(project.namespace, project, branch))
        end
      end

141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
      context 'without issue feature access' do
        before do
          project.update!(visibility_level: Gitlab::VisibilityLevel::PUBLIC)
          project.project_feature.update!(issues_access_level: ProjectFeature::PRIVATE)
          project.team.truncate
        end

        it "doesn't post a system note" do
          expect(SystemNoteService).not_to receive(:new_issue_branch)

          post :create,
            namespace_id: project.namespace.to_param,
            project_id: project.to_param,
            branch_name: branch,
            issue_iid: issue.iid
        end
      end
158
    end
M
Marin Jankovski 已提交
159
  end
160

161 162 163
  describe "POST destroy with HTML format" do
    render_views

164 165 166 167
    before do
      sign_in(user)
    end

168 169 170 171 172 173 174
    it 'returns 303' do
      post :destroy,
           format: :html,
           id: 'foo/bar/baz',
           namespace_id: project.namespace.to_param,
           project_id: project.to_param

Z
Z.J. van de Weg 已提交
175
      expect(response).to have_http_status(303)
176 177 178
    end
  end

179 180 181 182
  describe "POST destroy" do
    render_views

    before do
183 184
      sign_in(user)

185 186 187 188 189 190 191 192 193 194
      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" }

Z
Z.J. van de Weg 已提交
195
      it { expect(response).to have_http_status(200) }
196 197
    end

198 199 200
    context "valid branch name with unencoded slashes" do
      let(:branch) { "improve/awesome" }

Z
Z.J. van de Weg 已提交
201
      it { expect(response).to have_http_status(200) }
202 203 204 205 206
    end

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

Z
Z.J. van de Weg 已提交
207
      it { expect(response).to have_http_status(200) }
208
    end
209 210 211
    context "invalid branch name, valid ref" do
      let(:branch) { "no-branch" }

Z
Z.J. van de Weg 已提交
212
      it { expect(response).to have_http_status(404) }
213 214
    end
  end
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252

  describe "DELETE destroy_all_merged" do
    def destroy_all_merged
      delete :destroy_all_merged,
             namespace_id: project.namespace.to_param,
             project_id: project.to_param
    end

    context 'when user is allowed to push' do
      before do
        sign_in(user)
      end

      it 'redirects to branches' do
        destroy_all_merged

        expect(response).to redirect_to namespace_project_branches_path(project.namespace, project)
      end

      it 'starts worker to delete merged branches' do
        expect_any_instance_of(DeleteMergedBranchesService).to receive(:async_execute)

        destroy_all_merged
      end
    end

    context 'when user is not allowed to push' do
      before do
        sign_in(developer)
      end

      it 'responds with status 404' do
        destroy_all_merged

        expect(response).to have_http_status(404)
      end
    end
  end
M
Marin Jankovski 已提交
253
end