BigW Consortium Gitlab

post_receive_spec.rb 3.82 KB
Newer Older
1 2 3
require 'spec_helper'

describe PostReceive do
4 5 6
  let(:changes) { "123456 789012 refs/heads/tést\n654321 210987 refs/tags/tag" }
  let(:wrongly_encoded_changes) { changes.encode("ISO-8859-1").force_encoding("UTF-8") }
  let(:base64_changes) { Base64.encode64(wrongly_encoded_changes) }
7 8 9
  let(:project) { create(:project) }
  let(:key) { create(:key, user: project.owner) }
  let(:key_id) { key.shell_id }
10

11 12
  context "as a resque worker" do
    it "reponds to #perform" do
13
      expect(PostReceive.new).to respond_to(:perform)
14 15 16
    end
  end

17 18 19 20
  describe "#process_project_changes" do
    before do
      allow_any_instance_of(Gitlab::GitPostReceive).to receive(:identify).and_return(project.owner)
    end
21

22 23 24
    context "branches" do
      let(:changes) { "123456 789012 refs/heads/tést" }

25
      it "calls GitTagPushService" do
26 27 28 29 30 31 32 33 34
        expect_any_instance_of(GitPushService).to receive(:execute).and_return(true)
        expect_any_instance_of(GitTagPushService).not_to receive(:execute)
        PostReceive.new.perform(pwd(project), key_id, base64_changes)
      end
    end

    context "tags" do
      let(:changes) { "123456 789012 refs/tags/tag" }

35
      it "calls GitTagPushService" do
36 37 38 39 40 41 42 43 44
        expect_any_instance_of(GitPushService).not_to receive(:execute)
        expect_any_instance_of(GitTagPushService).to receive(:execute).and_return(true)
        PostReceive.new.perform(pwd(project), key_id, base64_changes)
      end
    end

    context "merge-requests" do
      let(:changes) { "123456 789012 refs/merge-requests/123" }

45
      it "does not call any of the services" do
46 47 48 49 50
        expect_any_instance_of(GitPushService).not_to receive(:execute)
        expect_any_instance_of(GitTagPushService).not_to receive(:execute)
        PostReceive.new.perform(pwd(project), key_id, base64_changes)
      end
    end
51 52 53 54

    context "gitlab-ci.yml" do
      subject { PostReceive.new.perform(pwd(project), key_id, base64_changes) }

55
      context "creates a Ci::Pipeline for every change" do
56 57 58 59 60 61 62
        before do
          allow_any_instance_of(Ci::CreatePipelineService).to receive(:commit) do
            OpenStruct.new(id: '123456')
          end
          allow_any_instance_of(Ci::CreatePipelineService).to receive(:branch?).and_return(true)
          stub_ci_pipeline_to_return_yaml_file
        end
63

64
        it { expect{ subject }.to change{ Ci::Pipeline.count }.by(2) }
65 66
      end

67
      context "does not create a Ci::Pipeline" do
68
        before { stub_ci_pipeline_yaml_file(nil) }
69

70
        it { expect{ subject }.not_to change{ Ci::Pipeline.count } }
71 72
      end
    end
73 74 75
  end

  context "webhook" do
76
    it "fetches the correct project" do
77
      expect(Project).to receive(:find_by_full_path).with(project.path_with_namespace).and_return(project)
78
      PostReceive.new.perform(pwd(project), key_id, base64_changes)
79
    end
80

81
    it "does not run if the author is not in the project" do
82 83 84
      allow_any_instance_of(Gitlab::GitPostReceive).
        to receive(:identify_using_ssh_key).
        and_return(nil)
85

86
      expect(project).not_to receive(:execute_hooks)
87

88
      expect(PostReceive.new.perform(pwd(project), key_id, base64_changes)).to be_falsey
89 90
    end

91
    it "asks the project to trigger all hooks" do
92
      allow(Project).to receive(:find_by_full_path).and_return(project)
93 94
      expect(project).to receive(:execute_hooks).twice
      expect(project).to receive(:execute_services).twice
95 96 97 98 99

      PostReceive.new.perform(pwd(project), key_id, base64_changes)
    end

    it "enqueues a UpdateMergeRequestsWorker job" do
100
      allow(Project).to receive(:find_by_full_path).and_return(project)
101
      expect(UpdateMergeRequestsWorker).to receive(:perform_async).with(project.id, project.owner.id, any_args)
102

103
      PostReceive.new.perform(pwd(project), key_id, base64_changes)
104 105
    end
  end
106 107

  def pwd(project)
108
    File.join(Gitlab.config.repositories.storages.default, project.path_with_namespace)
109
  end
110
end