1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activerecord/test/cases/relation/delegation_test.rb
Akira Matsuda 48b10134a5 Load test fixtures where data are needed
Without this, some tests here were not actually testing anything.
2013-11-11 19:53:54 +09:00

100 lines
2.5 KiB
Ruby

require 'cases/helper'
require 'models/post'
require 'models/comment'
module ActiveRecord
class DelegationTest < ActiveRecord::TestCase
fixtures :posts
def assert_responds(target, method)
assert target.respond_to?(method)
assert_nothing_raised do
method_arity = target.to_a.method(method).arity
if method_arity.zero?
target.send(method)
elsif method_arity < 0
if method == :shuffle!
target.send(method)
else
target.send(method, 1)
end
else
raise NotImplementedError
end
end
end
end
class DelegationAssociationTest < DelegationTest
def target
Post.first.comments
end
[:map, :collect].each do |method|
test "##{method} is delgated" do
assert_responds(target, method)
assert_equal(target.pluck(:body), target.send(method) {|post| post.body })
end
test "##{method}! is not delgated" do
assert_deprecated do
assert_responds(target, "#{method}!")
end
end
end
[:compact!, :flatten!, :reject!, :reverse!, :rotate!,
:shuffle!, :slice!, :sort!, :sort_by!].each do |method|
test "##{method} delegation is deprecated" do
assert_deprecated do
assert_responds(target, method)
end
end
end
[:select!, :uniq!].each do |method|
test "##{method} is implemented" do
assert_responds(target, method)
end
end
end
class DelegationRelationTest < DelegationTest
fixtures :comments
def target
Comment.where.not(body: nil)
end
[:map, :collect].each do |method|
test "##{method} is delgated" do
assert_responds(target, method)
assert_equal(target.pluck(:body), target.send(method) {|post| post.body })
end
test "##{method}! is not delgated" do
assert_deprecated do
assert_responds(target, "#{method}!")
end
end
end
[:compact!, :flatten!, :reject!, :reverse!, :rotate!,
:shuffle!, :slice!, :sort!, :sort_by!].each do |method|
test "##{method} delegation is deprecated" do
assert_deprecated do
assert_responds(target, method)
end
end
end
[:select!, :uniq!].each do |method|
test "##{method} triggers an immutable error" do
assert_raises ActiveRecord::ImmutableRelation do
assert_responds(target, method)
end
end
end
end
end