2010-08-13 18:30:22 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
module Arel
|
|
|
|
describe 'insert manager' do
|
|
|
|
describe 'new' do
|
|
|
|
it 'takes an engine' do
|
|
|
|
Arel::InsertManager.new Table.engine
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-08-13 21:28:38 -04:00
|
|
|
describe 'insert' do
|
2010-09-10 21:01:45 -04:00
|
|
|
it "inserts false" do
|
|
|
|
table = Table.new(:users)
|
|
|
|
manager = Arel::InsertManager.new Table.engine
|
2010-09-14 17:58:34 -04:00
|
|
|
|
|
|
|
table[:id].column.extend(Module.new {
|
|
|
|
def type; :boolean; end
|
|
|
|
})
|
|
|
|
|
2010-09-10 21:01:45 -04:00
|
|
|
manager.insert [[table[:id], false]]
|
|
|
|
manager.to_sql.should be_like %{
|
|
|
|
INSERT INTO "users" ("id") VALUES ('f')
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2010-08-13 21:55:15 -04:00
|
|
|
it "inserts null" do
|
|
|
|
table = Table.new(:users)
|
|
|
|
manager = Arel::InsertManager.new Table.engine
|
|
|
|
manager.insert [[table[:id], nil]]
|
|
|
|
manager.to_sql.should be_like %{
|
|
|
|
INSERT INTO "users" ("id") VALUES (NULL)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it "inserts time" do
|
|
|
|
table = Table.new(:users)
|
|
|
|
manager = Arel::InsertManager.new Table.engine
|
|
|
|
|
|
|
|
time = Time.now
|
2010-09-27 14:32:04 -04:00
|
|
|
attribute = table[:id]
|
|
|
|
attribute.column.type = :date
|
|
|
|
|
|
|
|
manager.insert [[attribute, time]]
|
2010-08-13 21:55:15 -04:00
|
|
|
manager.to_sql.should be_like %{
|
|
|
|
INSERT INTO "users" ("id") VALUES (#{Table.engine.connection.quote time})
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2010-08-13 21:28:38 -04:00
|
|
|
it 'takes a list of lists' do
|
|
|
|
table = Table.new(:users)
|
|
|
|
manager = Arel::InsertManager.new Table.engine
|
|
|
|
manager.into table
|
|
|
|
manager.insert [[table[:id], 1], [table[:name], 'aaron']]
|
|
|
|
manager.to_sql.should be_like %{
|
2010-08-13 21:55:15 -04:00
|
|
|
INSERT INTO "users" ("id", "name") VALUES (1, 'aaron')
|
2010-08-13 21:28:38 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'defaults the table' do
|
|
|
|
table = Table.new(:users)
|
|
|
|
manager = Arel::InsertManager.new Table.engine
|
|
|
|
manager.insert [[table[:id], 1], [table[:name], 'aaron']]
|
|
|
|
manager.to_sql.should be_like %{
|
2010-08-13 21:55:15 -04:00
|
|
|
INSERT INTO "users" ("id", "name") VALUES (1, 'aaron')
|
2010-08-13 21:28:38 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'takes an empty list' do
|
|
|
|
manager = Arel::InsertManager.new Table.engine
|
|
|
|
manager.insert []
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-08-13 18:30:22 -04:00
|
|
|
describe 'into' do
|
|
|
|
it 'takes an engine' do
|
|
|
|
manager = Arel::InsertManager.new Table.engine
|
|
|
|
manager.into(Table.new(:users)).should == manager
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'converts to sql' do
|
|
|
|
table = Table.new :users
|
|
|
|
manager = Arel::InsertManager.new Table.engine
|
|
|
|
manager.into table
|
|
|
|
manager.to_sql.should be_like %{
|
|
|
|
INSERT INTO "users"
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2010-08-13 18:43:32 -04:00
|
|
|
|
|
|
|
describe 'columns' do
|
|
|
|
it "converts to sql" do
|
|
|
|
table = Table.new :users
|
|
|
|
manager = Arel::InsertManager.new Table.engine
|
|
|
|
manager.into table
|
|
|
|
manager.columns << table[:id]
|
|
|
|
manager.to_sql.should be_like %{
|
2010-08-13 21:55:15 -04:00
|
|
|
INSERT INTO "users" ("id")
|
2010-08-13 18:43:32 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "values" do
|
|
|
|
it "converts to sql" do
|
|
|
|
table = Table.new :users
|
|
|
|
manager = Arel::InsertManager.new Table.engine
|
|
|
|
manager.into table
|
|
|
|
|
2010-09-09 18:20:25 -04:00
|
|
|
manager.values = Nodes::Values.new [1]
|
2010-08-13 18:43:32 -04:00
|
|
|
manager.to_sql.should be_like %{
|
|
|
|
INSERT INTO "users" VALUES (1)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "combo" do
|
|
|
|
it "puts shit together" do
|
|
|
|
table = Table.new :users
|
|
|
|
manager = Arel::InsertManager.new Table.engine
|
|
|
|
manager.into table
|
|
|
|
|
2010-09-09 18:20:25 -04:00
|
|
|
manager.values = Nodes::Values.new [1, 'aaron']
|
2010-08-13 18:43:32 -04:00
|
|
|
manager.columns << table[:id]
|
|
|
|
manager.columns << table[:name]
|
|
|
|
manager.to_sql.should be_like %{
|
2010-08-13 21:55:15 -04:00
|
|
|
INSERT INTO "users" ("id", "name") VALUES (1, 'aaron')
|
2010-08-13 18:43:32 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2010-08-16 23:33:41 -04:00
|
|
|
|
|
|
|
describe "TreeManager" do
|
|
|
|
subject do
|
|
|
|
table = Table.new(:users)
|
|
|
|
Arel::InsertManager.new(Table.engine).tap do |manager|
|
|
|
|
manager.insert [[table[:id], nil]]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it_should_behave_like "TreeManager"
|
|
|
|
end
|
2010-08-13 18:30:22 -04:00
|
|
|
end
|
|
|
|
end
|