aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/cases/relation/where_test.rb
blob: 0529945532f4e16bca24e7b229c95f3dbd772af9 (plain) (tree)
1
2
3
4
5
6
7
8

                      

                        


                                          
                           






                                                            





                                                                 



                                                                        











                                                     
























                                                           

     
require "cases/helper"
require 'models/post'
require 'models/comment'
require 'models/edge'

module ActiveRecord
  class WhereTest < ActiveRecord::TestCase
    fixtures :posts, :edges

    def test_where_error
      assert_raises(ActiveRecord::StatementInvalid) do
        Post.where(:id => { 'posts.author_id' => 10 }).first
      end
    end

    def test_where_error_with_hash
      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_empty_hash_and_no_foreign_key
      assert_equal 0, Edge.where(:sink => {}).count
    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
  end
end