summaryrefslogtreecommitdiff
path: root/spec/controllers/branches_controller_spec.rb
blob: 610d7a84e31e5c9f72ddc61341c117b72fbbff4e (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
require 'spec_helper'

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

  before do
    sign_in(user)

    project.team << [user, :master]

    project.stub(:branches).and_return(['master', 'foo/bar/baz'])
    project.stub(:tags).and_return(['v1.0.0', 'v2.0.0'])
    controller.instance_variable_set(:@project, project)
  end

  describe "POST create" do
    render_views

    before {
      post :create,
        project_id: project.to_param,
        branch_name: branch,
        ref: ref
    }

    context "valid branch name, valid source" do
      let(:branch) { "merge_branch" }
      let(:ref) { "master" }
      it { should redirect_to("/#{project.path_with_namespace}/tree/merge_branch") }
    end

    context "invalid branch name, valid ref" do
      let(:branch) { "<script>alert('merge');</script>" }
      let(:ref) { "master" }
      it { should redirect_to("/#{project.path_with_namespace}/tree/alert('merge');") }
    end

    context "valid branch name, invalid ref" do
      let(:branch) { "merge_branch" }
      let(:ref) { "<script>alert('ref');</script>" }
      it { should render_template("new") }
    end

    context "invalid branch name, invalid ref" do
      let(:branch) { "<script>alert('merge');</script>" }
      let(:ref) { "<script>alert('ref');</script>" }
      it { should render_template("new") }
    end
  end
end