require File.join(File.dirname(__FILE__), 'spec_helper.rb') unless defined?(SQLITE_DB) SQLITE_URL = 'sqlite:/' unless defined? SQLITE_URL SQLITE_DB = Sequel.connect(ENV['SEQUEL_SQLITE_SPEC_DB']||SQLITE_URL) end context "An SQLite database" do before do @db = SQLITE_DB end if SQLITE_DB.auto_vacuum == :none specify "should support getting pragma values" do @db.pragma_get(:auto_vacuum).to_s.should == '0' end specify "should support setting pragma values" do @db.pragma_set(:auto_vacuum, '1') @db.pragma_get(:auto_vacuum).to_s.should == '1' @db.pragma_set(:auto_vacuum, '2') @db.pragma_get(:auto_vacuum).to_s.should == '2' end specify "should support getting and setting the auto_vacuum pragma" do @db.auto_vacuum = :full @db.auto_vacuum.should == :full @db.auto_vacuum = :incremental @db.auto_vacuum.should == :incremental proc {@db.auto_vacuum = :invalid}.should raise_error(Sequel::Error) end end specify "should provide a list of existing tables" do @db.drop_table(:testing) rescue nil @db.tables.should be_a_kind_of(Array) @db.tables.should_not include(:testing) @db.create_table! :testing do text :name end @db.tables.should include(:testing) end specify "should support getting and setting the synchronous pragma" do @db.synchronous = :off @db.synchronous.should == :off @db.synchronous = :normal @db.synchronous.should == :normal @db.synchronous = :full @db.synchronous.should == :full proc {@db.synchronous = :invalid}.should raise_error(Sequel::Error) end specify "should support getting and setting the temp_store pragma" do @db.temp_store = :default @db.temp_store.should == :default @db.temp_store = :file @db.temp_store.should == :file @db.temp_store = :memory @db.temp_store.should == :memory proc {@db.temp_store = :invalid}.should raise_error(Sequel::Error) end specify "should be able to execute transactions" do @db.transaction do @db.create_table!(:t) {text :name} end @db.tables.should include(:t) proc {@db.transaction do @db.create_table!(:u) {text :name} raise ArgumentError end}.should raise_error(ArgumentError) # no commit @db.tables.should_not include(:u) proc {@db.transaction do @db.create_table!(:v) {text :name} raise Sequel::Error::Rollback end}.should_not raise_error # no commit @db.tables.should_not include(:r) end specify "should support nested transactions" do @db.transaction do @db.transaction do @db.create_table!(:t) {text :name} end end @db.tables.should include(:t) proc {@db.transaction do @db.create_table!(:v) {text :name} @db.transaction do raise Sequel::Error::Rollback # should roll back the top-level transaction end end}.should_not raise_error # no commit @db.tables.should_not include(:v) end specify "should handle returning inside of transaction by committing" do @db.create_table!(:items2){text :name} def @db.ret_commit transaction do self[:items2] << {:name => 'abc'} return self[:items2] << {:name => 'd'} end end @db[:items2].count.should == 0 @db.ret_commit @db[:items2].count.should == 1 @db.ret_commit @db[:items2].count.should == 2 proc do @db.transaction do raise Interrupt, 'asdf' end end.should raise_error(Interrupt) @db[:items2].count.should == 2 end specify "should support timestamps" do t1 = Time.at(Time.now.to_i) #normalize time @db.create_table!(:time) {timestamp :t} @db[:time] << {:t => t1} x = @db[:time].first[:t] [t1.iso8601, t1.to_s].should include(x.respond_to?(:iso8601) ? x.iso8601 : x.to_s) end specify "should support sequential primary keys" do @db.create_table!(:with_pk) {primary_key :id; text :name} @db[:with_pk] << {:name => 'abc'} @db[:with_pk] << {:name => 'def'} @db[:with_pk] << {:name => 'ghi'} @db[:with_pk].order(:name).all.should == [ {:id => 1, :name => 'abc'}, {:id => 2, :name => 'def'}, {:id => 3, :name => 'ghi'} ] end specify "should catch invalid SQL errors and raise them as Error" do proc {@db.execute 'blah blah'}.should raise_error(Sequel::Error) proc {@db.execute_insert 'blah blah'}.should raise_error(Sequel::Error) end specify "should not swallow non-SQLite based exceptions" do proc {@db.pool.hold{raise Interrupt, "test"}}.should raise_error(Interrupt) end specify "should correctly parse the schema" do @db.create_table!(:time2) {timestamp :t} @db.schema(:time2, :reload=>true).should == [[:t, {:type=>:datetime, :allow_null=>true, :max_chars=>nil, :default=>nil, :db_type=>"timestamp", :numeric_precision=>nil, :primary_key=>false}]] end specify "should get the schema all database tables if no table name is used" do @db.create_table!(:time2) {timestamp :t} @db.schema(:time2, :reload=>true).should == @db.schema(nil, :reload=>true)[:time] end end context "An SQLite dataset" do setup do SQLITE_DB.create_table! :items do integer :id, :primary_key => true, :auto_increment => true text :name float :value end @d = SQLITE_DB[:items] @d.delete # remove all records end specify "should return the correct records" do @d.to_a.should == [] @d << {:name => 'abc', :value => 1.23} @d << {:name => 'abc', :value => 4.56} @d << {:name => 'def', :value => 7.89} @d.select(:name, :value).to_a.sort_by {|h| h[:value]}.should == [ {:name => 'abc', :value => 1.23}, {:name => 'abc', :value => 4.56}, {:name => 'def', :value => 7.89} ] end specify "should return the correct record count" do @d.count.should == 0 @d << {:name => 'abc', :value => 1.23} @d << {:name => 'abc', :value => 4.56} @d << {:name => 'def', :value => 7.89} @d.count.should == 3 end specify "should return the last inserted id when inserting records" do id = @d << {:name => 'abc', :value => 1.23} id.should == @d.first[:id] end specify "should update records correctly" do @d << {:name => 'abc', :value => 1.23} @d << {:name => 'abc', :value => 4.56} @d << {:name => 'def', :value => 7.89} @d.filter(:name => 'abc').update(:value => 5.3) # the third record should stay the same @d[:name => 'def'][:value].should == 7.89 @d.filter(:value => 5.3).count.should == 2 end specify "should delete records correctly" do @d << {:name => 'abc', :value => 1.23} @d << {:name => 'abc', :value => 4.56} @d << {:name => 'def', :value => 7.89} @d.filter(:name => 'abc').delete @d.count.should == 1 @d.first[:name].should == 'def' end specify "should handle string pattern matches correctly" do @d.literal(:x.like('a')).should == "(x LIKE 'a')" @d.literal(~:x.like('a')).should == "NOT (x LIKE 'a')" @d.literal(:x.ilike('a')).should == "(x LIKE 'a')" @d.literal(~:x.ilike('a')).should == "NOT (x LIKE 'a')" end specify "should raise errors if given a regexp pattern match" do proc{@d.literal(:x.like(/a/))}.should raise_error(Sequel::Error) proc{@d.literal(~:x.like(/a/))}.should raise_error(Sequel::Error) proc{@d.literal(:x.like(/a/i))}.should raise_error(Sequel::Error) proc{@d.literal(~:x.like(/a/i))}.should raise_error(Sequel::Error) end end context "An SQLite dataset" do setup do SQLITE_DB.create_table! :items do integer :id, :primary_key => true, :auto_increment => true text :name float :value end @d = SQLITE_DB[:items] @d.delete # remove all records @d << {:name => 'abc', :value => 1.23} @d << {:name => 'def', :value => 4.56} @d << {:name => 'ghi', :value => 7.89} end specify "should correctly return avg" do @d.avg(:value).to_s.should == ((1.23 + 4.56 + 7.89) / 3).to_s end specify "should correctly return sum" do @d.sum(:value).to_s.should == (1.23 + 4.56 + 7.89).to_s end specify "should correctly return max" do @d.max(:value).to_s.should == 7.89.to_s end specify "should correctly return min" do @d.min(:value).to_s.should == 1.23.to_s end end context "SQLite::Dataset#delete" do setup do SQLITE_DB.create_table! :items do integer :id, :primary_key => true, :auto_increment => true text :name float :value end @d = SQLITE_DB[:items] @d.delete # remove all records @d << {:name => 'abc', :value => 1.23} @d << {:name => 'def', :value => 4.56} @d << {:name => 'ghi', :value => 7.89} end specify "should return the number of records affected when filtered" do @d.count.should == 3 @d.filter {:value < 3}.delete.should == 1 @d.count.should == 2 @d.filter {:value < 3}.delete.should == 0 @d.count.should == 2 end specify "should return the number of records affected when unfiltered" do @d.count.should == 3 @d.delete.should == 3 @d.count.should == 0 @d.delete.should == 0 end end context "SQLite::Dataset#update" do setup do SQLITE_DB.create_table! :items do integer :id, :primary_key => true, :auto_increment => true text :name float :value end @d = SQLITE_DB[:items] @d.delete # remove all records @d << {:name => 'abc', :value => 1.23} @d << {:name => 'def', :value => 4.56} @d << {:name => 'ghi', :value => 7.89} end specify "should return the number of records affected" do @d.filter(:name => 'abc').update(:value => 2).should == 1 @d.update(:value => 10).should == 3 @d.filter(:name => 'xxx').update(:value => 23).should == 0 end end context "SQLite dataset" do setup do SQLITE_DB.create_table! :test do integer :id, :primary_key => true, :auto_increment => true text :name float :value end SQLITE_DB.create_table! :items do integer :id, :primary_key => true, :auto_increment => true text :name float :value end @d = SQLITE_DB[:items] @d.delete # remove all records @d << {:name => 'abc', :value => 1.23} @d << {:name => 'def', :value => 4.56} @d << {:name => 'ghi', :value => 7.89} end teardown do SQLITE_DB.drop_table :test end specify "should be able to insert from a subquery" do SQLITE_DB[:test] << @d SQLITE_DB[:test].count.should == 3 SQLITE_DB[:test].select(:name, :value).order(:value).to_a.should == \ @d.select(:name, :value).order(:value).to_a end end context "A SQLite database" do setup do @db = SQLITE_DB @db.create_table! :test2 do text :name integer :value end end specify "should support add_column operations" do @db.add_column :test2, :xyz, :text @db[:test2].columns.should == [:name, :value, :xyz] @db[:test2] << {:name => 'mmm', :value => 111, :xyz=>'000'} @db[:test2].first.should == {:name => 'mmm', :value => 111, :xyz=>'000'} end specify "should support drop_column operations" do @db.drop_column :test2, :value @db[:test2].columns.should == [:name] @db[:test2] << {:name => 'mmm'} @db[:test2].first.should == {:name => 'mmm'} end specify "should not support rename_column operations" do proc {@db.rename_column :test2, :value, :zyx}.should raise_error(Sequel::Error) end specify "should not support set_column_type operations" do proc {@db.set_column_type :test2, :value, :integer}.should raise_error(Sequel::Error) end specify "should support add_index" do @db.add_index :test2, :value, :unique => true @db.add_index :test2, [:name, :value] end specify "should not support drop_index" do proc {@db.drop_index :test2, :value}.should raise_error(Sequel::Error) end end