about summary refs log tree commit diff
path: root/spec/models/user_settings/setting_spec.rb
blob: 9884ae4f8908d254d454d9f328ab61f1bb27862f (plain) (blame)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe UserSettings::Setting do
  subject { described_class.new(name, options) }

  let(:name)      { :foo }
  let(:options)   { { default: default, namespace: namespace } }
  let(:default)   { false }
  let(:namespace) { nil }

  describe '#default_value' do
    context 'when default value is a primitive value' do
      it 'returns default value' do
        expect(subject.default_value).to eq default
      end
    end

    context 'when default value is a proc' do
      let(:default) { -> { 'bar' } }

      it 'returns value from proc' do
        expect(subject.default_value).to eq 'bar'
      end
    end
  end

  describe '#type' do
    it 'returns a type' do
      expect(subject.type).to be_a ActiveModel::Type::Value
    end

    context 'when default value is a boolean' do
      let(:default) { false }

      it 'returns boolean' do
        expect(subject.type).to be_a ActiveModel::Type::Boolean
      end
    end

    context 'when default value is a string' do
      let(:default) { '' }

      it 'returns string' do
        expect(subject.type).to be_a ActiveModel::Type::String
      end
    end

    context 'when default value is a lambda returning a boolean' do
      let(:default) { -> { false } }

      it 'returns boolean' do
        expect(subject.type).to be_a ActiveModel::Type::Boolean
      end
    end

    context 'when default value is a lambda returning a string' do
      let(:default) { -> { '' } }

      it 'returns boolean' do
        expect(subject.type).to be_a ActiveModel::Type::String
      end
    end
  end

  describe '#type_cast' do
    context 'when default value is a boolean' do
      let(:default) { false }

      it 'returns boolean' do
        expect(subject.type_cast('1')).to be true
      end
    end

    context 'when default value is a string' do
      let(:default) { '' }

      it 'returns string' do
        expect(subject.type_cast(1)).to eq '1'
      end
    end
  end

  describe '#to_a' do
    it 'returns an array' do
      expect(subject.to_a).to eq [name, default]
    end
  end

  describe '#key' do
    context 'when there is no namespace' do
      it 'returnsn a symbol' do
        expect(subject.key).to eq :foo
      end
    end

    context 'when there is a namespace' do
      let(:namespace) { :bar }

      it 'returns a symbol' do
        expect(subject.key).to eq :'bar.foo'
      end
    end
  end
end