aboutsummaryrefslogtreecommitdiffstats
path: root/spec/engines/memory/unit/relations/where_spec.rb
blob: c75fe10f1b74c59a16d549c8dd38b1abe2fa4832 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
require 'spec_helper'

module Arel
  describe Where do
    before do
      @relation = Array.new([
        [1, 'duck' ],
        [2, 'duck' ],
        [3, 'goose']
      ], [[:id, Attributes::Integer], [:name, Attributes::String]])
    end

    describe '#call' do
      it 'filters the relation with the provided predicate' do
        @relation                       \
          .where(@relation[:id].lt(3))  \
        .tap do |relation|
          rows = relation.call
          rows.length.should == 2
          rows.each_with_index do |row, i|
            row.relation.should == relation
            row.tuple.should == [i + 1, 'duck']
          end
        end
      end

      describe 'when filtering a where relation' do
        it 'further filters the already-filtered relation with the provided predicate' do
          @relation                       \
            .where(@relation[:id].gt(1))  \
            .where(@relation[:id].lt(3))  \
          .tap do |relation|
            rows = relation.call
            rows.length.should == 1
            row = rows.first
            row.relation.should == relation
            row.tuple.should == [2, 'duck']
          end
        end
      end
    end
  end
end