branches_controller_spec.rb 7.8 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
        post :create,
25 26
          namespace_id: project.namespace,
          project_id: project,
27 28 29
          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
        post :create,
79 80
          namespace_id: project.namespace,
          project_id: project,
81
          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
      it 'posts a system note' do
        expect(SystemNoteService).to receive(:new_issue_branch).with(issue, project, user, "1-feature-branch")

        post :create,
92 93
          namespace_id: project.namespace,
          project_id: project,
Z
Zeger-Jan van de Weg 已提交
94 95 96
          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
      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) }

V
Valery Sizov 已提交
119
          project.services << build(:kubernetes_service)
120 121 122 123 124 125 126 127 128 129 130

          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))
V
Valery Sizov 已提交
131
          expect(response).to have_http_status(302)
132 133 134
        end
      end

135 136 137 138 139 140 141 142 143 144 145
      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,
146 147
            namespace_id: project.namespace,
            project_id: project,
148 149 150 151
            branch_name: branch,
            issue_iid: issue.iid
        end
      end
152
    end
M
Marin Jankovski 已提交
153
  end
154

155 156 157
  describe "POST destroy with HTML format" do
    render_views

158 159 160 161
    before do
      sign_in(user)
    end

162 163 164 165
    it 'returns 303' do
      post :destroy,
           format: :html,
           id: 'foo/bar/baz',
166 167
           namespace_id: project.namespace,
           project_id: project
168

Z
Z.J. van de Weg 已提交
169
      expect(response).to have_http_status(303)
170 171 172
    end
  end

173 174 175 176
  describe "POST destroy" do
    render_views

    before do
177 178
      sign_in(user)

179 180 181
      post :destroy,
           format: :js,
           id: branch,
182 183
           namespace_id: project.namespace,
           project_id: project
184 185 186 187 188
    end

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

Z
Z.J. van de Weg 已提交
189
      it { expect(response).to have_http_status(200) }
190 191
    end

192 193 194
    context "valid branch name with unencoded slashes" do
      let(:branch) { "improve/awesome" }

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

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

Z
Z.J. van de Weg 已提交
201
      it { expect(response).to have_http_status(200) }
202
    end
203 204 205
    context "invalid branch name, valid ref" do
      let(:branch) { "no-branch" }

Z
Z.J. van de Weg 已提交
206
      it { expect(response).to have_http_status(404) }
207 208
    end
  end
209 210 211 212

  describe "DELETE destroy_all_merged" do
    def destroy_all_merged
      delete :destroy_all_merged,
213 214
             namespace_id: project.namespace,
             project_id: project
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
    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
247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268

  describe "GET index" do
    render_views

    before do
      sign_in(user)
    end

    context 'when rendering a JSON format' do
      it 'filters branches by name' do
        get :index,
            namespace_id: project.namespace,
            project_id: project,
            format: :json,
            search: 'master'

        parsed_response = JSON.parse(response.body)

        expect(parsed_response.length).to eq 1
        expect(parsed_response.first).to eq 'master'
      end
    end
269 270 271 272 273 274 275 276 277 278 279 280 281 282

    context 'show_all = true' do
      it 'returns all the branches name' do
        get :index,
            namespace_id: project.namespace,
            project_id: project,
            format: :json,
            show_all: true

        parsed_response = JSON.parse(response.body)

        expect(parsed_response.length).to eq(project.repository.branches.count)
      end
    end
283
  end
M
Marin Jankovski 已提交
284
end