提交 9cc2bf69 编写于 作者: C chrisfinne 提交者: Carlos Antonio da Silva

Allow blocks for count with ActiveRecord::Relation. Document and test that sum allows blocks

上级 6f1d9d00
...@@ -16,9 +16,16 @@ module Calculations ...@@ -16,9 +16,16 @@ module Calculations
# #
# Person.count(:age, distinct: true) # Person.count(:age, distinct: true)
# # => counts the number of different age values # # => counts the number of different age values
#
# Person.where("age > 26").count { |person| gender == 'female' }
# # => queries people where "age > 26" then count the loaded results filtering by gender
def count(column_name = nil, options = {}) def count(column_name = nil, options = {})
column_name, options = nil, column_name if column_name.is_a?(Hash) if block_given?
calculate(:count, column_name, options) self.to_a.count { |*block_args| yield(*block_args) }
else
column_name, options = nil, column_name if column_name.is_a?(Hash)
calculate(:count, column_name, options)
end
end end
# Calculates the average value on a given column. Returns +nil+ if there's # Calculates the average value on a given column. Returns +nil+ if there's
...@@ -52,9 +59,13 @@ def maximum(column_name, options = {}) ...@@ -52,9 +59,13 @@ def maximum(column_name, options = {})
# +calculate+ for examples with options. # +calculate+ for examples with options.
# #
# Person.sum('age') # => 4562 # Person.sum('age') # => 4562
# # => returns the total sum of all people's age
#
# Person.where('age > 100').sum { |person| person.age - 100 }
# # queries people where "age > 100" then perform a sum calculation with the block returns
def sum(*args) def sum(*args)
if block_given? if block_given?
self.to_a.sum(*args) {|*block_args| yield(*block_args)} self.to_a.sum(*args) { |*block_args| yield(*block_args) }
else else
calculate(:sum, *args) calculate(:sum, *args)
end end
......
...@@ -376,6 +376,22 @@ def test_count_with_from_option ...@@ -376,6 +376,22 @@ def test_count_with_from_option
Company.where(:type => "Firm").from('companies').count(:type) Company.where(:type => "Firm").from('companies').count(:type)
end end
def test_count_with_block_acts_as_array
accounts = Account.where('id > 0')
assert_equal Account.count, accounts.count { true }
assert_equal 0, accounts.count { false }
assert_equal Account.where('credit_limit > 50').size, accounts.count { |account| account.credit_limit > 50 }
assert_equal Account.count, Account.count { true }
assert_equal 0, Account.count { false }
end
def test_sum_with_block_acts_as_array
accounts = Account.where('id > 0')
assert_equal Account.sum(:credit_limit), accounts.sum { |account| account.credit_limit }
assert_equal Account.sum(:credit_limit) + Account.count, accounts.sum{ |account| account.credit_limit + 1 }
assert_equal 0, accounts.sum { |account| 0 }
end
def test_sum_with_from_option def test_sum_with_from_option
assert_equal Account.sum(:credit_limit), Account.from('accounts').sum(:credit_limit) assert_equal Account.sum(:credit_limit), Account.from('accounts').sum(:credit_limit)
assert_equal Account.where("credit_limit > 50").sum(:credit_limit), assert_equal Account.where("credit_limit > 50").sum(:credit_limit),
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册