Sha256: d6073297b2c3dac339cc84c75f2734bb6c36db4ef63e9e8421b24479cf094254

Contents?: true

Size: 1.99 KB

Versions: 5

Compression:

Stored size: 1.99 KB

Contents

require 'test_helper'

class FilterPipelineTest < MiniTest::Spec
  let(:block1) { lambda { |input, options| "1: #{input}" } }
  let(:block2) { lambda { |input, options| "2: #{input}" } }

  subject { Representable::Pipeline[block1, block2] }

  it { _(subject.call("Horowitz", {})).must_equal "2: 1: Horowitz" }
end


class FilterTest < MiniTest::Spec
  representer! do
    property :title

    property :track,
      :parse_filter  => lambda { |input, options| "#{input.downcase},#{options[:doc]}" },
      :render_filter => lambda { |val, options| "#{val.upcase},#{options[:doc]},#{options[:options][:user_options]}" }
  end

  # gets doc and options.
  it {
    song = OpenStruct.new.extend(representer).from_hash("title" => "VULCAN EARS", "track" => "Nine")
    _(song.title).must_equal "VULCAN EARS"
    _(song.track).must_equal "nine,{\"title\"=>\"VULCAN EARS\", \"track\"=>\"Nine\"}"
  }

  it { _(OpenStruct.new("title" => "vulcan ears", "track" => "Nine").extend(representer).to_hash).must_equal( {"title"=>"vulcan ears", "track"=>"NINE,{\"title\"=>\"vulcan ears\"},{}"}) }


  describe "#parse_filter" do
    representer! do
      property :track,
        :parse_filter => [
          lambda { |input, options| "#{input}-1" },
          lambda { |input, options| "#{input}-2" }],
        :render_filter => [
          lambda { |val, options| "#{val}-1" },
          lambda { |val, options| "#{val}-2" }]
    end

    # order matters.
    it { _(OpenStruct.new.extend(representer).from_hash("track" => "Nine").track).must_equal "Nine-1-2" }
    it { _(OpenStruct.new("track" => "Nine").extend(representer).to_hash).must_equal({"track"=>"Nine-1-2"}) }
  end
end


# class RenderFilterTest < MiniTest::Spec
#   representer! do
#     property :track, :render_filter => [lambda { |val, options| "#{val}-1" } ]
#     property :track, :render_filter => [lambda { |val, options| "#{val}-2" } ], :inherit => true
#   end

#   it { OpenStruct.new("track" => "Nine").extend(representer).to_hash.must_equal({"track"=>"Nine-1-2"}) }
# end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/representable-3.2.0/test/filter_test.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/representable-3.2.0/test/filter_test.rb
representable-3.2.0 test/filter_test.rb
representable-3.1.1 test/filter_test.rb
representable-3.1.0 test/filter_test.rb