aboutsummaryrefslogtreecommitdiffstats
path: root/spec/engines/memory/integration/joins/cross_engine_spec.rb
blob: 091fd2ceda6b6a47db0261981556783d51759129 (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
44
45
46
47
48
49
50
51
require 'spec_helper'

module Arel
  describe Join do
    before do
      @users = Array.new([
        [1, 'bryan' ],
        [2, 'emilio' ],
        [3, 'nick']
      ], [[:id, Attributes::Integer], [:name, Attributes::String]])
      @photos = Table.new(:photos)
      @photos.delete
      @photos.insert(@photos[:id] => 1, @photos[:user_id] => 1, @photos[:camera_id] => 6)
      @photos.insert(@photos[:id] => 2, @photos[:user_id] => 2, @photos[:camera_id] => 42)
      # Oracle adapter returns database integers as Ruby integers and not strings
      # So does the FFI sqlite library
      db_int_return = @photos.project(@photos[:camera_id]).first.tuple.first
      @adapter_returns_integer = db_int_return.is_a?(String) ? false : true
    end

    describe 'when the in memory relation is on the left' do
      it 'joins across engines' do
        @users                                         \
          .join(@photos)                               \
            .on(@users[:id].eq(@photos[:user_id]))     \
          .project(@users[:name], @photos[:camera_id]) \
        .tap do |relation|
          relation.call.should == [
            Row.new(relation, ['bryan', @adapter_returns_integer ? 6 : '6']),
            Row.new(relation, ['emilio', @adapter_returns_integer ? 42 : '42'])
          ]
        end
      end
    end

    describe 'when the in memory relation is on the right' do
      it 'joins across engines' do
        @photos                                        \
          .join(@users)                                \
            .on(@users[:id].eq(@photos[:user_id]))     \
          .project(@users[:name], @photos[:camera_id]) \
        .tap do |relation|
          relation.call.should == [
            Row.new(relation, ['bryan', @adapter_returns_integer ? 6 : '6']),
            Row.new(relation, ['emilio', @adapter_returns_integer ? 42 : '42'])
          ]
        end
      end
    end
  end
end