Sha256: 48f4c8bcc07c0dde2d387ae7d909d02dfad621199617219a6e1b6ac61bc88bf5

Contents?: true

Size: 1.71 KB

Versions: 15

Compression:

Stored size: 1.71 KB

Contents

require 'test_helper'
require 'representable/coercion'

class VirtusCoercionTest < MiniTest::Spec
  representer! do
    include Representable::Coercion

    property :title # no coercion.
    property :length, :type => Float

    property :band, :class => OpenStruct do
      property :founded, :type => Integer
    end

    collection :songs, :class => OpenStruct do
      property :ok, :type => Virtus::Attribute::Boolean
    end
  end

  let (:album) { OpenStruct.new(:title => "Dire Straits", :length => 41.34,
    :band  => OpenStruct.new(:founded => "1977"),
    :songs => [OpenStruct.new(:ok => 1), OpenStruct.new(:ok => 0)]) }

  it { album.extend(representer).to_hash.must_equal({"title"=>"Dire Straits", "length"=>41.34, "band"=>{"founded"=>1977}, "songs"=>[{"ok"=>true}, {"ok"=>false}]}) }

  it {
    album = OpenStruct.new
    album.extend(representer)
    album.from_hash({"title"=>"Dire Straits", "length"=>"41.34", "band"=>{"founded"=>"1977"}, "songs"=>[{"ok"=>1}, {"ok"=>0}]})

    # it
    album.length.must_equal 41.34
    album.band.founded.must_equal 1977
    album.songs[0].ok.must_equal true
  }


  describe "with user :parse_filter and :render_filter" do
    representer! do
      include Representable::Coercion

      property :length, :type => Float,
      :parse_filter  => lambda { |input, options| "#{input}.1" }, # happens BEFORE coercer.
      :render_filter => lambda { |fragment,*| "#{fragment}.1" }
    end

    # user's :parse_filter(s) are run before coercion.
    it { OpenStruct.new.extend(representer).from_hash("length"=>"1").length.must_equal 1.1 }
    # user's :render_filter(s) are run before coercion.
    it { OpenStruct.new(:length=>1).extend(representer).to_hash.must_equal({"length" => 1.1}) }
  end
end

Version data entries

15 entries across 11 versions & 1 rubygems

Version Path
representable-3.0.3 test/coercion_test.rb
representable-3.0.2 test/coercion_test.rb
representable-3.0.1 test/coercion_test.rb
representable-3.0.0 test/coercion_test.rb
representable-2.4.1 test/coercion_test.rb
representable-2.4.1 test-with-deprecations/coercion_test.rb
representable-2.4.0 test-with-deprecations/coercion_test.rb
representable-2.4.0 test/coercion_test.rb
representable-2.4.0.rc5 test/coercion_test.rb
representable-2.4.0.rc5 test-with-deprecations/coercion_test.rb
representable-2.4.0.rc4 test/coercion_test.rb
representable-2.4.0.rc4 test-with-deprecations/coercion_test.rb
representable-2.4.0.rc3 test/coercion_test.rb
representable-2.4.0.rc2 test/coercion_test.rb
representable-2.4.0.rc1 test/coercion_test.rb