Sha256: 41922057cf682dc61824fb3718bfd22b280d0e40cd8b082cbf29fbcd9495c917

Contents?: true

Size: 1.28 KB

Versions: 4

Compression:

Stored size: 1.28 KB

Contents

# encoding: UTF-8

require 'spec_helper'

describe "FFI_Yajl::Encoder" do

  let(:encoder) { FFI_Yajl::Encoder.new }

  it "encodes fixnums in keys as strings" do
    ruby = {1 => 2}
    expect(encoder.encode(ruby)).to eq('{"1":2}')
  end

  it "encodes floats in keys as strings" do
    ruby = {1.1 => 2}
    expect(encoder.encode(ruby)).to eq('{"1.1":2}')
  end

  it "encodes bignums in keys as strings" do
    ruby = {12345678901234567890 => 2}
    expect(encoder.encode(ruby)).to eq('{"12345678901234567890":2}')
  end

  # XXX: 127 == YAJL_MAX_DEPTH hardcodedness, zero control for us, it isn't even a twiddleable #define
  it "raises an exception for deeply nested arrays" do
    root = []
    a = root
    127.times { |_| a << []; a = a[0] }
    expect{ encoder.encode(root) }.to raise_error(FFI_Yajl::EncodeError)
  end

  it "raises an exception for deeply nested hashes" do
    root = {}
    a = root
    127.times {|_| a["a"] = {}; a = a["a"] }
    expect{ encoder.encode(root) }.to raise_error(FFI_Yajl::EncodeError)
  end

  it "encodes symbols in keys as strings" do
    ruby = {:thing => 1}
    expect(encoder.encode(ruby)).to eq('{"thing":1}')
  end

  it "encodes symbols in values as strings" do
    ruby = {"thing" => :one}
    expect(encoder.encode(ruby)).to eq('{"thing":"one"}')
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ffi-yajl-0.0.3-universal-java spec/ffi_yajl/encoder_spec.rb
ffi-yajl-0.0.3 spec/ffi_yajl/encoder_spec.rb
ffi-yajl-0.0.2-universal-java spec/ffi_yajl/encoder_spec.rb
ffi-yajl-0.0.2 spec/ffi_yajl/encoder_spec.rb