require File.expand_path(File.dirname(__FILE__) + "/../spec_helper") describe "Or conditions" do it "should define a scope by the exact same name as requested by the code" do User.name_or_username_like('Test') User.respond_to?(:name_or_username_like).should be_true end it "should match username or name" do User.username_or_name_like("ben").proxy_options.should == {:conditions => "(users.username LIKE '%ben%') OR (users.name LIKE '%ben%')"} end it "should use the specified condition" do User.username_begins_with_or_name_like("ben").proxy_options.should == {:conditions => "(users.username LIKE 'ben%') OR (users.name LIKE '%ben%')"} end it "should use the last specified condition" do User.username_or_name_like_or_id_or_age_lt(10).proxy_options.should == {:conditions => "(users.username LIKE '%10%') OR (users.name LIKE '%10%') OR (users.id < 10) OR (users.age < 10)"} end it "should raise an error on unknown conditions" do lambda { User.usernme_begins_with_or_name_like("ben") }.should raise_error(Searchlogic::NamedScopes::OrConditions::UnknownConditionError) end it "should work well with _or_equal_to" do User.id_less_than_or_equal_to_or_age_gt(10).proxy_options.should == {:conditions => "(users.id <= 10) OR (users.age > 10)"} end it "should work well with _or_equal_to_any" do User.id_less_than_or_equal_to_all_or_age_gt(10).proxy_options.should == {:conditions => "(users.id <= 10) OR (users.age > 10)"} end it "should work well with _or_equal_to_all" do User.id_less_than_or_equal_to_any_or_age_gt(10).proxy_options.should == {:conditions => "(users.id <= 10) OR (users.age > 10)"} end it "should play nice with other scopes" do User.username_begins_with("ben").id_gt(10).age_not_nil.username_or_name_ends_with("ben").scope(:find).should == {:conditions => "((users.username LIKE '%ben') OR (users.name LIKE '%ben')) AND ((users.age IS NOT NULL) AND ((users.id > 10) AND (users.username LIKE 'ben%')))"} end it "should play nice with scopes on associations" do lambda { User.name_or_company_name_like("ben") }.should_not raise_error(Searchlogic::NamedScopes::OrConditions::NoConditionSpecifiedError) User.name_or_company_name_like("ben").proxy_options.should == {:joins => :company, :conditions => "(users.name LIKE '%ben%') OR (companies.name LIKE '%ben%')"} User.company_name_or_name_like("ben").proxy_options.should == {:joins => :company, :conditions => "(companies.name LIKE '%ben%') OR (users.name LIKE '%ben%')"} User.company_name_or_company_description_like("ben").proxy_options.should == {:joins =>[:company], :conditions => "(companies.name LIKE '%ben%') OR (companies.description LIKE '%ben%')"} end it "should not get confused by the 'or' in find_or_create_by_* methods" do User.create(:name => "Fred") User.find_or_create_by_name("Fred").should be_a_kind_of User end it "should not get confused by the 'or' in compound find_or_create_by_* methods" do User.create(:name => "Fred", :username => "fredb") User.find_or_create_by_name_and_username("Fred", "fredb").should be_a_kind_of User end it "should work with User.search(conditions) method" do User.search(:username_or_name_like => 'ben').proxy_options.should == {:conditions => "(users.username LIKE '%ben%') OR (users.name LIKE '%ben%')"} end it "should convert types properly when used with User.search(conditions) method" do User.search(:id_or_age_lte => '10').proxy_options.should == {:conditions => "(users.id <= 10) OR (users.age <= 10)"} end end