Sha256: f29f82621dd6426badde2f89aa93a23fafeab38892497d2b6718c5ebee8dd683

Contents?: true

Size: 1.92 KB

Versions: 13

Compression:

Stored size: 1.92 KB

Contents

require 'awestruct/rack/debug'
require 'rack/test'

describe Awestruct::Rack::Debug do

  class TestObject

    attr_accessor :name

    def initialize(name)
      @name = name
    end

    def to_s
      @name
    end
  end

  def debug
    Awestruct::Rack::Debug.new("")
  end

  def model
    obj = ::Awestruct::Page.new({})
    obj.A = {:a_one => 1, :a_two => 2}
    obj.B = {:b_one => 1}
    obj.C = {:c_one => [{:c_one_sub => 1}, {:c_two_sub => 2}]}
    obj.CUST = {:obj => [TestObject.new('CUST_OBJ')]}
    return obj
  end

  it "should include empty next level" do

    struct = debug.introspect(model, {}, ['A'], depth = 3)

    struct.size.should eql 1
    struct[:A].size.should eql 2

  end

  it "should include next level on *" do

    struct = debug.introspect(model, {}, ['*', 'A'], depth = 3)

    struct.size.should eql 1
    struct[:A].size.should eql 2
    struct[:A][:a_one].should eql '1'
    struct[:A][:a_two].should eql '2'

  end

  it "should include full array on next level" do

    struct = debug.introspect(model, {}, ['*', 'c_one', 'C'], depth = 3)

    puts struct

    struct.size.should eql 1
    struct[:C].size.should eql 1
    struct[:C][:c_one].size.should eql 2
    expect(struct[:C][:c_one][0]).not_to be_empty
    expect(struct[:C][:c_one][1]).not_to be_empty

  end

  it "should include array index on next level" do

    struct = debug.introspect(model, {}, ['*', '1', 'c_one', 'C'], depth = 3)

    puts struct

    struct.size.should eql 1
    struct[:C].size.should eql 1
    struct[:C][:c_one].size.should eql 2
    expect(struct[:C][:c_one][0]).to be_empty
    expect(struct[:C][:c_one][1]).not_to be_empty

  end

  it "should to_s custom objects" do

    struct = debug.introspect(model, {}, ['*', 'obj', 'CUST'], depth = 3)

    puts struct

    struct.size.should eql 1
    struct[:CUST].size.should eql 1
    struct[:CUST][:obj].size.should eql 1
    expect(struct[:CUST][:obj][0]).not_to be_empty

  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
awestruct-0.6.7 spec/awestruct/rack/debug_spec.rb
awestruct-0.6.6 spec/awestruct/rack/debug_spec.rb
awestruct-0.6.5 spec/awestruct/rack/debug_spec.rb
awestruct-0.6.4 spec/awestruct/rack/debug_spec.rb
awestruct-0.6.3 spec/awestruct/rack/debug_spec.rb
awestruct-0.6.2 spec/awestruct/rack/debug_spec.rb
awestruct-0.6.1 spec/awestruct/rack/debug_spec.rb
awestruct-0.6.0 spec/awestruct/rack/debug_spec.rb
awestruct-0.6.0.RC1 spec/awestruct/rack/debug_spec.rb
awestruct-0.6.0.alpha4 spec/awestruct/rack/debug_spec.rb
awestruct-0.6.0.alpha3 spec/awestruct/rack/debug_spec.rb
awestruct-0.6.0.alpha1 spec/awestruct/rack/debug_spec.rb
awestruct-0.5.7 spec/awestruct/rack/debug_spec.rb