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

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

require 'spec_helper'

RSpec.describe Users::NamespaceCallout do
  let_it_be(:user) { create_default(:user) }
  let_it_be(:namespace) { create_default(:namespace) }
  let_it_be(:callout) { create(:namespace_callout) }

  it_behaves_like 'having unique enum values'

  describe 'relationships' do
    it { is_expected.to belong_to(:namespace) }
  end

  describe 'validations' do
    it { is_expected.to validate_presence_of(:namespace) }
    it { is_expected.to validate_presence_of(:user) }
    it { is_expected.to validate_presence_of(:feature_name) }

    specify do
      is_expected.to validate_uniqueness_of(:feature_name)
        .scoped_to(:user_id, :namespace_id)
        .ignoring_case_sensitivity
    end

    it { is_expected.to allow_value(:web_hook_disabled).for(:feature_name) }

    it 'rejects invalid feature names' do
      expect { callout.feature_name = :non_existent_feature }.to raise_error(ArgumentError)
    end
  end

  describe '#source_feature_name' do
    it 'provides string based off source and feature' do
      expect(callout.source_feature_name).to eq "#{callout.feature_name}_#{callout.namespace_id}"
    end
  end
end