diff options
| author | Bogdan Gusiev <agresso@gmail.com> | 2016-02-13 00:11:18 +0200 | 
|---|---|---|
| committer | Bogdan Gusiev <agresso@gmail.com> | 2016-02-13 10:32:51 +0200 | 
| commit | b67991614349d68e0d8ad489c8c84c3254ac847b (patch) | |
| tree | 92ca6e679d620987305e504c6e2f40dc668eef14 /activerecord/test | |
| parent | a88c5ff96de98b67c75a04711847b3a29c2df411 (diff) | |
| download | rails-b67991614349d68e0d8ad489c8c84c3254ac847b.tar.gz rails-b67991614349d68e0d8ad489c8c84c3254ac847b.tar.bz2 rails-b67991614349d68e0d8ad489c8c84c3254ac847b.zip  | |
Make ActiveRecord::Relation#last to reverse SQL order
instead of loading the relation into memory
Diffstat (limited to 'activerecord/test')
| -rw-r--r-- | activerecord/test/cases/finder_test.rb | 44 | 
1 files changed, 36 insertions, 8 deletions
diff --git a/activerecord/test/cases/finder_test.rb b/activerecord/test/cases/finder_test.rb index 75a74c052d..0004c98c8a 100644 --- a/activerecord/test/cases/finder_test.rb +++ b/activerecord/test/cases/finder_test.rb @@ -516,16 +516,44 @@ class FinderTest < ActiveRecord::TestCase      assert_equal Topic.order("title").to_a.last(2), Topic.order("title").last(2)    end -  def test_last_with_integer_and_order_should_not_use_sql_limit -    query = assert_sql { Topic.order("title").last(5).entries } -    assert_equal 1, query.length -    assert_no_match(/LIMIT/, query.first) +  def test_last_with_integer_and_order_should_use_sql_limit +    relation = Topic.order("title") +    assert_queries(1) { relation.last(5) } +    assert !relation.loaded?    end -  def test_last_with_integer_and_reorder_should_not_use_sql_limit -    query = assert_sql { Topic.reorder("title").last(5).entries } -    assert_equal 1, query.length -    assert_no_match(/LIMIT/, query.first) +  def test_last_with_integer_and_reorder_should_use_sql_limit +    relation = Topic.reorder("title") +    assert_queries(1) { relation.last(5) } +    assert !relation.loaded? +  end + +  def test_last_on_loaded_relation_should_not_use_sql +    relation  = Topic.limit(10).load +    assert_no_queries do +      relation.last +      relation.last(2) +    end +  end + +  def test_last_with_irreversible_order +    assert_deprecated do +      Topic.order("coalesce(author_name, title)").last +    end +  end   + +  def test_last_on_relation_with_limit_and_offset +    post = posts('sti_comments') + +    comments = post.comments.order(id: :asc) +    assert_equal comments.limit(2).to_a.last, comments.limit(2).last +    assert_equal comments.limit(2).to_a.last(2), comments.limit(2).last(2) +    assert_equal comments.limit(2).to_a.last(3), comments.limit(2).last(3) + +    comments = comments.offset(1) +    assert_equal comments.limit(2).to_a.last, comments.limit(2).last +    assert_equal comments.limit(2).to_a.last(2), comments.limit(2).last(2) +    assert_equal comments.limit(2).to_a.last(3), comments.limit(2).last(3)    end    def test_take_and_first_and_last_with_integer_should_return_an_array  | 
