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

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

require 'fast_spec_helper'

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

    subject { described_class.dump(obj) }

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

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

    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 'allows to access with symbols' do
        expect(subject[:key]).to eq('value')
        expect(subject[:variables].first[:key]).to eq('VAR1')
      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
end