mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
72d1663bc7
`User.where(id: [[1,2],3])` was equal to `User.where(id:[1, 2, 3])` in Rails 4.1.x but because of some refactoring in Arel this stopped working in 4.2.0. This fixes it in Rails. [Dan Olson & Cristian Bica]
229 lines
6.6 KiB
Ruby
229 lines
6.6 KiB
Ruby
require "cases/helper"
|
|
require 'models/author'
|
|
require 'models/price_estimate'
|
|
require 'models/treasure'
|
|
require 'models/post'
|
|
require 'models/comment'
|
|
require 'models/edge'
|
|
require 'models/topic'
|
|
require 'models/binary'
|
|
|
|
module ActiveRecord
|
|
class WhereTest < ActiveRecord::TestCase
|
|
fixtures :posts, :edges, :authors, :binaries
|
|
|
|
def test_where_copies_bind_params
|
|
author = authors(:david)
|
|
posts = author.posts.where('posts.id != 1')
|
|
joined = Post.where(id: posts)
|
|
|
|
assert_operator joined.length, :>, 0
|
|
|
|
joined.each { |post|
|
|
assert_equal author, post.author
|
|
assert_not_equal 1, post.id
|
|
}
|
|
end
|
|
|
|
def test_rewhere_on_root
|
|
assert_equal posts(:welcome), Post.rewhere(title: 'Welcome to the weblog').first
|
|
end
|
|
|
|
def test_belongs_to_shallow_where
|
|
author = Author.new
|
|
author.id = 1
|
|
|
|
assert_equal Post.where(author_id: 1).to_sql, Post.where(author: author).to_sql
|
|
end
|
|
|
|
def test_belongs_to_nil_where
|
|
assert_equal Post.where(author_id: nil).to_sql, Post.where(author: nil).to_sql
|
|
end
|
|
|
|
def test_belongs_to_array_value_where
|
|
assert_equal Post.where(author_id: [1,2]).to_sql, Post.where(author: [1,2]).to_sql
|
|
end
|
|
|
|
def test_belongs_to_nested_relation_where
|
|
expected = Post.where(author_id: Author.where(id: [1,2])).to_sql
|
|
actual = Post.where(author: Author.where(id: [1,2])).to_sql
|
|
|
|
assert_equal expected, actual
|
|
end
|
|
|
|
def test_belongs_to_nested_where
|
|
parent = Comment.new
|
|
parent.id = 1
|
|
|
|
expected = Post.where(comments: { parent_id: 1 }).joins(:comments)
|
|
actual = Post.where(comments: { parent: parent }).joins(:comments)
|
|
|
|
assert_equal expected.to_sql, actual.to_sql
|
|
end
|
|
|
|
def test_belongs_to_nested_where_with_relation
|
|
author = authors(:david)
|
|
|
|
expected = Author.where(id: author ).joins(:posts)
|
|
actual = Author.where(posts: { author_id: Author.where(id: author.id) }).joins(:posts)
|
|
|
|
assert_equal expected.to_a, actual.to_a
|
|
end
|
|
|
|
def test_polymorphic_shallow_where
|
|
treasure = Treasure.new
|
|
treasure.id = 1
|
|
|
|
expected = PriceEstimate.where(estimate_of_type: 'Treasure', estimate_of_id: 1)
|
|
actual = PriceEstimate.where(estimate_of: treasure)
|
|
|
|
assert_equal expected.to_sql, actual.to_sql
|
|
end
|
|
|
|
def test_polymorphic_nested_array_where
|
|
treasure = Treasure.new
|
|
treasure.id = 1
|
|
hidden = HiddenTreasure.new
|
|
hidden.id = 2
|
|
|
|
expected = PriceEstimate.where(estimate_of_type: 'Treasure', estimate_of_id: [treasure, hidden])
|
|
actual = PriceEstimate.where(estimate_of: [treasure, hidden])
|
|
|
|
assert_equal expected.to_sql, actual.to_sql
|
|
end
|
|
|
|
def test_polymorphic_nested_relation_where
|
|
expected = PriceEstimate.where(estimate_of_type: 'Treasure', estimate_of_id: Treasure.where(id: [1,2]))
|
|
actual = PriceEstimate.where(estimate_of: Treasure.where(id: [1,2]))
|
|
|
|
assert_equal expected.to_sql, actual.to_sql
|
|
end
|
|
|
|
def test_polymorphic_sti_shallow_where
|
|
treasure = HiddenTreasure.new
|
|
treasure.id = 1
|
|
|
|
expected = PriceEstimate.where(estimate_of_type: 'Treasure', estimate_of_id: 1)
|
|
actual = PriceEstimate.where(estimate_of: treasure)
|
|
|
|
assert_equal expected.to_sql, actual.to_sql
|
|
end
|
|
|
|
def test_polymorphic_nested_where
|
|
thing = Post.new
|
|
thing.id = 1
|
|
|
|
expected = Treasure.where(price_estimates: { thing_type: 'Post', thing_id: 1 }).joins(:price_estimates)
|
|
actual = Treasure.where(price_estimates: { thing: thing }).joins(:price_estimates)
|
|
|
|
assert_equal expected.to_sql, actual.to_sql
|
|
end
|
|
|
|
def test_polymorphic_sti_nested_where
|
|
treasure = HiddenTreasure.new
|
|
treasure.id = 1
|
|
|
|
expected = Treasure.where(price_estimates: { estimate_of_type: 'Treasure', estimate_of_id: 1 }).joins(:price_estimates)
|
|
actual = Treasure.where(price_estimates: { estimate_of: treasure }).joins(:price_estimates)
|
|
|
|
assert_equal expected.to_sql, actual.to_sql
|
|
end
|
|
|
|
def test_decorated_polymorphic_where
|
|
treasure_decorator = Struct.new(:model) do
|
|
def self.method_missing(method, *args, &block)
|
|
Treasure.send(method, *args, &block)
|
|
end
|
|
|
|
def is_a?(klass)
|
|
model.is_a?(klass)
|
|
end
|
|
|
|
def method_missing(method, *args, &block)
|
|
model.send(method, *args, &block)
|
|
end
|
|
end
|
|
|
|
treasure = Treasure.new
|
|
treasure.id = 1
|
|
decorated_treasure = treasure_decorator.new(treasure)
|
|
|
|
expected = PriceEstimate.where(estimate_of_type: 'Treasure', estimate_of_id: 1)
|
|
actual = PriceEstimate.where(estimate_of: decorated_treasure)
|
|
|
|
assert_equal expected.to_sql, actual.to_sql
|
|
end
|
|
|
|
def test_aliased_attribute
|
|
expected = Topic.where(heading: 'The First Topic')
|
|
actual = Topic.where(title: 'The First Topic')
|
|
|
|
assert_equal expected.to_sql, actual.to_sql
|
|
end
|
|
|
|
def test_where_error
|
|
assert_raises(ActiveRecord::StatementInvalid) do
|
|
Post.where(:id => { 'posts.author_id' => 10 }).first
|
|
end
|
|
end
|
|
|
|
def test_where_with_table_name
|
|
post = Post.first
|
|
assert_equal post, Post.where(:posts => { 'id' => post.id }).first
|
|
end
|
|
|
|
def test_where_with_table_name_and_empty_hash
|
|
assert_equal 0, Post.where(:posts => {}).count
|
|
end
|
|
|
|
def test_where_with_table_name_and_empty_array
|
|
assert_equal 0, Post.where(:id => []).count
|
|
end
|
|
|
|
def test_where_with_table_name_and_nested_empty_array
|
|
assert_deprecated do
|
|
assert_equal [], Post.where(:id => [[]]).to_a
|
|
end
|
|
end
|
|
|
|
def test_where_with_empty_hash_and_no_foreign_key
|
|
assert_equal 0, Edge.where(:sink => {}).count
|
|
end
|
|
|
|
def test_where_with_blank_conditions
|
|
[[], {}, nil, ""].each do |blank|
|
|
assert_equal 4, Edge.where(blank).order("sink_id").to_a.size
|
|
end
|
|
end
|
|
|
|
def test_where_with_integer_for_string_column
|
|
count = Post.where(:title => 0).count
|
|
assert_equal 0, count
|
|
end
|
|
|
|
def test_where_with_float_for_string_column
|
|
count = Post.where(:title => 0.0).count
|
|
assert_equal 0, count
|
|
end
|
|
|
|
def test_where_with_boolean_for_string_column
|
|
count = Post.where(:title => false).count
|
|
assert_equal 0, count
|
|
end
|
|
|
|
def test_where_with_decimal_for_string_column
|
|
count = Post.where(:title => BigDecimal.new(0)).count
|
|
assert_equal 0, count
|
|
end
|
|
|
|
def test_where_with_duration_for_string_column
|
|
count = Post.where(:title => 0.seconds).count
|
|
assert_equal 0, count
|
|
end
|
|
|
|
def test_where_with_integer_for_binary_column
|
|
count = Binary.where(:data => 0).count
|
|
assert_equal 0, count
|
|
end
|
|
end
|
|
end
|