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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
|
require 'helper'
class Arel::Visitors::ToSql
def last_column; Thread.current[:arel_visitors_to_sql_last_column]; end
end
module Arel
module Visitors
describe 'the to_sql visitor' do
before do
@visitor = ToSql.new Table.engine
@table = Table.new(:users)
@attr = @table[:id]
end
it 'can define a dispatch method' do
visited = false
viz = Class.new(Arel::Visitors::Visitor) {
define_method(:hello) do |node|
visited = true
end
def dispatch
{ Arel::Table => 'hello' }
end
}.new
viz.accept(@table)
assert visited, 'hello method was called'
end
it "should be thread safe around usage of last_column" do
visit_integer_column = Thread.new do
Thread.stop
@visitor.send(:visit_Arel_Attributes_Attribute, @attr)
end
sleep 0.2
@visitor.accept(@table[:name])
assert_equal(:string, @visitor.last_column.type)
visit_integer_column.run
visit_integer_column.join
assert_equal(:string, @visitor.last_column.type)
end
it 'should not quote sql literals' do
node = @table[Arel.star]
sql = @visitor.accept node
sql.must_be_like '"users".*'
end
it 'should visit named functions' do
function = Nodes::NamedFunction.new('omg', [Arel.star])
assert_equal 'omg(*)', @visitor.accept(function)
end
it 'should chain predications on named functions' do
function = Nodes::NamedFunction.new('omg', [Arel.star])
sql = @visitor.accept(function.eq(2))
sql.must_be_like %{ omg(*) = 2 }
end
it 'works with lists' do
function = Nodes::NamedFunction.new('omg', [Arel.star, Arel.star])
assert_equal 'omg(*, *)', @visitor.accept(function)
end
describe 'equality' do
it 'should handle false' do
sql = @visitor.accept Nodes::Equality.new(false, false)
sql.must_be_like %{ 'f' = 'f' }
end
it 'should use the column to quote' do
table = Table.new(:users)
sql = @visitor.accept Nodes::Equality.new(table[:id], '1-fooo')
sql.must_be_like %{ "users"."id" = 1 }
end
end
it "should visit string subclass" do
@visitor.accept(Class.new(String).new(":'("))
@visitor.accept(Class.new(Class.new(String)).new(":'("))
end
it "should visit_Class" do
@visitor.accept(DateTime).must_equal "'DateTime'"
end
it "should escape LIMIT" do
sc = Arel::Nodes::SelectStatement.new
sc.limit = Arel::Nodes::Limit.new("omg")
assert_match(/LIMIT 'omg'/, @visitor.accept(sc))
end
it "should visit_DateTime" do
@visitor.accept DateTime.now
end
it "should visit_Float" do
@visitor.accept 2.14
end
it "should visit_Not" do
sql = @visitor.accept Nodes::Not.new(Arel.sql("foo"))
sql.must_be_like "NOT (foo)"
end
it "should apply Not to the whole expression" do
node = Nodes::And.new [@attr.eq(10), @attr.eq(11)]
sql = @visitor.accept Nodes::Not.new(node)
sql.must_be_like %{NOT ("users"."id" = 10 AND "users"."id" = 11)}
end
it "should visit_As" do
as = Nodes::As.new(Arel.sql("foo"), Arel.sql("bar"))
sql = @visitor.accept as
sql.must_be_like "foo AS bar"
end
it "should visit_Bignum" do
@visitor.accept 8787878092
end
it "should visit_Hash" do
@visitor.accept({:a => 1})
end
it "should visit_BigDecimal" do
@visitor.accept BigDecimal.new('2.14')
end
it "should visit_Date" do
@visitor.accept Date.today
end
it "should visit_NilClass" do
@visitor.accept(nil).must_be_like "NULL"
end
it "should visit_Arel_Nodes_And" do
node = Nodes::And.new [@attr.eq(10), @attr.eq(11)]
@visitor.accept(node).must_be_like %{
"users"."id" = 10 AND "users"."id" = 11
}
end
it "should visit_Arel_Nodes_Or" do
node = Nodes::Or.new @attr.eq(10), @attr.eq(11)
@visitor.accept(node).must_be_like %{
"users"."id" = 10 OR "users"."id" = 11
}
end
it "should visit visit_Arel_Attributes_Time" do
attr = Attributes::Time.new(@attr.relation, @attr.name)
@visitor.accept attr
end
it "should visit_TrueClass" do
test = Table.new(:users)[:bool].eq(true)
@visitor.accept(test).must_be_like %{ "users"."bool" = 't' }
end
describe "Nodes::Ordering" do
it "should know how to visit" do
node = @attr.desc
@visitor.accept(node).must_be_like %{
"users"."id" DESC
}
end
end
describe "Nodes::In" do
it "should know how to visit" do
node = @attr.in [1, 2, 3]
@visitor.accept(node).must_be_like %{
"users"."id" IN (1, 2, 3)
}
end
it "should turn empty right to NULL" do
node = @attr.in []
@visitor.accept(node).must_be_like %{
"users"."id" IN (NULL)
}
end
it 'can handle two dot ranges' do
node = @attr.in 1..3
@visitor.accept(node).must_be_like %{
"users"."id" BETWEEN 1 AND 3
}
end
it 'can handle three dot ranges' do
node = @attr.in 1...3
@visitor.accept(node).must_be_like %{
"users"."id" >= 1 AND "users"."id" < 3
}
end
it 'can handle subqueries' do
table = Table.new(:users)
subquery = table.project(:id).where(table[:name].eq('Aaron'))
node = @attr.in subquery
@visitor.accept(node).must_be_like %{
"users"."id" IN (SELECT id FROM "users" WHERE "users"."name" = 'Aaron')
}
end
it 'uses the same column for escaping values' do
@attr = Table.new(:users)[:name]
visitor = Class.new(ToSql) do
attr_accessor :expected
def quote value, column = nil
raise unless column == expected
super
end
end
in_node = Nodes::In.new @attr, %w{ a b c }
visitor = visitor.new(Table.engine)
visitor.expected = Table.engine.connection.columns(:users).find { |x|
x.name == 'name'
}
visitor.accept(in_node).must_equal %("users"."name" IN ('a', 'b', 'c'))
end
end
describe "Nodes::InfixOperation" do
it "should handle Multiplication" do
node = Arel::Attributes::Decimal.new(Table.new(:products), :price) * Arel::Attributes::Decimal.new(Table.new(:currency_rates), :rate)
@visitor.accept(node).must_equal %("products"."price" * "currency_rates"."rate")
end
it "should handle Division" do
node = Arel::Attributes::Decimal.new(Table.new(:products), :price) / 5
@visitor.accept(node).must_equal %("products"."price" / 5)
end
it "should handle Addition" do
node = Arel::Attributes::Decimal.new(Table.new(:products), :price) + 6
@visitor.accept(node).must_equal %(("products"."price" + 6))
end
it "should handle Subtraction" do
node = Arel::Attributes::Decimal.new(Table.new(:products), :price) - 7
@visitor.accept(node).must_equal %(("products"."price" - 7))
end
it "should handle arbitrary operators" do
node = Arel::Nodes::InfixOperation.new(
'||',
Arel::Attributes::String.new(Table.new(:products), :name),
Arel::Attributes::String.new(Table.new(:products), :name)
)
@visitor.accept(node).must_equal %("products"."name" || "products"."name")
end
end
describe "Nodes::NotIn" do
it "should know how to visit" do
node = @attr.not_in [1, 2, 3]
@visitor.accept(node).must_be_like %{
"users"."id" NOT IN (1, 2, 3)
}
end
it "should turn empty right to NULL" do
node = @attr.not_in []
@visitor.accept(node).must_be_like %{
"users"."id" NOT IN (NULL)
}
end
it 'can handle two dot ranges' do
node = @attr.not_in 1..3
@visitor.accept(node).must_be_like %{
"users"."id" < 1 OR "users"."id" > 3
}
end
it 'can handle three dot ranges' do
node = @attr.not_in 1...3
@visitor.accept(node).must_be_like %{
"users"."id" < 1 OR "users"."id" >= 3
}
end
it 'can handle subqueries' do
table = Table.new(:users)
subquery = table.project(:id).where(table[:name].eq('Aaron'))
node = @attr.not_in subquery
@visitor.accept(node).must_be_like %{
"users"."id" NOT IN (SELECT id FROM "users" WHERE "users"."name" = 'Aaron')
}
end
it 'uses the same column for escaping values' do
@attr = Table.new(:users)[:name]
visitor = Class.new(ToSql) do
attr_accessor :expected
def quote value, column = nil
raise unless column == expected
super
end
end
in_node = Nodes::NotIn.new @attr, %w{ a b c }
visitor = visitor.new(Table.engine)
visitor.expected = Table.engine.connection.columns(:users).find { |x|
x.name == 'name'
}
visitor.accept(in_node).must_equal %("users"."name" NOT IN ('a', 'b', 'c'))
end
end
describe 'Equality' do
it "should escape strings" do
test = Table.new(:users)[:name].eq 'Aaron Patterson'
@visitor.accept(test).must_be_like %{
"users"."name" = 'Aaron Patterson'
}
end
end
describe 'TableAlias' do
it "should use the underlying table for checking columns" do
test = Table.new(:users).alias('zomgusers')[:id].eq '3'
@visitor.accept(test).must_be_like %{
"zomgusers"."id" = 3
}
end
end
describe 'distinct on' do
it 'raises not implemented error' do
core = Arel::Nodes::SelectCore.new
core.set_quantifier = Arel::Nodes::DistinctOn.new(Arel.sql('aaron'))
assert_raises(NotImplementedError) do
@visitor.accept(core)
end
end
end
end
end
end
|