summaryrefslogtreecommitdiff
path: root/spec/models/namespace_onboarding_action_spec.rb
blob: 70dcb989b323f4c3becce318d3b0c13cb01487c6 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe NamespaceOnboardingAction do
  let(:namespace) { build(:namespace) }

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

  describe 'validations' do
    it { is_expected.to validate_presence_of(:action) }
  end

  describe '.completed?' do
    let(:action) { :subscription_created }

    subject { described_class.completed?(namespace, action) }

    context 'action created for the namespace' do
      before do
        create(:namespace_onboarding_action, namespace: namespace, action: action)
      end

      it { is_expected.to eq(true) }
    end

    context 'action created for another namespace' do
      before do
        create(:namespace_onboarding_action, namespace: build(:namespace), action: action)
      end

      it { is_expected.to eq(false) }
    end
  end

  describe '.create_action' do
    let(:action) { :subscription_created }

    subject(:create_action) { described_class.create_action(namespace, action) }

    it 'creates the action for the namespace just once' do
      expect { create_action }.to change { count_namespace_actions }.by(1)

      expect { create_action }.to change { count_namespace_actions }.by(0)
    end

    def count_namespace_actions
      described_class.where(namespace: namespace, action: action).count
    end
  end
end