Sha256: 7a3dab5e06dddc62ba951cb88be7bc7e1340cbacc17aea2e3e3613cddc6dac2d

Contents?: true

Size: 1.75 KB

Versions: 2

Compression:

Stored size: 1.75 KB

Contents

require 'test_helper'
require 'representable/virtus_coercion'

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

    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::VirtusCoercion

      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

2 entries across 2 versions & 1 rubygems

Version Path
representable-3.1.1 test/virtus_coercion_test.rb
representable-3.1.0 test/virtus_coercion_test.rb