aboutsummaryrefslogtreecommitdiffstats
path: root/spec/arel/engines/sql/unit/relations/join_spec.rb
blob: 2d23a06397e6eaa817b2420626ceb73b89c7c31e (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
require 'spec_helper'

module Arel
  describe Join do
    before do
      @relation1 = Table.new(:users)
      @relation2 = Table.new(:photos)
      @predicate1 = @relation1[:id].eq(@relation2[:user_id])

      @relation3 = Table.new(:users, :as => :super_users)
      @relation4 = Table.new(:photos, :as => :super_photos)

      @predicate2 = @relation3[:id].eq(@relation2[:user_id])
      @predicate3 = @relation3[:id].eq(@relation4[:user_id])
    end

    describe '#to_sql' do

      describe 'when joining with another relation' do
        it 'manufactures sql joining the two tables on the predicate' do
          sql = InnerJoin.new(@relation1, @relation2, @predicate1).to_sql

          adapter_is :mysql do
            sql.should be_like(%Q{
              SELECT `users`.`id`, `users`.`name`, `photos`.`id`, `photos`.`user_id`, `photos`.`camera_id`
              FROM `users`
                INNER JOIN `photos` ON `users`.`id` = `photos`.`user_id`
            })
          end

          adapter_is :oracle do
            sql.should be_like(%Q{
              SELECT "USERS"."ID", "USERS"."NAME", "PHOTOS"."ID", "PHOTOS"."USER_ID", "PHOTOS"."CAMERA_ID"
              FROM "USERS"
                INNER JOIN "PHOTOS" ON "USERS"."ID" = "PHOTOS"."USER_ID"
            })
          end

          adapter_is_not :mysql, :oracle do
            sql.should be_like(%Q{
              SELECT "users"."id", "users"."name", "photos"."id", "photos"."user_id", "photos"."camera_id"
              FROM "users"
                INNER JOIN "photos" ON "users"."id" = "photos"."user_id"
            })
          end
        end

        describe 'when joining with another relation with an aliased table' do
          it 'manufactures sql joining the two tables on the predicate respecting table aliasing' do
            sql = InnerJoin.new(@relation3, @relation2, @predicate2).to_sql

            adapter_is :mysql do
              sql.should be_like(%Q{
                SELECT `super_users`.`id`, `super_users`.`name`, `photos`.`id`, `photos`.`user_id`, `photos`.`camera_id`
                FROM `users` AS `super_users`
                  INNER JOIN `photos` ON `super_users`.`id` = `photos`.`user_id`
              })
            end

            adapter_is :oracle do
              sql.should be_like(%Q{
                SELECT "SUPER_USERS"."ID", "SUPER_USERS"."NAME", "PHOTOS"."ID", "PHOTOS"."USER_ID", "PHOTOS"."CAMERA_ID"
                FROM "USERS" "SUPER_USERS"
                  INNER JOIN "PHOTOS" ON "SUPER_USERS"."ID" = "PHOTOS"."USER_ID"
              })
            end

            adapter_is_not :mysql, :oracle do
              sql.should be_like(%Q{
                SELECT "super_users"."id", "super_users"."name", "photos"."id", "photos"."user_id", "photos"."camera_id"
                FROM "users" AS "super_users"
                  INNER JOIN "photos" ON "super_users"."id" = "photos"."user_id"
              })
            end
          end
        end

        describe 'when joining with two relations with aliased tables' do
          it 'manufactures sql joining the two tables on the predicate respecting table aliasing' do
            sql = InnerJoin.new(@relation3, @relation4, @predicate3).to_sql

            adapter_is :mysql do
              sql.should be_like(%Q{
                SELECT `super_users`.`id`, `super_users`.`name`, `super_photos`.`id`, `super_photos`.`user_id`, `super_photos`.`camera_id`
                FROM `users` AS `super_users`
                  INNER JOIN `photos` AS `super_photos` ON `super_users`.`id` = `super_photos`.`user_id`
              })
            end

            adapter_is :oracle do
              sql.should be_like(%Q{
                SELECT "SUPER_USERS"."ID", "SUPER_USERS"."NAME", "SUPER_PHOTOS"."ID", "SUPER_PHOTOS"."USER_ID", "SUPER_PHOTOS"."CAMERA_ID"
                FROM "USERS" "SUPER_USERS"
                  INNER JOIN "PHOTOS" "SUPER_PHOTOS" ON "SUPER_USERS"."ID" = "SUPER_PHOTOS"."USER_ID"
              })
            end

            adapter_is_not :mysql, :oracle do
              sql.should be_like(%Q{
                SELECT "super_users"."id", "super_users"."name", "super_photos"."id", "super_photos"."user_id", "super_photos"."camera_id"
                FROM "users" AS "super_users"
                  INNER JOIN "photos" AS "super_photos" ON "super_users"."id" = "super_photos"."user_id"
              })
            end
          end
        end

      end

      describe 'when joining with a string' do
        it "passes the string through to the where clause" do
          sql = StringJoin.new(@relation1, "INNER JOIN asdf ON fdsa").to_sql

          adapter_is :mysql do
            sql.should be_like(%Q{
              SELECT `users`.`id`, `users`.`name`
              FROM `users`
                INNER JOIN asdf ON fdsa
            })
          end

          adapter_is :oracle do
            sql.should be_like(%Q{
              SELECT "USERS"."ID", "USERS"."NAME"
              FROM "USERS"
                INNER JOIN asdf ON fdsa
            })
          end

          adapter_is_not :mysql, :oracle do
            sql.should be_like(%Q{
              SELECT "users"."id", "users"."name"
              FROM "users"
                INNER JOIN asdf ON fdsa
            })
          end
        end

        it "passes the string when there are multiple string joins" do
          relation = StringJoin.new(@relation1, "INNER JOIN asdf ON fdsa")
          relation = StringJoin.new(relation, "INNER JOIN lifo ON fifo")
          sql = StringJoin.new(relation, "INNER JOIN hatful ON hallow").to_sql

          adapter_is :mysql do
            sql.should be_like(%Q{
              SELECT `users`.`id`, `users`.`name`
              FROM `users`
                INNER JOIN asdf ON fdsa
                INNER JOIN lifo ON fifo
                INNER JOIN hatful ON hallow
            })
          end

          adapter_is :oracle do
            sql.should be_like(%Q{
              SELECT "USERS"."ID", "USERS"."NAME"
              FROM "USERS"
                INNER JOIN asdf ON fdsa
                INNER JOIN lifo ON fifo
                INNER JOIN hatful ON hallow
            })
          end

          adapter_is_not :mysql, :oracle do
            sql.should be_like(%Q{
              SELECT "users"."id", "users"."name"
              FROM "users"
                INNER JOIN asdf ON fdsa
                INNER JOIN lifo ON fifo
                INNER JOIN hatful ON hallow
            })
          end
        end

    end


    end
  end
end