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

empty_repo_upload_experiment_spec.rb « experiments « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 10cbedbe8ba57cf440af29a42fa346392e1e4b38 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe EmptyRepoUploadExperiment, :experiment do
  subject { described_class.new(project: project) }

  let(:project) { create(:project, :repository) }

  describe '#track_initial_write' do
    context 'when experiment is turned on' do
      before do
        stub_experiments(empty_repo_upload: :control)
      end

      it "tracks an event for the first commit on a project" do
        expect(subject).to receive(:commit_count_for).with(project, max_count: described_class::INITIAL_COMMIT_COUNT, experiment: 'empty_repo_upload').and_return(1)

        expect(subject).to receive(:track).with(:initial_write, project: project).and_call_original

        subject.track_initial_write
      end

      it "doesn't track an event for projects with a commit count more than 1" do
        expect(subject).to receive(:commit_count_for).and_return(2)

        expect(subject).not_to receive(:track)

        subject.track_initial_write
      end

      it "doesn't track if the project is older" do
        expect(project).to receive(:created_at).and_return(described_class::TRACKING_START_DATE - 1.minute)

        expect(subject).not_to receive(:track)

        subject.track_initial_write
      end
    end

    context 'when experiment is turned off' do
      it "doesn't track when we generally shouldn't" do
        expect(subject).not_to receive(:track)

        subject.track_initial_write
      end
    end
  end
end