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
|
require File.join(File.dirname(__FILE__), 'spec_helper')
context "Array#to_sql" do
specify "should concatenate multiple lines into a single string" do
"SELECT * \r\nFROM items\r\n WHERE a = 1".split.to_sql. \
should == 'SELECT * FROM items WHERE a = 1'
end
specify "should remove superfluous white space and line breaks" do
"\tSELECT * \n FROM items ".split.to_sql. \
should == 'SELECT * FROM items'
end
specify "should remove ANSI SQL comments" do
"SELECT * --comment\r\n FROM items\r\n --comment".split.to_sql. \
should == 'SELECT * FROM items'
end
specify "should remove C-style comments" do
"SELECT * \r\n /* comment comment\r\n comment\r\n FROM items */\r\n FROM items\r\n--comment".split.to_sql. \
should == 'SELECT * FROM items'
end
end
context "String#to_sql" do
specify "should concatenate multiple lines into a single string" do
"SELECT * \r\nFROM items\r\nWHERE a = 1".to_sql. \
should == 'SELECT * FROM items WHERE a = 1'
end
specify "should remove superfluous white space and line breaks" do
"\tSELECT * \r\n FROM items ".to_sql. \
should == 'SELECT * FROM items'
end
specify "should remove ANSI SQL comments" do
"SELECT * --comment \r\n FROM items\r\n --comment".to_sql. \
should == 'SELECT * FROM items'
end
specify "should remove C-style comments" do
"SELECT * \r\n/* comment comment\r\ncomment\r\nFROM items */\r\nFROM items\r\n--comment".to_sql. \
should == 'SELECT * FROM items'
end
end
context "String#lit" do
specify "should return an LiteralString object" do
'xyz'.lit.should be_a_kind_of(Sequel::LiteralString)
'xyz'.lit.to_s.should == 'xyz'
end
specify "should inhibit string literalization" do
db = Sequel::Database.new
ds = db[:t]
ds.update_sql(:stamp => "NOW()".lit).should == \
"UPDATE t SET stamp = NOW()"
end
end
context "String#expr" do
specify "should return an LiteralString object" do
'xyz'.expr.should be_a_kind_of(Sequel::LiteralString)
'xyz'.expr.to_s.should == 'xyz'
end
specify "should inhibit string literalization" do
db = Sequel::Database.new
ds = db[:t]
ds.update_sql(:stamp => "NOW()".expr).should == \
"UPDATE t SET stamp = NOW()"
end
end
context "String#split_sql" do
specify "should split a string containing multiple statements" do
"DROP TABLE a; DROP TABLE c".split_sql.should == \
['DROP TABLE a', 'DROP TABLE c']
end
specify "should remove comments from the string" do
"DROP TABLE a;/* DROP TABLE b; DROP TABLE c;*/DROP TABLE d".split_sql.should == \
['DROP TABLE a', 'DROP TABLE d']
end
end
context "#desc" do
setup do
@ds = Sequel::Dataset.new(nil)
end
specify "should format a DESC clause for a column ref" do
:test.desc.to_s(@ds).should == 'test DESC'
:items__price.desc.to_s(@ds).should == 'items.price DESC'
end
specify "should format a DESC clause for a function" do
:avg[:test].desc.to_s(@ds).should == 'avg(test) DESC'
end
specify "should format a DESC clause for a literal value" do
'abc'.desc.to_s(@ds).should == "'abc' DESC"
end
end
context "#asc" do
setup do
@ds = Sequel::Dataset.new(nil)
end
specify "should format a ASC clause for a column ref" do
:test.asc.to_s(@ds).should == 'test ASC'
:items__price.asc.to_s(@ds).should == 'items.price ASC'
end
specify "should format a ASC clause for a function" do
:avg[:test].asc.to_s(@ds).should == 'avg(test) ASC'
end
specify "should format a ASC clause for a literal value" do
'abc'.asc.to_s(@ds).should == "'abc' ASC"
end
end
context "#as" do
setup do
@ds = Sequel::Dataset.new(nil)
end
specify "should format a AS clause for a column ref" do
:test.as(:t).to_s(@ds).should == 'test AS t'
:items__price.as(:p).to_s(@ds).should == 'items.price AS p'
end
specify "should format a AS clause for a function" do
:avg[:test].as(:avg).to_s(@ds).should == 'avg(test) AS avg'
end
specify "should format a AS clause for a literal value" do
'abc'.as(:abc).to_s(@ds).should == "'abc' AS abc"
end
end
context "Column references" do
setup do
@c = Class.new(Sequel::Dataset) do
def quote_column_ref(c); "`#{c}`"; end
end
@ds = @c.new(nil)
end
specify "should be quoted properly" do
@ds.literal(:xyz).should == "`xyz`"
@ds.literal(:xyz__abc).should == "xyz.`abc`"
@ds.literal(:xyz.as(:x)).should == "`xyz` AS `x`"
@ds.literal(:xyz__abc.as(:x)).should == "xyz.`abc` AS `x`"
@ds.literal(:xyz___x).should == "`xyz` AS `x`"
@ds.literal(:xyz__abc___x).should == "xyz.`abc` AS `x`"
end
specify "should be quoted properly in SQL functions" do
@ds.literal(:avg[:xyz]).should == "avg(`xyz`)"
@ds.literal(:avg[:xyz, 1]).should == "avg(`xyz`, 1)"
@ds.literal(:avg[:xyz].as(:a)).should == "avg(`xyz`) AS `a`"
end
specify "should be quoted properly in ASC/DESC clauses" do
@ds.literal(:xyz.asc).should == "`xyz` ASC"
@ds.literal(:avg[:xyz, 1].desc).should == "avg(`xyz`, 1) DESC"
end
specify "should be quoted properly in a cast function" do
@ds.literal(:x.cast_as(:integer)).should == "cast(`x` AS integer)"
@ds.literal(:x__y.cast_as(:varchar[20])).should == "cast(x.`y` AS varchar(20))"
end
end
context "Symbol#*" do
setup do
@ds = Sequel::Dataset.new(nil)
end
specify "should format a qualified wildcard" do
:xyz.*.to_s(@ds).should == 'xyz.*'
:abc.*.to_s(@ds).should == 'abc.*'
end
end
context "Symbol#to_column_ref" do
setup do
@ds = Sequel::Dataset.new(nil)
end
specify "should convert qualified symbol notation into dot notation" do
:abc__def.to_column_ref(@ds).should == 'abc.def'
end
specify "should convert AS symbol notation into SQL AS notation" do
:xyz___x.to_column_ref(@ds).should == 'xyz AS x'
:abc__def___x.to_column_ref(@ds).should == 'abc.def AS x'
end
specify "should support names with digits" do
:abc2.to_column_ref(@ds).should == 'abc2'
:xx__yy3.to_column_ref(@ds).should == 'xx.yy3'
:ab34__temp3_4ax.to_column_ref(@ds).should == 'ab34.temp3_4ax'
:x1___y2.to_column_ref(@ds).should == 'x1 AS y2'
:abc2__def3___ggg4.to_column_ref(@ds).should == 'abc2.def3 AS ggg4'
end
specify "should support upper case and lower case" do
:ABC.to_column_ref(@ds).should == 'ABC'
:Zvashtoy__aBcD.to_column_ref(@ds).should == 'Zvashtoy.aBcD'
end
end
### DEPRECATED
context "Symbol" do
setup do
@ds = Sequel::Dataset.new(nil)
end
specify "should support MIN for specifying min function" do
:abc__def.MIN.to_s(@ds).should == 'min(abc.def)'
end
specify "should support MAX for specifying max function" do
:abc__def.MAX.to_s(@ds).should == 'max(abc.def)'
end
specify "should support SUM for specifying sum function" do
:abc__def.SUM.to_s(@ds).should == 'sum(abc.def)'
end
specify "should support AVG for specifying avg function" do
:abc__def.AVG.to_s(@ds).should == 'avg(abc.def)'
end
specify "should support COUNT for specifying count function" do
:abc__def.COUNT.to_s(@ds).should == 'count(abc.def)'
end
specify "should support any other function using upper case letters" do
:abc__def.DADA.to_s(@ds).should == 'dada(abc.def)'
end
specify "should support upper case outer functions" do
:COUNT['1'].to_s(@ds).should == "COUNT('1')"
end
specify "should inhibit string literalization" do
db = Sequel::Database.new
ds = db[:t]
ds.select(:COUNT['1']).sql.should == "SELECT COUNT('1') FROM t"
end
specify "should support cast function" do
:abc.cast_as(:integer).to_s(@ds).should == "cast(abc AS integer)"
end
specify "should raise NoMethodError for non-uppercase invalid methods" do
proc {:abc.dfaxs}.should raise_error(NoMethodError)
end
specify "should support subscript access using | operator" do
(:abc|1).to_s(@ds).should == 'abc[1]'
(:abc|[1]).to_s(@ds).should == 'abc[1]'
(:abc|[1, 2]).to_s(@ds).should == 'abc[1, 2]'
(:abc|1|2).to_s(@ds).should == 'abc[1, 2]'
end
end
context "String#to_time" do
specify "should convert the string into a Time object" do
"2007-07-11".to_time.should == Time.parse("2007-07-11")
"06:30".to_time.should == Time.parse("06:30")
end
specify "should raise Error::InvalidValue for an invalid time" do
proc {'0000-00-00'.to_time}.should raise_error(Sequel::Error::InvalidValue)
end
end
context "String#to_date" do
specify "should convert the string into a Date object" do
"2007-07-11".to_date.should == Date.parse("2007-07-11")
end
specify "should raise Error::InvalidValue for an invalid date" do
proc {'0000-00-00'.to_date}.should raise_error(Sequel::Error::InvalidValue)
end
end
context "Sequel::SQL::Function#==" do
specify "should be true for functions with the same name and arguments, false otherwise" do
a = :date[:t]
b = :date[:t]
a.should == b
(a == b).should == true
c = :date[:c]
a.should_not == c
(a == c).should == false
d = :time[:c]
a.should_not == d
c.should_not == d
(a == d).should == false
(c == d).should == false
end
end
|