summaryrefslogtreecommitdiff
path: root/spec/functions/parsejson_spec.rb
blob: 7b07e49884671304165820cac680d556860bf430 (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
require 'spec_helper'

describe 'parsejson' do
  it 'should exist' do
    is_expected.not_to eq(nil)
  end

  it 'should raise an error if called without any arguments' do
    is_expected.to run.with_params().
                       and_raise_error(/wrong number of arguments/i)
  end

  context 'with correct JSON data' do

    it 'should be able to parse JSON data with a Hash' do
      is_expected.to run.with_params('{"a":"1","b":"2"}').
                         and_return({'a'=>'1', 'b'=>'2'})
    end

    it 'should be able to parse JSON data with an Array' do
      is_expected.to run.with_params('["a","b","c"]').
                         and_return(['a', 'b', 'c'])
    end

    it 'should be able to parse empty JSON values' do
      is_expected.to run.with_params('[]').
                         and_return([])
      is_expected.to run.with_params('{}').
                         and_return({})
    end

    it 'should be able to parse JSON data with a mixed structure' do
      is_expected.to run.with_params('{"a":"1","b":2,"c":{"d":[true,false]}}').
                         and_return({'a' =>'1', 'b' => 2, 'c' => { 'd' => [true, false] } })
    end

    it 'should be able to parse JSON data with a UTF8 and double byte characters' do
      is_expected.to run.with_params('{"×":"これ","ý":"記号","です":{"©":["Á","ß"]}}').
          and_return({'×' =>'これ', 'ý' => '記号', 'です' => { '©' => ['Á', 'ß'] } })
    end

    it 'should not return the default value if the data was parsed correctly' do
      is_expected.to run.with_params('{"a":"1"}', 'default_value').
                         and_return({'a' => '1'})
    end

  end

  context 'with incorrect JSON data' do
    it 'should raise an error with invalid JSON and no default' do
      is_expected.to run.with_params('').
                         and_raise_error(PSON::ParserError)
    end

    it 'should support a structure for a default value' do
      is_expected.to run.with_params('', {'a' => '1'}).
                         and_return({'a' => '1'})
    end

    ['', 1, 1.2, nil, true, false, [], {}, :yaml].each do |value|
      it "should return the default value for an incorrect #{value.inspect} (#{value.class}) parameter" do
        is_expected.to run.with_params(value, 'default_value').
                           and_return('default_value')
      end
    end

  end

end