class DefaultScopingTest

Public Instance Methods

test_create_attribute_overwrites_default_scoping() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 303
def test_create_attribute_overwrites_default_scoping
  assert_equal "David", PoorDeveloperCalledJamis.create!(name: "David").name
  assert_equal 200000, PoorDeveloperCalledJamis.create!(name: "David", salary: 200000).salary
end
test_create_attribute_overwrites_default_values() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 308
def test_create_attribute_overwrites_default_values
  assert_nil PoorDeveloperCalledJamis.create!(salary: nil).salary
  assert_equal 50000, PoorDeveloperCalledJamis.create!(name: "David").salary
end
test_create_with_empty_hash_will_not_reset() click to toggle source

FIXME: I don't know if this is desired behavior, but it is *today's* behavior.

# File activerecord/test/cases/scoping/default_scoping_test.rb, line 359
def test_create_with_empty_hash_will_not_reset
  jamis = PoorDeveloperCalledJamis.create_with(name: "Aaron").create_with({}).new
  assert_equal "Aaron", jamis.name
end
test_create_with_merge() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 335
def test_create_with_merge
  aaron = PoorDeveloperCalledJamis.create_with(name: "foo", salary: 20).merge(
    PoorDeveloperCalledJamis.create_with(name: "Aaron")).new
  assert_equal 20, aaron.salary
  assert_equal "Aaron", aaron.name

  aaron = PoorDeveloperCalledJamis.create_with(name: "foo", salary: 20).
                                   create_with(name: "Aaron").new
  assert_equal 20, aaron.salary
  assert_equal "Aaron", aaron.name
end
test_create_with_reset() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 352
def test_create_with_reset
  jamis = PoorDeveloperCalledJamis.create_with(name: "Aaron").create_with(nil).new
  assert_equal "Jamis", jamis.name
end
test_create_with_using_both_string_and_symbol() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 347
def test_create_with_using_both_string_and_symbol
  jamis = PoorDeveloperCalledJamis.create_with(name: "foo").create_with("name" => "Aaron").new
  assert_equal "Aaron", jamis.name
end
test_default_scope() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 15
def test_default_scope
  expected = Developer.all.merge!(order: "salary DESC").to_a.collect(&:salary)
  received = DeveloperOrderedBySalary.all.collect(&:salary)
  assert_equal expected, received
end
test_default_scope_as_block_referencing_scope() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 29
def test_default_scope_as_block_referencing_scope
  assert_equal [developers(:david).becomes(LazyBlockReferencingScopeDeveloperCalledDavid)], LazyBlockReferencingScopeDeveloperCalledDavid.all
end
test_default_scope_as_class_method() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 21
def test_default_scope_as_class_method
  assert_equal [developers(:david).becomes(ClassMethodDeveloperCalledDavid)], ClassMethodDeveloperCalledDavid.all
end
test_default_scope_as_class_method_referencing_scope() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 25
def test_default_scope_as_class_method_referencing_scope
  assert_equal [developers(:david).becomes(ClassMethodReferencingScopeDeveloperCalledDavid)], ClassMethodReferencingScopeDeveloperCalledDavid.all
end
test_default_scope_attribute() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 313
def test_default_scope_attribute
  jamis = PoorDeveloperCalledJamis.new(name: "David")
  assert_equal 50000, jamis.salary
end
test_default_scope_find_last() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 428
def test_default_scope_find_last
  assert DeveloperOrderedBySalary.count > 1, "need more than one row for test"

  lowest_salary_dev = DeveloperOrderedBySalary.find(developers(:poor_jamis).id)
  assert_equal lowest_salary_dev, DeveloperOrderedBySalary.last
end
test_default_scope_include_with_count() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 435
def test_default_scope_include_with_count
  d = DeveloperWithIncludes.create!
  d.audit_logs.create! message: "foo"

  assert_equal 1, DeveloperWithIncludes.where(audit_logs: { message: "foo" }).count
end
test_default_scope_is_unscoped_on_create() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 50
def test_default_scope_is_unscoped_on_create
  assert_nil DeveloperCalledJamis.unscoped.create!.name
end
test_default_scope_is_unscoped_on_find() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 45
def test_default_scope_is_unscoped_on_find
  assert_equal 1, DeveloperCalledDavid.count
  assert_equal 11, DeveloperCalledDavid.unscoped.count
end
test_default_scope_order_ignored_by_aggregations() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 424
def test_default_scope_order_ignored_by_aggregations
  assert_equal DeveloperOrderedBySalary.all.count, DeveloperOrderedBySalary.count
end
test_default_scope_select_ignored_by_aggregations() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 415
def test_default_scope_select_ignored_by_aggregations
  assert_equal DeveloperWithSelect.all.to_a.count, DeveloperWithSelect.count
end
test_default_scope_select_ignored_by_grouped_aggregations() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 419
def test_default_scope_select_ignored_by_grouped_aggregations
  assert_equal Hash[Developer.all.group_by(&:salary).map { |s, d| [s, d.count] }],
               DeveloperWithSelect.group(:salary).count
end
test_default_scope_with_block() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 37
def test_default_scope_with_block
  assert_equal [developers(:david).becomes(LazyBlockDeveloperCalledDavid)], LazyBlockDeveloperCalledDavid.all
end
test_default_scope_with_callable() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 41
def test_default_scope_with_callable
  assert_equal [developers(:david).becomes(CallableDeveloperCalledDavid)], CallableDeveloperCalledDavid.all
end
test_default_scope_with_conditions_hash() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 59
def test_default_scope_with_conditions_hash
  assert_equal Developer.where(name: "Jamis").map(&:id).sort, DeveloperCalledJamis.all.map(&:id).sort
  assert_equal "Jamis", DeveloperCalledJamis.create!.name
end
test_default_scope_with_conditions_string() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 54
def test_default_scope_with_conditions_string
  assert_equal Developer.where(name: "David").map(&:id).sort, DeveloperCalledDavid.all.map(&:id).sort
  assert_nil DeveloperCalledDavid.create!.name
end
test_default_scope_with_inheritance() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 64
def test_default_scope_with_inheritance
  wheres = InheritedPoorDeveloperCalledJamis.all.where_values_hash
  assert_equal "Jamis", wheres["name"]
  assert_equal 50000,   wheres["salary"]
end
test_default_scope_with_joins() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 375
def test_default_scope_with_joins
  assert_equal Comment.where(post_id: SpecialPostWithDefaultScope.pluck(:id)).count,
               Comment.joins(:special_post_with_default_scope).count
  assert_equal Comment.where(post_id: Post.pluck(:id)).count,
               Comment.joins(:post).count
end
test_default_scope_with_lambda() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 33
def test_default_scope_with_lambda
  assert_equal [developers(:david).becomes(LazyLambdaDeveloperCalledDavid)], LazyLambdaDeveloperCalledDavid.all
end
test_default_scope_with_module_includes() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 70
def test_default_scope_with_module_includes
  wheres = ModuleIncludedPoorDeveloperCalledJamis.all.where_values_hash
  assert_equal "Jamis", wheres["name"]
  assert_equal 50000,   wheres["salary"]
end
test_default_scope_with_multiple_calls() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 76
def test_default_scope_with_multiple_calls
  wheres = MultiplePoorDeveloperCalledJamis.all.where_values_hash
  assert_equal "Jamis", wheres["name"]
  assert_equal 50000,   wheres["salary"]
end
test_default_scope_with_references_works_through_association() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 448
def test_default_scope_with_references_works_through_association
  post = PostWithCommentWithDefaultScopeReferencesAssociation.create!(title: "Hello World", body: "Here we go.")
  comment = post.comment_with_default_scope_references_associations.create!(body: "Great post.", developer_id: Developer.first.id)
  assert_equal comment, post.first_comment
end
test_default_scope_with_references_works_through_collection_association() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 442
def test_default_scope_with_references_works_through_collection_association
  post = PostWithCommentWithDefaultScopeReferencesAssociation.create!(title: "Hello World", body: "Here we go.")
  comment = post.comment_with_default_scope_references_associations.create!(body: "Great post.", developer_id: Developer.first.id)
  assert_equal comment, post.comment_with_default_scope_references_associations.to_a.first
end
test_default_scope_with_references_works_with_find_by() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 454
def test_default_scope_with_references_works_with_find_by
  post = PostWithCommentWithDefaultScopeReferencesAssociation.create!(title: "Hello World", body: "Here we go.")
  comment = post.comment_with_default_scope_references_associations.create!(body: "Great post.", developer_id: Developer.first.id)
  assert_equal comment, CommentWithDefaultScopeReferencesAssociation.find_by(id: comment.id)
end
test_joins_not_affected_by_scope_other_than_default_or_unscoped() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 382
def test_joins_not_affected_by_scope_other_than_default_or_unscoped
  without_scope_on_post = Comment.joins(:post).to_a
  with_scope_on_post = nil
  Post.where(id: [1, 5, 6]).scoping do
    with_scope_on_post = Comment.joins(:post).to_a
  end

  assert_equal with_scope_on_post, without_scope_on_post
end
test_order_after_reorder_combines_orders() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 94
def test_order_after_reorder_combines_orders
  expected = Developer.order("name DESC, id DESC").collect { |dev| [dev.name, dev.id] }
  received = Developer.order("name ASC").reorder("name DESC").order("id DESC").collect { |dev| [dev.name, dev.id] }
  assert_equal expected, received
end
test_order_in_default_scope_should_not_prevail() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 297
def test_order_in_default_scope_should_not_prevail
  expected = Developer.all.merge!(order: "salary desc").to_a.collect(&:salary)
  received = DeveloperOrderedBySalary.all.merge!(order: "salary").to_a.collect(&:salary)
  assert_equal expected, received
end
test_order_to_unscope_reordering() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 194
def test_order_to_unscope_reordering
  scope = DeveloperOrderedBySalary.order("salary DESC, name ASC").reverse_order.unscope(:order)
  assert !/order/i.match?(scope.to_sql)
end
test_reorder_overrides_default_scope_order() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 88
def test_reorder_overrides_default_scope_order
  expected = Developer.order("name DESC").collect(&:name)
  received = DeveloperOrderedBySalary.reorder("name DESC").collect(&:name)
  assert_equal expected, received
end
test_scope_composed_by_limit_and_then_offset_is_equal_to_scope_composed_by_offset_and_then_limit() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 329
def test_scope_composed_by_limit_and_then_offset_is_equal_to_scope_composed_by_offset_and_then_limit
  posts_limit_offset = Post.limit(3).offset(2)
  posts_offset_limit = Post.offset(2).limit(3)
  assert_equal posts_limit_offset, posts_offset_limit
end
test_scope_overwrites_default() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 82
def test_scope_overwrites_default
  expected = Developer.all.merge!(order: "salary DESC, name DESC").to_a.collect(&:name)
  received = DeveloperOrderedBySalary.by_name.to_a.collect(&:name)
  assert_equal expected, received
end
test_sti_association_with_unscoped_not_affected_by_default_scope() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 397
def test_sti_association_with_unscoped_not_affected_by_default_scope
  post = posts(:thinking)
  comments = [comments(:does_it_hurt)]

  post.special_comments.update_all(deleted_at: Time.now)

  assert_raises(ActiveRecord::RecordNotFound) { Post.joins(:special_comments).find(post.id) }
  assert_equal [], post.special_comments

  SpecialComment.unscoped do
    assert_equal post, Post.joins(:special_comments).find(post.id)
    assert_equal comments, Post.joins(:special_comments).find(post.id).special_comments
    assert_equal comments, Post.eager_load(:special_comments).find(post.id).special_comments
    assert_equal comments, Post.includes(:special_comments).find(post.id).special_comments
    assert_equal comments, Post.preload(:special_comments).find(post.id).special_comments
  end
end
test_sti_conditions_are_not_carried_in_default_scope() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 483
def test_sti_conditions_are_not_carried_in_default_scope
  ConditionalStiPost.create! body: ""
  SubConditionalStiPost.create! body: ""
  SubConditionalStiPost.create! title: "Hello world", body: ""

  assert_equal 2, ConditionalStiPost.count
  assert_equal 2, ConditionalStiPost.all.to_a.size
  assert_equal 3, ConditionalStiPost.unscope(where: :title).to_a.size

  assert_equal 1, SubConditionalStiPost.count
  assert_equal 1, SubConditionalStiPost.all.to_a.size
  assert_equal 2, SubConditionalStiPost.unscope(where: :title).to_a.size
end
test_unscope_after_reordering_and_combining() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 106
def test_unscope_after_reordering_and_combining
  expected = Developer.order("id DESC, name DESC").collect { |dev| [dev.name, dev.id] }
  received = DeveloperOrderedBySalary.reorder("name DESC").unscope(:order).order("id DESC, name DESC").collect { |dev| [dev.name, dev.id] }
  assert_equal expected, received

  expected_2 = Developer.all.collect { |dev| [dev.name, dev.id] }
  received_2 = Developer.order("id DESC, name DESC").unscope(:order).collect { |dev| [dev.name, dev.id] }
  assert_equal expected_2, received_2

  expected_3 = Developer.all.collect { |dev| [dev.name, dev.id] }
  received_3 = Developer.reorder("name DESC").unscope(:order).collect { |dev| [dev.name, dev.id] }
  assert_equal expected_3, received_3
end
test_unscope_and_scope() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 239
def test_unscope_and_scope
  developer_klass = Class.new(Developer) do
    scope :by_name, -> name { unscope(where: :name).where(name: name) }
  end

  expected = developer_klass.where(name: "Jamis").collect { |dev| [dev.name, dev.id] }
  received = developer_klass.where(name: "David").by_name("Jamis").collect { |dev| [dev.name, dev.id] }
  assert_equal expected, received
end
test_unscope_comparison_where_clauses() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 150
def test_unscope_comparison_where_clauses
  # unscoped for WHERE (`developers`.`id` <= 2)
  expected = Developer.order("salary DESC").collect(&:name)
  received = DeveloperOrderedBySalary.where(id: -Float::INFINITY..2).unscope(where: :id).collect { |dev| dev.name }
  assert_equal expected, received

  # unscoped for WHERE (`developers`.`id` < 2)
  expected = Developer.order("salary DESC").collect(&:name)
  received = DeveloperOrderedBySalary.where(id: -Float::INFINITY...2).unscope(where: :id).collect { |dev| dev.name }
  assert_equal expected, received
end
test_unscope_errors_with_invalid_value() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 249
def test_unscope_errors_with_invalid_value
  assert_raises(ArgumentError) do
    Developer.includes(:projects).where(name: "Jamis").unscope(:stupidly_incorrect_value)
  end

  assert_raises(ArgumentError) do
    Developer.all.unscope(:includes, :select, :some_broken_value)
  end

  assert_raises(ArgumentError) do
    Developer.order("name DESC").reverse_order.unscope(:reverse_order)
  end

  assert_raises(ArgumentError) do
    Developer.order("name DESC").where(name: "Jamis").unscope()
  end
end
test_unscope_errors_with_non_symbol_or_hash_arguments() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 277
def test_unscope_errors_with_non_symbol_or_hash_arguments
  assert_raises(ArgumentError) do
    Developer.where(name: "Jamis").limit(3).unscope("limit")
  end

  assert_raises(ArgumentError) do
    Developer.select("id").unscope("select")
  end

  assert_raises(ArgumentError) do
    Developer.select("id").unscope(5)
  end
end
test_unscope_errors_with_non_where_hash_keys() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 267
def test_unscope_errors_with_non_where_hash_keys
  assert_raises(ArgumentError) do
    Developer.where(name: "Jamis").limit(4).unscope(limit: 4)
  end

  assert_raises(ArgumentError) do
    Developer.where(name: "Jamis").unscope("where" => :name)
  end
end
test_unscope_having() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 233
def test_unscope_having
  expected = DeveloperOrderedBySalary.all.collect(&:name)
  received = DeveloperOrderedBySalary.having("name IN ('Jamis', 'David')").unscope(:having).collect(&:name)
  assert_equal expected, received
end
test_unscope_includes() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 227
def test_unscope_includes
  expected = Developer.all.collect(&:name)
  received = Developer.includes(:projects).select(:id).unscope(:includes, :select).collect(&:name)
  assert_equal expected, received
end
test_unscope_joins_and_select_on_developers_projects() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 221
def test_unscope_joins_and_select_on_developers_projects
  expected = Developer.all.collect(&:name)
  received = Developer.joins("JOIN developers_projects ON id = developer_id").select(:id).unscope(:joins, :select).collect(&:name)
  assert_equal expected, received
end
test_unscope_merging() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 291
def test_unscope_merging
  merged = Developer.where(name: "Jamis").merge(Developer.unscope(:where))
  assert merged.where_clause.empty?
  assert !merged.where(name: "Jon").where_clause.empty?
end
test_unscope_multiple_where_clauses() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 162
def test_unscope_multiple_where_clauses
  expected = Developer.order("salary DESC").collect(&:name)
  received = DeveloperOrderedBySalary.where(name: "Jamis").where(id: 1).unscope(where: [:name, :id]).collect(&:name)
  assert_equal expected, received
end
test_unscope_offset() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 215
def test_unscope_offset
  expected = Developer.all.collect(&:name)
  received = Developer.offset(5).unscope(:offset).collect(&:name)
  assert_equal expected, received
end
test_unscope_overrides_default_scope() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 100
def test_unscope_overrides_default_scope
  expected = Developer.all.collect { |dev| [dev.name, dev.id] }
  received = DeveloperCalledJamis.unscope(:where).collect { |dev| [dev.name, dev.id] }
  assert_equal expected, received
end
test_unscope_reverse_order() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 199
def test_unscope_reverse_order
  expected = Developer.all.collect(&:name)
  received = Developer.order("salary DESC").reverse_order.unscope(:order).collect(&:name)
  assert_equal expected, received
end
test_unscope_select() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 205
def test_unscope_select
  expected = Developer.order("salary ASC").collect(&:name)
  received = Developer.order("salary DESC").reverse_order.select(:name).unscope(:select).collect(&:name)
  assert_equal expected, received

  expected_2 = Developer.all.collect(&:id)
  received_2 = Developer.select(:name).unscope(:select).collect(&:id)
  assert_equal expected_2, received_2
end
test_unscope_string_where_clauses_involved() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 168
def test_unscope_string_where_clauses_involved
  dev_relation = Developer.order("salary DESC").where("created_at > ?", 1.year.ago)
  expected = dev_relation.collect(&:name)

  dev_ordered_relation = DeveloperOrderedBySalary.where(name: "Jamis").where("created_at > ?", 1.year.ago)
  received = dev_ordered_relation.unscope(where: [:name]).collect(&:name)

  assert_equal expected, received
end
test_unscope_with_grouping_attributes() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 178
def test_unscope_with_grouping_attributes
  expected = Developer.order("salary DESC").collect(&:name)
  received = DeveloperOrderedBySalary.group(:name).unscope(:group).collect(&:name)
  assert_equal expected, received

  expected_2 = Developer.order("salary DESC").collect(&:name)
  received_2 = DeveloperOrderedBySalary.group("name").unscope(:group).collect(&:name)
  assert_equal expected_2, received_2
end
test_unscope_with_limit_in_query() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 188
def test_unscope_with_limit_in_query
  expected = Developer.order("salary DESC").collect(&:name)
  received = DeveloperOrderedBySalary.limit(1).unscope(:limit).collect(&:name)
  assert_equal expected, received
end
test_unscope_with_where_attributes() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 120
def test_unscope_with_where_attributes
  expected = Developer.order("salary DESC").collect(&:name)
  received = DeveloperOrderedBySalary.where(name: "David").unscope(where: :name).collect(&:name)
  assert_equal expected, received

  expected_2 = Developer.order("salary DESC").collect(&:name)
  received_2 = DeveloperOrderedBySalary.select("id").where("name" => "Jamis").unscope({ where: :name }, :select).collect(&:name)
  assert_equal expected_2, received_2

  expected_3 = Developer.order("salary DESC").collect(&:name)
  received_3 = DeveloperOrderedBySalary.select("id").where("name" => "Jamis").unscope(:select, :where).collect(&:name)
  assert_equal expected_3, received_3

  expected_4 = Developer.order("salary DESC").collect(&:name)
  received_4 = DeveloperOrderedBySalary.where.not("name" => "Jamis").unscope(where: :name).collect(&:name)
  assert_equal expected_4, received_4

  expected_5 = Developer.order("salary DESC").collect(&:name)
  received_5 = DeveloperOrderedBySalary.where.not("name" => ["Jamis", "David"]).unscope(where: :name).collect(&:name)
  assert_equal expected_5, received_5

  expected_6 = Developer.order("salary DESC").collect(&:name)
  received_6 = DeveloperOrderedBySalary.where(Developer.arel_table["name"].eq("David")).unscope(where: :name).collect(&:name)
  assert_equal expected_6, received_6

  expected_7 = Developer.order("salary DESC").collect(&:name)
  received_7 = DeveloperOrderedBySalary.where(Developer.arel_table[:name].eq("David")).unscope(where: :name).collect(&:name)
  assert_equal expected_7, received_7
end
test_unscoped_with_joins_should_not_have_default_scope() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 392
def test_unscoped_with_joins_should_not_have_default_scope
  assert_equal SpecialPostWithDefaultScope.unscoped { Comment.joins(:special_post_with_default_scope).to_a },
               Comment.joins(:post).to_a
end
test_unscoped_with_named_scope_should_not_have_default_scope() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 364
def test_unscoped_with_named_scope_should_not_have_default_scope
  assert_equal [DeveloperCalledJamis.find(developers(:poor_jamis).id)], DeveloperCalledJamis.poor

  assert_includes DeveloperCalledJamis.unscoped.poor, developers(:david).becomes(DeveloperCalledJamis)

  assert_equal 11, DeveloperCalledJamis.unscoped.length
  assert_equal 1,  DeveloperCalledJamis.poor.length
  assert_equal 10, DeveloperCalledJamis.unscoped.poor.length
  assert_equal 10, DeveloperCalledJamis.unscoped { DeveloperCalledJamis.poor }.length
end
test_where_attribute() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 318
def test_where_attribute
  aaron = PoorDeveloperCalledJamis.where(salary: 20).new(name: "Aaron")
  assert_equal 20, aaron.salary
  assert_equal "Aaron", aaron.name
end
test_where_attribute_merge() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 324
def test_where_attribute_merge
  aaron = PoorDeveloperCalledJamis.where(name: "foo").new(name: "Aaron")
  assert_equal "Aaron", aaron.name
end
test_with_abstract_class_scope_should_be_executed_in_correct_context() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 497
def test_with_abstract_class_scope_should_be_executed_in_correct_context
  vegetarian_pattern, gender_pattern = if current_adapter?(:Mysql2Adapter)
    [/`lions`.`is_vegetarian`/, /`lions`.`gender`/]
  elsif current_adapter?(:OracleAdapter)
    [/"LIONS"."IS_VEGETARIAN"/, /"LIONS"."GENDER"/]
  else
    [/"lions"."is_vegetarian"/, /"lions"."gender"/]
  end

  assert_match vegetarian_pattern, Lion.all.to_sql
  assert_match gender_pattern, Lion.female.to_sql
end
test_with_abstract_class_where_clause_should_not_be_duplicated() click to toggle source
# File activerecord/test/cases/scoping/default_scoping_test.rb, line 478
def test_with_abstract_class_where_clause_should_not_be_duplicated
  scope = Bus.all
  assert_equal scope.where_clause.ast.children.length, 1
end