summaryrefslogtreecommitdiff
path: root/spec/lib/serializers/json_spec.rb
blob: 5d59d66e8b8250e67cc27f380898ce10899dcf45 (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
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
require 'fast_spec_helper'

describe Serializers::JSON do
  describe '.dump' do
    let(:obj) { { key: "value" } }

    subject { described_class.dump(obj) }

    context 'when MySQL is used' do
      before do
        allow(Gitlab::Database).to receive(:adapter_name) { 'mysql2' }
      end

      it 'encodes as string' do
        is_expected.to eq('{"key":"value"}')
      end
    end

    context 'when PostgreSQL is used' do
      before do
        allow(Gitlab::Database).to receive(:adapter_name) { 'postgresql' }
      end

      it 'returns a hash' do
        is_expected.to eq(obj)
      end
    end
  end

  describe '.load' do
    let(:data_string) { '{"key":"value","variables":[{"key":"VAR1","value":"VALUE1"}]}' }
    let(:data_hash) { JSON.parse(data_string) }

    shared_examples 'having consistent accessor' do
      it 'allows to access with symbols' do
        expect(subject[:key]).to eq('value')
        expect(subject[:variables].first[:key]).to eq('VAR1')
      end

      it 'allows to access with strings' do
        expect(subject["key"]).to eq('value')
        expect(subject["variables"].first["key"]).to eq('VAR1')
      end
    end

    context 'when MySQL is used' do
      before do
        allow(Gitlab::Database).to receive(:adapter_name) { 'mysql2' }
      end

      context 'when loading a string' do
        subject { described_class.load(data_string) }

        it 'decodes a string' do
          is_expected.to be_a(Hash)
        end

        it_behaves_like 'having consistent accessor'
      end

      context 'when loading a different type' do
        subject { described_class.load({ key: 'hash' }) }

        it 'raises an exception' do
          expect { subject }.to raise_error(TypeError)
        end
      end

      context 'when loading a nil' do
        subject { described_class.load(nil) }

        it 'returns nil' do
          is_expected.to be_nil
        end
      end
    end

    context 'when PostgreSQL is used' do
      before do
        allow(Gitlab::Database).to receive(:adapter_name) { 'postgresql' }
      end

      context 'when loading a hash' do
        subject { described_class.load(data_hash) }

        it 'decodes a string' do
          is_expected.to be_a(Hash)
        end

        it_behaves_like 'having consistent accessor'
      end

      context 'when loading a nil' do
        subject { described_class.load(nil) }

        it 'returns nil' do
          is_expected.to be_nil
        end
      end
    end
  end
end