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

require_verification_for_namespace_creation_experiment_spec.rb « experiments « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c91a8f1950edf3c3866025d31ec95d634346e4f4 (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 RequireVerificationForNamespaceCreationExperiment, :experiment do
  subject(:experiment) { described_class.new(user: user) }

  let(:user_created_at) { RequireVerificationForNamespaceCreationExperiment::EXPERIMENT_START_DATE + 1.hour }
  let(:user) { create(:user, created_at: user_created_at) }

  describe '#candidate?' do
    context 'when experiment subject is candidate' do
      before do
        stub_experiments(require_verification_for_namespace_creation: :candidate)
      end

      it 'returns true' do
        expect(experiment.candidate?).to eq(true)
      end
    end

    context 'when experiment subject is control' do
      before do
        stub_experiments(require_verification_for_namespace_creation: :control)
      end

      it 'returns false' do
        expect(experiment.candidate?).to eq(false)
      end
    end
  end

  describe 'exclusions' do
    context 'when user is new' do
      it 'is not excluded' do
        expect(subject).not_to exclude(user: user)
      end
    end

    context 'when user is NOT new' do
      let(:user_created_at) { RequireVerificationForNamespaceCreationExperiment::EXPERIMENT_START_DATE - 1.day }
      let(:user) { create(:user, created_at: user_created_at) }

      it 'is excluded' do
        expect(subject).to exclude(user: user)
      end
    end
  end
end