Sha256: 4f69bdf40a8a22255cc6ac165742c4543293f9d5654d26a59c60cd06a73fc602

Contents?: true

Size: 1.41 KB

Versions: 9

Compression:

Stored size: 1.41 KB

Contents

require File.expand_path('../../../spec_helper', File.dirname(__FILE__))

describe WillFilter::ActiveRecordExtension do
  describe 'filter' do

    before :all do
      5.times {|i| User.create(:first_name => "User #{i}")}
    end

    after :all do
      User.delete_all
    end

    context "filtering with no params" do
      it "should return all of the results" do
        User.filter(:params => {}).total_count.should == User.count
      end
    end

    context "filtering with is operator" do
      it "should return a single result" do
        User.filter(:params => {:wf_c0 => "first_name", :wf_o0 => "is", :wf_v0_0 => "User 1"}).total_count.should == 1
      end
    end
    
    context "filtering with like operator" do
      it "should return all matched results" do
        User.filter(:params => {:wf_c0 => "first_name", :wf_o0 => "contains", :wf_v0_0 => "User"}).total_count.should == User.count
      end
    end
    
    context "filtering with ends_with operator" do
      it "should return all matched results" do
        User.filter(:params => {:wf_c0 => "first_name", :wf_o0 => "ends_with", :wf_v0_0 => "4"}).total_count.should == 1
      end
    end

    context "filtering with starts_with operator" do
      it "should return all matched results" do
        User.filter(:params => {:wf_c0 => "first_name", :wf_o0 => "starts_with", :wf_v0_0 => "U"}).total_count.should == User.count
      end
    end
    
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
will_filter-5.1.4 spec/lib/will_filter/extensions/active_record_extension_spec.rb
will_filter-5.1.3 spec/lib/will_filter/extensions/active_record_extension_spec.rb
will_filter-5.1.2 spec/lib/will_filter/extensions/active_record_extension_spec.rb
will_filter-5.1.1 spec/lib/will_filter/extensions/active_record_extension_spec.rb
will_filter-5.1.0 spec/lib/will_filter/extensions/active_record_extension_spec.rb
will_filter-3.1.11 spec/lib/will_filter/extensions/active_record_extension_spec.rb
will_filter-3.1.10 spec/lib/will_filter/extensions/active_record_extension_spec.rb
will_filter-3.1.9 spec/lib/will_filter/extensions/active_record_extension_spec.rb
will_filter-3.1.8 spec/lib/will_filter/extensions/active_record_extension_spec.rb