Welcome to mirror list, hosted at ThFree Co, Russian Federation.

internal_helpers_spec.rb « helpers « api « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 847b711f82981eaad1feae9130095da06846fa23 (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
52
53
54
55
56
57
58
59
60
# frozen_string_literal: true

require "spec_helper"

RSpec.describe API::Helpers::InternalHelpers, feature_category: :api do
  describe "log user git operation activity" do
    let_it_be(:project) { create(:project) }
    let(:user) { project.first_owner }
    let(:internal_helper) do
      Class.new { include API::Helpers::InternalHelpers }.new
    end

    before do
      allow(internal_helper).to receive(:project).and_return(project)
    end

    shared_examples "handles log git operation activity" do
      it "log the user activity" do
        activity_service = instance_double(::Users::ActivityService)

        args = { author: user, project: project, namespace: project&.namespace }

        expect(Users::ActivityService).to receive(:new).with(args).and_return(activity_service)
        expect(activity_service).to receive(:execute)

        internal_helper.log_user_activity(user)
      end
    end

    context "when git pull/fetch/clone action" do
      before do
        allow(internal_helper).to receive(:params).and_return(action: "git-upload-pack")
      end

      context "with log the user activity" do
        it_behaves_like "handles log git operation activity"
      end
    end

    context "when git push action" do
      before do
        allow(internal_helper).to receive(:params).and_return(action: "git-receive-pack")
      end

      it "does not log the user activity when log_user_git_push_activity is disabled" do
        stub_feature_flags(log_user_git_push_activity: false)

        expect(::Users::ActivityService).not_to receive(:new)

        internal_helper.log_user_activity(user)
      end

      context "with log the user activity when log_user_git_push_activity is enabled" do
        stub_feature_flags(log_user_git_push_activity: true)

        it_behaves_like "handles log git operation activity"
      end
    end
  end
end