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
|
require 'helper'
module Arel
module Visitors
describe 'the to_sql visitor' do
before do
@visitor = ToSql.new Table.engine
@attr = Table.new(:users)[:id]
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_DateTime" do
@visitor.accept DateTime.now
end
it "should visit_Float" do
@visitor.accept 2.14
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, @attr.column)
@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 '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 = @attr.column
visitor.accept(in_node).must_equal %("users"."name" 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
end
end
end
|