Skip to content

Commit

Permalink
Merge pull request kaminari#449 from bricker/count-arity
Browse files Browse the repository at this point in the history
Arity on #count with rails 4.1.0
  • Loading branch information
amatsuda committed Nov 9, 2013
2 parents 315b012 + 2abd905 commit ecc4438
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
8 changes: 6 additions & 2 deletions lib/kaminari/models/active_record_relation_methods.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,16 @@ def total_count(column_name = :all, options = {}) #:nodoc:
# Remove includes only if they are irrelevant
c = c.except(:includes) unless references_eager_loaded_tables?

# Rails 4.1 removes the `options` argument from AR::Relation#count
args = [column_name]
args << options if ActiveRecord::VERSION::STRING < '4.1.0'

# .group returns an OrderdHash that responds to #count
c = c.count(column_name, options)
c = c.count(*args)
if c.is_a?(Hash) || c.is_a?(ActiveSupport::OrderedHash)
c.count
else
c.respond_to?(:count) ? c.count(column_name, options) : c
c.respond_to?(:count) ? c.count(*args) : c
end
end
end
Expand Down
24 changes: 19 additions & 5 deletions spec/models/active_record/active_record_relation_methods_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@
context "when the scope use conditions on includes" do
it "should keep includes and successfully count the results" do
# Only @author and @author2 have books titled with the title00x partern
User.includes(:books_authored).where("books.title LIKE 'title00%'").page(1).total_count.should == 2
if ActiveRecord::VERSION::STRING >= "4.1.0"
User.includes(:books_authored).references(:books).where("books.title LIKE 'title00%'").page(1).total_count.should == 2
else
User.includes(:books_authored).where("books.title LIKE 'title00%'").page(1).total_count.should == 2
end
end
end

Expand All @@ -34,14 +38,24 @@
end

context "when total_count receives options" do
it "should return a distinct total count" do
User.page(1).total_count(:name, :distinct => true).should == 4
it "should return a distinct total count for rails ~> 4.0.0" do
if ActiveRecord::VERSION::STRING < "4.1.0"
User.page(1).total_count(:name, :distinct => true).should == 4
end
end

it "should ignore the options for rails 4.1+" do
if ActiveRecord::VERSION::STRING >= "4.1.0"
User.page(1).total_count(:name, :distinct => true).should == 7
end
end
end

context "when count receives options" do
it "should return a distinct set by column" do
User.page(1).count(:name, :distinct => true).should == 4
it "should return a distinct set by column for rails ~> 4.0.0" do
if ActiveRecord::VERSION::STRING < "4.1.0"
User.page(1).count(:name, :distinct => true).should == 4
end
end
end

Expand Down

0 comments on commit ecc4438

Please sign in to comment.