require File.join(File.dirname(File.expand_path(__FILE__)), "spec_helper") describe Sequel::Model, "associate" do it "should use explicit class if given a class, symbol, or string" do MODEL_DB.reset klass = Class.new(Sequel::Model(:nodes)) class ::ParParent < Sequel::Model end klass.associate :many_to_one, :par_parent0, :class=>ParParent klass.associate :one_to_many, :par_parent1s, :class=>'ParParent' klass.associate :many_to_many, :par_parent2s, :class=>:ParParent klass.association_reflection(:"par_parent0").associated_class.should == ParParent klass.association_reflection(:"par_parent1s").associated_class.should == ParParent klass.association_reflection(:"par_parent2s").associated_class.should == ParParent end it "should default to associating to other models in the same scope" do class ::AssociationModuleTest class Album < Sequel::Model many_to_one :artist many_to_many :tags end class Artist< Sequel::Model one_to_many :albums end class Tag < Sequel::Model many_to_many :albums end end ::AssociationModuleTest::Album.association_reflection(:artist).associated_class.should == ::AssociationModuleTest::Artist ::AssociationModuleTest::Album.association_reflection(:tags).associated_class.should == ::AssociationModuleTest::Tag ::AssociationModuleTest::Artist.association_reflection(:albums).associated_class.should == ::AssociationModuleTest::Album ::AssociationModuleTest::Tag.association_reflection(:albums).associated_class.should == ::AssociationModuleTest::Album end it "should add a model_object and association_reflection accessors to the dataset, and return it with the current model object" do MODEL_DB.reset klass = Class.new(Sequel::Model(:nodes)) do columns :id, :a_id end mod = Module.new do def blah filter{|o| o.__send__(association_reflection[:key]) > model_object.id*2} end end klass.associate :many_to_one, :a, :class=>klass klass.associate :one_to_many, :bs, :key=>:b_id, :class=>klass, :extend=>mod klass.associate :many_to_many, :cs, :class=>klass node = klass.load(:id=>1) node.a_dataset.model_object.should == node node.bs_dataset.model_object.should == node node.cs_dataset.model_object.should == node node.a_dataset.association_reflection.should == klass.association_reflection(:a) node.bs_dataset.association_reflection.should == klass.association_reflection(:bs) node.cs_dataset.association_reflection.should == klass.association_reflection(:cs) node.bs_dataset.blah.sql.should == 'SELECT * FROM nodes WHERE ((nodes.b_id = 1) AND (b_id > 2))' end it "should allow extending the dataset with :extend option" do MODEL_DB.reset klass = Class.new(Sequel::Model(:nodes)) do columns :id, :a_id end mod = Module.new do def blah 1 end end mod2 = Module.new do def blar 2 end end klass.associate :many_to_one, :a, :class=>klass, :extend=>mod klass.associate :one_to_many, :bs, :class=>klass, :extend=>[mod] klass.associate :many_to_many, :cs, :class=>klass, :extend=>[mod, mod2] node = klass.load(:id=>1) node.a_dataset.blah.should == 1 node.bs_dataset.blah.should == 1 node.cs_dataset.blah.should == 1 node.cs_dataset.blar.should == 2 end it "should clone an existing association with the :clone option" do MODEL_DB.reset klass = Class.new(Sequel::Model(:nodes)) klass.many_to_one(:par_parent, :order=>:a){1} klass.one_to_many(:par_parent1s, :class=>'ParParent', :limit=>12){4} klass.many_to_many(:par_parent2s, :class=>:ParParent, :uniq=>true){2} klass.many_to_one :par, :clone=>:par_parent, :select=>:b klass.one_to_many :par1s, :clone=>:par_parent1s, :order=>:b, :limit=>10, :block=>nil klass.many_to_many(:par2s, :clone=>:par_parent2s, :order=>:c){3} klass.association_reflection(:par).associated_class.should == ParParent klass.association_reflection(:par1s).associated_class.should == ParParent klass.association_reflection(:par2s).associated_class.should == ParParent klass.association_reflection(:par)[:order].should == :a klass.association_reflection(:par).select.should == :b klass.association_reflection(:par)[:block].call.should == 1 klass.association_reflection(:par1s)[:limit].should == 10 klass.association_reflection(:par1s)[:order].should == :b klass.association_reflection(:par1s)[:block].should == nil klass.association_reflection(:par2s)[:after_load].length.should == 1 klass.association_reflection(:par2s)[:order].should == :c klass.association_reflection(:par2s)[:block].call.should == 3 end end describe Sequel::Model, "many_to_one" do before do MODEL_DB.reset @c2 = Class.new(Sequel::Model(:nodes)) do unrestrict_primary_key columns :id, :parent_id, :par_parent_id, :blah end @dataset = @c2.dataset end it "should use implicit key if omitted" do @c2.many_to_one :parent, :class => @c2 d = @c2.new(:id => 1, :parent_id => 234) p = d.parent p.class.should == @c2 p.values.should == {:x => 1, :id => 1} MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.id = 234) LIMIT 1"] end it "should use implicit class if omitted" do class ::ParParent < Sequel::Model end @c2.many_to_one :par_parent d = @c2.new(:id => 1, :par_parent_id => 234) p = d.par_parent p.class.should == ParParent MODEL_DB.sqls.should == ["SELECT * FROM par_parents WHERE (par_parents.id = 234) LIMIT 1"] end it "should use class inside module if given as a string" do module ::Par class Parent < Sequel::Model end end @c2.many_to_one :par_parent, :class=>"Par::Parent" d = @c2.new(:id => 1, :par_parent_id => 234) p = d.par_parent p.class.should == Par::Parent MODEL_DB.sqls.should == ["SELECT * FROM parents WHERE (parents.id = 234) LIMIT 1"] end it "should use explicit key if given" do @c2.many_to_one :parent, :class => @c2, :key => :blah d = @c2.new(:id => 1, :blah => 567) p = d.parent p.class.should == @c2 p.values.should == {:x => 1, :id => 1} MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.id = 567) LIMIT 1"] end it "should use :primary_key option if given" do @c2.many_to_one :parent, :class => @c2, :key => :blah, :primary_key => :pk @c2.new(:id => 1, :blah => 567).parent MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.pk = 567) LIMIT 1"] end it "should support composite keys" do @c2.many_to_one :parent, :class => @c2, :key=>[:id, :parent_id], :primary_key=>[:parent_id, :id] @c2.new(:id => 1, :parent_id => 234).parent MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE ((nodes.parent_id = 1) AND (nodes.id = 234)) LIMIT 1"] end it "should not issue query if not all keys have values" do @c2.many_to_one :parent, :class => @c2, :key=>[:id, :parent_id], :primary_key=>[:parent_id, :id] @c2.new(:id => 1, :parent_id => nil).parent.should == nil MODEL_DB.sqls.should == [] end it "should raise an Error unless same number of composite keys used" do proc{@c2.many_to_one :parent, :class => @c2, :primary_key=>[:parent_id, :id]}.should raise_error(Sequel::Error) proc{@c2.many_to_one :parent, :class => @c2, :key=>[:id, :parent_id], :primary_key=>:id}.should raise_error(Sequel::Error) proc{@c2.many_to_one :parent, :class => @c2, :key=>:id, :primary_key=>[:parent_id, :id]}.should raise_error(Sequel::Error) proc{@c2.many_to_one :parent, :class => @c2, :key=>[:id, :parent_id, :blah], :primary_key=>[:parent_id, :id]}.should raise_error(Sequel::Error) end it "should use :select option if given" do @c2.many_to_one :parent, :class => @c2, :key => :blah, :select=>[:id, :name] @c2.new(:id => 1, :blah => 567).parent MODEL_DB.sqls.should == ["SELECT id, name FROM nodes WHERE (nodes.id = 567) LIMIT 1"] end it "should use :conditions option if given" do @c2.many_to_one :parent, :class => @c2, :key => :blah, :conditions=>{:a=>32} @c2.new(:id => 1, :blah => 567).parent MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE ((nodes.id = 567) AND (a = 32)) LIMIT 1"] @c2.many_to_one :parent, :class => @c2, :key => :blah, :conditions=>:a MODEL_DB.sqls.clear @c2.new(:id => 1, :blah => 567).parent MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE ((nodes.id = 567) AND a) LIMIT 1"] end it "should support :order, :limit (only for offset), and :dataset options, as well as a block" do c2 = @c2 @c2.many_to_one :child_20, :class => @c2, :key=>:id, :dataset=>proc{c2.filter(:parent_id=>pk)}, :limit=>[10,20], :order=>:name do |ds| ds.filter(:x.sql_number > 1) end @c2.load(:id => 100).child_20 MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE ((parent_id = 100) AND (x > 1)) ORDER BY name LIMIT 1 OFFSET 20"] end it "should return nil if key value is nil" do @c2.many_to_one :parent, :class => @c2 d = @c2.new(:id => 1) d.parent.should == nil end it "should cache negative lookup" do @c2.many_to_one :parent, :class => @c2 ds = @c2.dataset def ds.fetch_rows(sql, &block) MODEL_DB.sqls << sql end d = @c2.new(:id => 1, :parent_id=>555) MODEL_DB.sqls.should == [] d.parent.should == nil MODEL_DB.sqls.should == ['SELECT * FROM nodes WHERE (nodes.id = 555) LIMIT 1'] d.parent.should == nil MODEL_DB.sqls.should == ['SELECT * FROM nodes WHERE (nodes.id = 555) LIMIT 1'] end it "should define a setter method" do @c2.many_to_one :parent, :class => @c2 d = @c2.new(:id => 1) d.parent = @c2.new(:id => 4321) d.values.should == {:id => 1, :parent_id => 4321} d.parent = nil d.values.should == {:id => 1, :parent_id => nil} e = @c2.new(:id => 6677) d.parent = e d.values.should == {:id => 1, :parent_id => 6677} end it "should have the setter method respect the :primary_key option" do @c2.many_to_one :parent, :class => @c2, :primary_key=>:blah d = @c2.new(:id => 1) d.parent = @c2.new(:id => 4321, :blah=>444) d.values.should == {:id => 1, :parent_id => 444} d.parent = nil d.values.should == {:id => 1, :parent_id => nil} e = @c2.new(:id => 6677, :blah=>8) d.parent = e d.values.should == {:id => 1, :parent_id => 8} end it "should have the setter method respect composite keys" do @c2.many_to_one :parent, :class => @c2, :key=>[:id, :parent_id], :primary_key=>[:parent_id, :id] d = @c2.new(:id => 1, :parent_id=> 234) d.parent = @c2.new(:id => 4, :parent_id=>52) d.values.should == {:id => 52, :parent_id => 4} d.parent = nil d.values.should == {:id => nil, :parent_id => nil} e = @c2.new(:id => 6677, :parent_id=>8) d.parent = e d.values.should == {:id => 8, :parent_id => 6677} end it "should not persist changes until saved" do @c2.many_to_one :parent, :class => @c2 d = @c2.load(:id => 1) MODEL_DB.reset d.parent = @c2.new(:id => 345) MODEL_DB.sqls.should == [] d.save_changes MODEL_DB.sqls.should == ['UPDATE nodes SET parent_id = 345 WHERE (id = 1)'] end it "should set cached instance variable when accessed" do @c2.many_to_one :parent, :class => @c2 d = @c2.load(:id => 1) MODEL_DB.reset d.parent_id = 234 d.associations[:parent].should == nil ds = @c2.dataset def ds.fetch_rows(sql, &block); MODEL_DB.sqls << sql; yield({:id=>234}) end e = d.parent MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.id = 234) LIMIT 1"] d.associations[:parent].should == e end it "should set cached instance variable when assigned" do @c2.many_to_one :parent, :class => @c2 d = @c2.create(:id => 1) MODEL_DB.reset d.associations[:parent].should == nil d.parent = @c2.new(:id => 234) e = d.parent d.associations[:parent].should == e MODEL_DB.sqls.should == [] end it "should use cached instance variable if available" do @c2.many_to_one :parent, :class => @c2 d = @c2.create(:id => 1, :parent_id => 234) MODEL_DB.reset d.associations[:parent] = 42 d.parent.should == 42 MODEL_DB.sqls.should == [] end it "should not use cached instance variable if asked to reload" do @c2.many_to_one :parent, :class => @c2 d = @c2.create(:id => 1) MODEL_DB.reset d.parent_id = 234 d.associations[:parent] = 42 d.parent(true).should_not == 42 MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.id = 234) LIMIT 1"] end it "should use a callback if given one as the argument" do @c2.many_to_one :parent, :class => @c2 d = @c2.create(:id => 1) MODEL_DB.reset d.parent_id = 234 d.associations[:parent] = 42 d.parent(proc{|ds| ds.filter{name > 'M'}}).should_not == 42 MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE ((nodes.id = 234) AND (name > 'M')) LIMIT 1"] end it "should use a block given to the association method as a callback on ruby 1.8.7+" do @c2.many_to_one :parent, :class => @c2 d = @c2.create(:id => 1) MODEL_DB.reset d.parent_id = 234 d.associations[:parent] = 42 d.parent{|ds| ds.filter{name > 'M'}}.should_not == 42 MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE ((nodes.id = 234) AND (name > 'M')) LIMIT 1"] end if RUBY_VERSION >= '1.8.7' it "should have the setter add to the reciprocal one_to_many cached association list if it exists" do @c2.many_to_one :parent, :class => @c2 @c2.one_to_many :children, :class => @c2, :key=>:parent_id ds = @c2.dataset def ds.fetch_rows(sql, &block) MODEL_DB.sqls << sql end d = @c2.new(:id => 1) e = @c2.new(:id => 2) MODEL_DB.sqls.should == [] d.parent = e e.children.should_not(include(d)) MODEL_DB.sqls.should == ['SELECT * FROM nodes WHERE (nodes.parent_id = 2)'] MODEL_DB.reset d = @c2.new(:id => 1) e = @c2.new(:id => 2) e.children.should_not(include(d)) MODEL_DB.sqls.should == ['SELECT * FROM nodes WHERE (nodes.parent_id = 2)'] d.parent = e e.children.should(include(d)) MODEL_DB.sqls.should == ['SELECT * FROM nodes WHERE (nodes.parent_id = 2)'] end it "should have many_to_one setter deal with a one_to_one reciprocal" do @c2.many_to_one :parent, :class => @c2, :key=>:parent_id @c2.one_to_one :child, :class => @c2, :key=>:parent_id d = @c2.new(:id => 1) e = @c2.new(:id => 2) e.associations[:child] = nil d.parent = e e.child.should == d d.parent = nil e.child.should == nil d.parent = e e.child.should == d f = @c2.new(:id => 3) d.parent = nil e.child.should == nil e.associations[:child] = f d.parent = e e.child.should == d end it "should have the setter remove the object from the previous associated object's reciprocal one_to_many cached association list if it exists" do @c2.many_to_one :parent, :class => @c2 @c2.one_to_many :children, :class => @c2, :key=>:parent_id ds = @c2.dataset def ds.fetch_rows(sql, &block) MODEL_DB.sqls << sql end d = @c2.new(:id => 1) e = @c2.new(:id => 2) f = @c2.new(:id => 3) e.children.should_not(include(d)) f.children.should_not(include(d)) MODEL_DB.reset d.parent = e e.children.should(include(d)) d.parent = f f.children.should(include(d)) e.children.should_not(include(d)) d.parent = nil f.children.should_not(include(d)) MODEL_DB.sqls.should == [] end it "should get all matching records and only return the first if :key option is set to nil" do c2 = @c2 @c2.one_to_many :children, :class => @c2, :key=>:parent_id @c2.many_to_one :first_grand_parent, :class => @c2, :key=>nil, :eager_graph=>:children, :dataset=>proc{c2.filter(:children_id=>parent_id)} ds = @c2.dataset def ds.columns [:id, :parent_id, :par_parent_id, :blah] end def ds.fetch_rows(sql, &block) MODEL_DB.sqls << sql yield({:id=>1, :parent_id=>0, :par_parent_id=>3, :blah=>4, :children_id=>2, :children_parent_id=>1, :children_par_parent_id=>5, :children_blah=>6}) end p = @c2.new(:parent_id=>2) fgp = p.first_grand_parent MODEL_DB.sqls.should == ["SELECT nodes.id, nodes.parent_id, nodes.par_parent_id, nodes.blah, children.id AS children_id, children.parent_id AS children_parent_id, children.par_parent_id AS children_par_parent_id, children.blah AS children_blah FROM nodes LEFT OUTER JOIN nodes AS children ON (children.parent_id = nodes.id) WHERE (children_id = 2)"] fgp.values.should == {:id=>1, :parent_id=>0, :par_parent_id=>3, :blah=>4} fgp.children.first.values.should == {:id=>2, :parent_id=>1, :par_parent_id=>5, :blah=>6} end it "should not create the setter method if :read_only option is used" do @c2.many_to_one :parent, :class => @c2, :read_only=>true @c2.instance_methods.collect{|x| x.to_s}.should(include('parent')) @c2.instance_methods.collect{|x| x.to_s}.should_not(include('parent=')) end it "should not add associations methods directly to class" do @c2.many_to_one :parent, :class => @c2 @c2.instance_methods.collect{|x| x.to_s}.should(include('parent')) @c2.instance_methods.collect{|x| x.to_s}.should(include('parent=')) @c2.instance_methods(false).collect{|x| x.to_s}.should_not(include('parent')) @c2.instance_methods(false).collect{|x| x.to_s}.should_not(include('parent=')) end it "should add associations methods to the :methods_module option" do m = Module.new @c2.many_to_one :parent, :class => @c2, :methods_module=>m m.instance_methods.collect{|x| x.to_s}.should(include('parent')) m.instance_methods.collect{|x| x.to_s}.should(include('parent=')) @c2.instance_methods.collect{|x| x.to_s}.should_not(include('parent')) @c2.instance_methods.collect{|x| x.to_s}.should_not(include('parent=')) end it "should add associations methods directly to class if :methods_module is the class itself" do @c2.many_to_one :parent, :class => @c2, :methods_module=>@c2 @c2.instance_methods(false).collect{|x| x.to_s}.should(include('parent')) @c2.instance_methods(false).collect{|x| x.to_s}.should(include('parent=')) end it "should raise an error if trying to set a model object that doesn't have a valid primary key" do @c2.many_to_one :parent, :class => @c2 p = @c2.new c = @c2.load(:id=>123) proc{c.parent = p}.should raise_error(Sequel::Error) end it "should make the change to the foreign_key value inside a _association= method" do @c2.many_to_one :parent, :class => @c2 @c2.private_instance_methods.collect{|x| x.to_s}.sort.should(include("_parent=")) p = @c2.new c = @c2.load(:id=>123) def p._parent=(x) @x = x end p.should_not_receive(:parent_id=) p.parent = c p.instance_variable_get(:@x).should == c end it "should support (before|after)_set callbacks" do h = [] @c2.many_to_one :parent, :class => @c2, :before_set=>[proc{|x,y| h << x.pk; h << (y ? -y.pk : :y)}, :blah], :after_set=>proc{h << 3} @c2.class_eval do class_variable_set(:@@blah, h) def []=(a, v) a == :parent_id ? (self.class.send(:class_variable_get, :@@blah) << (v ? 4 : 5)) : super end def blah(x) self.class.send(:class_variable_get, :@@blah) << (x ? x.pk : :x) end def blahr(x) self.class.send(:class_variable_get, :@@blah) << 6 end end p = @c2.load(:id=>10) c = @c2.load(:id=>123) h.should == [] p.parent = c h.should == [10, -123, 123, 4, 3] p.parent = nil h.should == [10, -123, 123, 4, 3, 10, :y, :x, 5, 3] end it "should support after_load association callback" do h = [] @c2.many_to_one :parent, :class => @c2, :after_load=>[proc{|x,y| h << [x.pk, y.pk]}, :al] @c2.class_eval do class_variable_set(:@@blah, h) def al(v) self.class.send(:class_variable_get, :@@blah) << v.pk end def @dataset.fetch_rows(sql) yield({:id=>20}) end end p = @c2.load(:id=>10, :parent_id=>20) parent = p.parent h.should == [[10, 20], 20] parent.pk.should == 20 end it "should raise error and not call internal add or remove method if before callback returns false, even if raise_on_save_failure is false" do # The reason for this is that assignment in ruby always returns the argument instead of the result # of the method, so we can't return nil to signal that the association callback prevented the modification p = @c2.new c = @c2.load(:id=>123) p.raise_on_save_failure = false @c2.many_to_one :parent, :class => @c2, :before_set=>:bs p.meta_def(:bs){|x| false} p.should_not_receive(:_parent=) proc{p.parent = c}.should raise_error(Sequel::Error) p.parent.should == nil p.associations[:parent] = c p.parent.should == c proc{p.parent = nil}.should raise_error(Sequel::Error) end it "should raise an error if a callback is not a proc or symbol" do @c2.many_to_one :parent, :class => @c2, :before_set=>Object.new proc{@c2.new.parent = @c2.load(:id=>1)}.should raise_error(Sequel::Error) end it "should call the remove callbacks for the previous object and the add callbacks for the new object" do c = @c2.load(:id=>123) d = @c2.load(:id=>321) p = @c2.new p.associations[:parent] = d h = [] @c2.many_to_one :parent, :class => @c2, :before_set=>:bs, :after_set=>:as @c2.class_eval do class_variable_set(:@@blah, h) def []=(a, v) a == :parent_id ? (self.class.send(:class_variable_get, :@@blah) << 5) : super end def bs(x) self.class.send(:class_variable_get, :@@blah) << x.pk end def as(x) self.class.send(:class_variable_get, :@@blah) << x.pk * 2 end end p.parent = c h.should == [123, 5, 246] end end describe Sequel::Model, "one_to_one" do before do @c1 = Class.new(Sequel::Model(:attributes)) do def _refresh(ds); end unrestrict_primary_key columns :id, :node_id, :y end @c2 = Class.new(Sequel::Model(:nodes)) do def _refresh(ds); end unrestrict_primary_key attr_accessor :xxx def self.name; 'Node'; end def self.to_s; 'Node'; end columns :id, :x, :parent_id, :par_parent_id, :blah, :node_id end @dataset = @c2.dataset @c2.dataset.extend(Module.new { def empty?; false; end def fetch_rows(sql) @db << sql yield Hash.new end }) @c1.dataset.extend(Module.new { def empty?; opts.has_key?(:empty) ? (super; true) : false; end def fetch_rows(sql) @db << sql yield Hash.new end }) @dataset = @c2.dataset MODEL_DB.reset end it "should have the getter method return a single object if the :one_to_one option is true" do @c2.one_to_one :attribute, :class => @c1 att = @c2.new(:id => 1234).attribute MODEL_DB.sqls.should == ['SELECT * FROM attributes WHERE (attributes.node_id = 1234) LIMIT 1'] att.should be_a_kind_of(@c1) att.values.should == {} end it "should not add a setter method if the :read_only option is true" do @c2.one_to_one :attribute, :class => @c1, :read_only=>true im = @c2.instance_methods.collect{|x| x.to_s} im.should(include('attribute')) im.should_not(include('attribute=')) end it "should add a setter method" do @c2.one_to_one :attribute, :class => @c1 attrib = @c1.new(:id=>3) d = @c1.dataset @c1.class_eval{remove_method :_refresh} def d.fetch_rows(s); yield({:id=>3}) end @c2.new(:id => 1234).attribute = attrib ['INSERT INTO attributes (node_id, id) VALUES (1234, 3)', 'INSERT INTO attributes (id, node_id) VALUES (3, 1234)'].should(include(MODEL_DB.sqls.last)) MODEL_DB.sqls.first.should == 'UPDATE attributes SET node_id = NULL WHERE ((node_id = 1234) AND (id != 3))' MODEL_DB.sqls.length.should == 2 @c2.new(:id => 1234).attribute.should == attrib MODEL_DB.sqls.clear attrib = @c1.load(:id=>3) @c2.new(:id => 1234).attribute = attrib MODEL_DB.sqls.should == ['UPDATE attributes SET node_id = NULL WHERE ((node_id = 1234) AND (id != 3))', "UPDATE attributes SET node_id = 1234 WHERE (id = 3)"] end it "should use a transaction in the setter method" do @c2.one_to_one :attribute, :class => @c1 @c2.use_transactions = true MODEL_DB.sqls.clear attrib = @c1.load(:id=>3) @c2.new(:id => 1234).attribute = attrib MODEL_DB.sqls.should == ['BEGIN', 'UPDATE attributes SET node_id = NULL WHERE ((node_id = 1234) AND (id != 3))', "UPDATE attributes SET node_id = 1234 WHERE (id = 3)", 'COMMIT'] end it "should have setter method respect association filters" do @c2.one_to_one :attribute, :class => @c1, :conditions=>{:a=>1} do |ds| ds.filter(:b=>2) end MODEL_DB.sqls.clear attrib = @c1.load(:id=>3) @c2.new(:id => 1234).attribute = attrib MODEL_DB.sqls.should == ['UPDATE attributes SET node_id = NULL WHERE ((node_id = 1234) AND (a = 1) AND (b = 2) AND (id != 3))', "UPDATE attributes SET node_id = 1234 WHERE (id = 3)"] end it "should have the setter method respect the :primary_key option" do @c2.one_to_one :attribute, :class => @c1, :primary_key=>:xxx attrib = @c1.new(:id=>3) d = @c1.dataset @c1.class_eval{remove_method :_refresh} def d.fetch_rows(s); yield({:id=>3}) end @c2.new(:id => 1234, :xxx=>5).attribute = attrib ['INSERT INTO attributes (node_id, id) VALUES (5, 3)', 'INSERT INTO attributes (id, node_id) VALUES (3, 5)'].should(include(MODEL_DB.sqls.last)) MODEL_DB.sqls.first.should == 'UPDATE attributes SET node_id = NULL WHERE ((node_id = 5) AND (id != 3))' MODEL_DB.sqls.length.should == 2 @c2.new(:id => 321, :xxx=>5).attribute.should == attrib MODEL_DB.sqls.clear attrib = @c1.load(:id=>3) @c2.new(:id => 621, :xxx=>5).attribute = attrib MODEL_DB.sqls.should == ['UPDATE attributes SET node_id = NULL WHERE ((node_id = 5) AND (id != 3))', 'UPDATE attributes SET node_id = 5 WHERE (id = 3)'] end it "should have the setter method respect composite keys" do @c2.one_to_one :attribute, :class => @c1, :key=>[:node_id, :y], :primary_key=>[:id, :x] attrib = @c1.load(:id=>3, :y=>6) d = @c1.dataset def d.fetch_rows(s); yield({:id=>3, :y=>6}) end @c2.load(:id => 1234, :x=>5).attribute = attrib MODEL_DB.sqls.last.should =~ /UPDATE attributes SET (node_id = 1234|y = 5), (node_id = 1234|y = 5) WHERE \(id = 3\)/ MODEL_DB.sqls.first.should =~ /UPDATE attributes SET (node_id|y) = NULL, (node_id|y) = NULL WHERE \(\(node_id = 1234\) AND \(y = 5\) AND \(id != 3\)\)/ end it "should use implicit key if omitted" do @c2.one_to_one :parent, :class => @c2 d = @c2.new(:id => 234) p = d.parent p.class.should == @c2 p.values.should == {} MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.node_id = 234) LIMIT 1"] end it "should use implicit class if omitted" do class ::ParParent < Sequel::Model end @c2.one_to_one :par_parent d = @c2.new(:id => 234) p = d.par_parent p.class.should == ParParent MODEL_DB.sqls.should == ["SELECT * FROM par_parents WHERE (par_parents.node_id = 234) LIMIT 1"] end it "should use class inside module if given as a string" do module ::Par class Parent < Sequel::Model end end @c2.one_to_one :par_parent, :class=>"Par::Parent" d = @c2.new(:id => 234) p = d.par_parent p.class.should == Par::Parent MODEL_DB.sqls.should == ["SELECT * FROM parents WHERE (parents.node_id = 234) LIMIT 1"] end it "should use explicit key if given" do @c2.one_to_one :parent, :class => @c2, :key => :blah d = @c2.new(:id => 234) p = d.parent p.class.should == @c2 p.values.should == {} MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.blah = 234) LIMIT 1"] end it "should use :primary_key option if given" do @c2.one_to_one :parent, :class => @c2, :key => :pk, :primary_key => :blah @c2.new(:id => 1, :blah => 567).parent MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.pk = 567) LIMIT 1"] end it "should support composite keys" do @c2.one_to_one :parent, :class => @c2, :primary_key=>[:id, :parent_id], :key=>[:parent_id, :id] @c2.new(:id => 1, :parent_id => 234).parent MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE ((nodes.parent_id = 1) AND (nodes.id = 234)) LIMIT 1"] end it "should not issue query if not all keys have values" do @c2.one_to_one :parent, :class => @c2, :key=>[:id, :parent_id], :primary_key=>[:parent_id, :id] @c2.new(:id => 1, :parent_id => nil).parent.should == nil MODEL_DB.sqls.should == [] end it "should raise an Error unless same number of composite keys used" do proc{@c2.one_to_one :parent, :class => @c2, :primary_key=>[:parent_id, :id]}.should raise_error(Sequel::Error) proc{@c2.one_to_one :parent, :class => @c2, :key=>[:id, :parent_id], :primary_key=>:id}.should raise_error(Sequel::Error) proc{@c2.one_to_one :parent, :class => @c2, :key=>:id, :primary_key=>[:parent_id, :id]}.should raise_error(Sequel::Error) proc{@c2.one_to_one :parent, :class => @c2, :key=>[:id, :parent_id, :blah], :primary_key=>[:parent_id, :id]}.should raise_error(Sequel::Error) end it "should use :select option if given" do @c2.one_to_one :parent, :class => @c2, :select=>[:id, :name] @c2.new(:id => 567).parent MODEL_DB.sqls.should == ["SELECT id, name FROM nodes WHERE (nodes.node_id = 567) LIMIT 1"] end it "should use :conditions option if given" do @c2.one_to_one :parent, :class => @c2, :conditions=>{:a=>32} @c2.new(:id => 567).parent MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE ((nodes.node_id = 567) AND (a = 32)) LIMIT 1"] @c2.one_to_one :parent, :class => @c2, :conditions=>:a MODEL_DB.sqls.clear @c2.new(:id => 567).parent MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE ((nodes.node_id = 567) AND a) LIMIT 1"] end it "should support :order, :limit (only for offset), and :dataset options, as well as a block" do c2 = @c2 @c2.one_to_one :child_20, :class => @c2, :key=>:id, :dataset=>proc{c2.filter(:parent_id=>pk)}, :limit=>[10,20], :order=>:name do |ds| ds.filter(:x.sql_number > 1) end @c2.load(:id => 100).child_20 MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE ((parent_id = 100) AND (x > 1)) ORDER BY name LIMIT 1 OFFSET 20"] end it "should return nil if primary_key value is nil" do @c2.one_to_one :parent, :class => @c2, :primary_key=>:node_id d = @c2.new(:id => 1) d.parent.should == nil MODEL_DB.sqls.should == [] end it "should cache negative lookup" do @c2.one_to_one :parent, :class => @c2 ds = @c2.dataset def ds.fetch_rows(sql, &block) MODEL_DB.sqls << sql end d = @c2.new(:id => 555) MODEL_DB.sqls.should == [] d.parent.should == nil MODEL_DB.sqls.should == ['SELECT * FROM nodes WHERE (nodes.node_id = 555) LIMIT 1'] d.parent.should == nil MODEL_DB.sqls.should == ['SELECT * FROM nodes WHERE (nodes.node_id = 555) LIMIT 1'] end it "should define a setter method" do @c2.one_to_one :parent, :class => @c2 d = @c2.new(:id => 1) f = @c2.new(:id => 3, :node_id=> 4321) d.parent = f f.values.should == {:id => 3, :node_id=>1} d.parent.should == f d.parent = nil d.parent.should == nil end it "should have the setter method respect the :primary_key option" do @c2.one_to_one :parent, :class => @c2, :primary_key=>:blah d = @c2.new(:id => 1, :blah => 3) e = @c2.new(:id => 4321, :node_id=>444) d.parent = e e.values.should == {:id => 4321, :node_id => 3} end it "should have the setter method respect the :key option" do @c2.one_to_one :parent, :class => @c2, :key=>:blah d = @c2.new(:id => 3) e = @c2.new(:id => 4321, :blah=>444) d.parent = e e.values.should == {:id => 4321, :blah => 3} end it "should persist changes to associated object when the setter is called" do @c2.one_to_one :parent, :class => @c2 d = @c2.load(:id => 1) d.parent = @c2.load(:id => 3, :node_id=>345) MODEL_DB.sqls.should == ["UPDATE nodes SET node_id = NULL WHERE ((node_id = 1) AND (id != 3))", "UPDATE nodes SET node_id = 1 WHERE (id = 3)"] end it "should set cached instance variable when accessed" do @c2.one_to_one :parent, :class => @c2 d = @c2.load(:id => 1) d.associations[:parent].should == nil ds = @c2.dataset def ds.fetch_rows(sql, &block); MODEL_DB.sqls << sql; yield({:id=>234}) end e = d.parent MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.node_id = 1) LIMIT 1"] d.parent MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.node_id = 1) LIMIT 1"] d.associations[:parent].should == e end it "should set cached instance variable when assigned" do @c2.one_to_one :parent, :class => @c2 d = @c2.load(:id => 1) d.associations[:parent].should == nil e = @c2.load(:id => 234) d.parent = e f = d.parent d.associations[:parent].should == e e.should == f end it "should use cached instance variable if available" do @c2.one_to_one :parent, :class => @c2 d = @c2.load(:id => 1, :parent_id => 234) d.associations[:parent] = 42 d.parent.should == 42 MODEL_DB.sqls.should == [] end it "should not use cached instance variable if asked to reload" do @c2.one_to_one :parent, :class => @c2 d = @c2.load(:id => 1) d.associations[:parent] = [42] d.parent(true).should_not == 42 MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.node_id = 1) LIMIT 1"] end it "should have the setter set the reciprocal many_to_one cached association" do @c2.one_to_one :parent, :class => @c2, :key=>:parent_id @c2.many_to_one :child, :class => @c2, :key=>:parent_id d = @c2.load(:id => 1) e = @c2.load(:id => 2) d.parent = e e.child.should == d MODEL_DB.sqls.should == ["UPDATE nodes SET parent_id = NULL WHERE ((parent_id = 1) AND (id != 2))", "UPDATE nodes SET parent_id = 1 WHERE (id = 2)"] MODEL_DB.reset d.parent = nil e.child.should == nil MODEL_DB.sqls.should == ["UPDATE nodes SET parent_id = NULL WHERE (parent_id = 1)"] end it "should have the setter remove the object from the previous associated object's reciprocal many_to_one cached association list if it exists" do @c2.one_to_one :parent, :class => @c2, :key=>:parent_id @c2.many_to_one :child, :class => @c2, :key=>:parent_id ds = @c2.dataset def ds.fetch_rows(sql, &block) MODEL_DB.sqls << sql end d = @c2.load(:id => 1) e = @c2.load(:id => 2) f = @c2.load(:id => 3) e.child.should == nil f.child.should == nil MODEL_DB.reset d.parent = e e.child.should == d d.parent = f f.child.should == d e.child.should == nil d.parent = nil f.child.should == nil end it "should not add associations methods directly to class" do @c2.one_to_one :parent, :class => @c2 @c2.instance_methods.collect{|x| x.to_s}.should(include('parent')) @c2.instance_methods.collect{|x| x.to_s}.should(include('parent=')) @c2.instance_methods(false).collect{|x| x.to_s}.should_not(include('parent')) @c2.instance_methods(false).collect{|x| x.to_s}.should_not(include('parent=')) end it "should raise an error if the current model object that doesn't have a valid primary key" do @c2.one_to_one :parent, :class => @c2 p = @c2.new c = @c2.load(:id=>123) proc{p.parent = c}.should raise_error(Sequel::Error) end it "should make the change to the foreign_key value inside a _association= method" do @c2.one_to_one :parent, :class => @c2 @c2.private_instance_methods.collect{|x| x.to_s}.sort.should(include("_parent=")) c = @c2.new p = @c2.load(:id=>123) def p._parent=(x) @x = x end p.should_not_receive(:parent_id=) p.parent = c p.instance_variable_get(:@x).should == c end it "should support (before|after)_set callbacks" do h = [] @c2.one_to_one :parent, :class => @c2, :before_set=>[proc{|x,y| h << x.pk; h << (y ? -y.pk : :y)}, :blah], :after_set=>proc{h << 3} @c2.class_eval do class_variable_set(:@@blah, h) def blah(x) self.class.send(:class_variable_get, :@@blah) << (x ? x.pk : :x) end def blahr(x) self.class.send(:class_variable_get, :@@blah) << 6 end end p = @c2.load(:id=>10) c = @c2.load(:id=>123) h.should == [] p.parent = c h.should == [10, -123, 123, 3] p.parent = nil h.should == [10, -123, 123, 3, 10, :y, :x, 3] end it "should support after_load association callback" do h = [] @c2.one_to_one :parent, :class => @c2, :after_load=>[proc{|x,y| h << [x.pk, y.pk]}, :al] @c2.class_eval do class_variable_set(:@@blah, h) def al(v) self.class.send(:class_variable_get, :@@blah) << v.pk end def @dataset.fetch_rows(sql) yield({:id=>20}) end end p = @c2.load(:id=>10) parent = p.parent h.should == [[10, 20], 20] parent.pk.should == 20 end it "should raise error and not call internal add or remove method if before callback returns false, even if raise_on_save_failure is false" do # The reason for this is that assignment in ruby always returns the argument instead of the result # of the method, so we can't return nil to signal that the association callback prevented the modification p = @c2.new c = @c2.load(:id=>123) p.raise_on_save_failure = false @c2.one_to_one :parent, :class => @c2, :before_set=>:bs p.meta_def(:bs){|x| false} p.should_not_receive(:_parent=) proc{p.parent = c}.should raise_error(Sequel::Error) p.parent.should == nil p.associations[:parent] = c p.parent.should == c proc{p.parent = nil}.should raise_error(Sequel::Error) end it "should raise an error if a callback is not a proc or symbol" do @c2.one_to_one :parent, :class => @c2, :before_set=>Object.new proc{@c2.new.parent = @c2.load(:id=>1)}.should raise_error(Sequel::Error) end it "should call the set callbacks" do c = @c2.load(:id=>123) d = @c2.load(:id=>321) p = @c2.load(:id=>32) p.associations[:parent] = [d] h = [] @c2.one_to_one :parent, :class => @c2, :before_set=>:bs, :after_set=>:as @c2.class_eval do class_variable_set(:@@blah, h) def []=(a, v) a == :node_id ? (self.class.send(:class_variable_get, :@@blah) << 5) : super end def bs(x) self.class.send(:class_variable_get, :@@blah) << x.pk end def as(x) self.class.send(:class_variable_get, :@@blah) << x.pk * 2 end end p.parent = c h.should == [123, 5, 246] end it "should work_correctly when used with associate" do @c2.associate :one_to_one, :parent, :class => @c2 @c2.load(:id => 567).parent.should == @c2.load({}) MODEL_DB.sqls.should == ["SELECT * FROM nodes WHERE (nodes.node_id = 567) LIMIT 1"] end end describe Sequel::Model, "one_to_many" do before do MODEL_DB.reset @c1 = Class.new(Sequel::Model(:attributes)) do def _refresh(ds); end unrestrict_primary_key columns :id, :node_id, :y, :z def self.[](id) load(id.is_a?(Array) ? {:id => id[0], :z => id[1]} : {:id => id}) end end @c2 = Class.new(Sequel::Model(:nodes)) do def _refresh(ds); end unrestrict_primary_key attr_accessor :xxx def self.name; 'Node'; end def self.to_s; 'Node'; end columns :id, :x end @dataset = @c2.dataset @c2.dataset.extend(Module.new { def empty?; false; end def fetch_rows(sql) @db << sql yield Hash.new end }) @c1.dataset.extend(Module.new { def empty?; opts.has_key?(:empty) ? (super; true) : false; end def fetch_rows(sql) @db << sql yield Hash.new end }) end it "should use implicit key if omitted" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) a = n.attributes_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT * FROM attributes WHERE (attributes.node_id = 1234)' end it "should use implicit class if omitted" do class ::HistoricalValue < Sequel::Model end @c2.one_to_many :historical_values n = @c2.new(:id => 1234) v = n.historical_values_dataset v.should be_a_kind_of(Sequel::Dataset) v.sql.should == 'SELECT * FROM historical_values WHERE (historical_values.node_id = 1234)' v.model.should == HistoricalValue end it "should use class inside a module if given as a string" do module ::Historical class Value < Sequel::Model end end @c2.one_to_many :historical_values, :class=>'Historical::Value' n = @c2.new(:id => 1234) v = n.historical_values_dataset v.should be_a_kind_of(Sequel::Dataset) v.sql.should == 'SELECT * FROM values WHERE (values.node_id = 1234)' v.model.should == Historical::Value end it "should use a callback if given one as the argument" do @c2.one_to_many :attributes, :class => @c1, :key => :nodeid d = @c2.create(:id => 1234) MODEL_DB.reset d.associations[:attributes] = [] d.attributes(proc{|ds| ds.filter{name > 'M'}}).should_not == [] MODEL_DB.sqls.should == ["SELECT * FROM attributes WHERE ((attributes.nodeid = 1234) AND (name > 'M'))"] end it "should use explicit key if given" do @c2.one_to_many :attributes, :class => @c1, :key => :nodeid n = @c2.new(:id => 1234) a = n.attributes_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT * FROM attributes WHERE (attributes.nodeid = 1234)' end it "should support_composite keys" do @c2.one_to_many :attributes, :class => @c1, :key =>[:node_id, :id], :primary_key=>[:id, :x] @c2.load(:id => 1234, :x=>234).attributes_dataset.sql.should == 'SELECT * FROM attributes WHERE ((attributes.node_id = 1234) AND (attributes.id = 234))' end it "should not issue query if not all keys have values" do @c2.one_to_many :attributes, :class => @c1, :key =>[:node_id, :id], :primary_key=>[:id, :x] @c2.load(:id => 1234, :x=>nil).attributes.should == [] MODEL_DB.sqls.should == [] end it "should raise an Error unless same number of composite keys used" do proc{@c2.one_to_many :attributes, :class => @c1, :key=>[:node_id, :id]}.should raise_error(Sequel::Error) proc{@c2.one_to_many :attributes, :class => @c1, :primary_key=>[:node_id, :id]}.should raise_error(Sequel::Error) proc{@c2.one_to_many :attributes, :class => @c1, :key=>[:node_id, :id], :primary_key=>:id}.should raise_error(Sequel::Error) proc{@c2.one_to_many :attributes, :class => @c1, :key=>:id, :primary_key=>[:node_id, :id]}.should raise_error(Sequel::Error) proc{@c2.one_to_many :attributes, :class => @c1, :key=>[:node_id, :id, :x], :primary_key=>[:parent_id, :id]}.should raise_error(Sequel::Error) end it "should define an add_ method that works on existing records" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) a = @c1.new(:id => 2345) a.save MODEL_DB.reset a.should == n.add_attribute(a) a.values.should == {:node_id => 1234, :id => 2345} MODEL_DB.sqls.should == ['UPDATE attributes SET node_id = 1234 WHERE (id = 2345)'] end it "should define an add_ method that works on new records" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) a = @c1.new(:id => 234) # do not save MODEL_DB.reset a.should == n.add_attribute(a) MODEL_DB.sqls.first.should =~ /INSERT INTO attributes \((node_)?id, (node_)?id\) VALUES \(1?234, 1?234\)/ a.values.should == {:node_id => 1234, :id => 234} end it "should define a remove_ method that works on existing records" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) a = @c1.new(:id => 2345, :node_id => 1234) a.save MODEL_DB.reset a.should == n.remove_attribute(a) a.values.should == {:node_id => nil, :id => 2345} MODEL_DB.sqls.should == ['UPDATE attributes SET node_id = NULL WHERE (id = 2345)'] end it "should have the remove_ method raise an error if the passed object is not already associated" do @c2.one_to_many :attributes, :class => @c1 @c1.dataset.opts[:empty] = true n = @c2.new(:id => 1234) a = @c1.load(:id => 2345, :node_id => 1234) MODEL_DB.reset proc{n.remove_attribute(a)}.should raise_error(Sequel::Error) MODEL_DB.sqls.should == ["SELECT 1 FROM attributes WHERE ((attributes.node_id = 1234) AND (id = 2345)) LIMIT 1"] end it "should accept a hash for the add_ method and create a new record" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) MODEL_DB.reset @c1.load(:node_id => 1234, :id => 234).should == n.add_attribute(:id => 234) MODEL_DB.sqls.first.should =~ /INSERT INTO attributes \((node_)?id, (node_)?id\) VALUES \(1?234, 1?234\)/ end it "should accept a primary key for the add_ method" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) MODEL_DB.reset @c1.load(:node_id => 1234, :id => 234).should == n.add_attribute(234) MODEL_DB.sqls.first.should == "UPDATE attributes SET node_id = 1234 WHERE (id = 234)" end it "should raise an error in the add_ method if the passed associated object is not of the correct type" do @c2.one_to_many :attributes, :class => @c1 proc{@c2.new(:id => 1234).add_attribute(@c2.new)}.should raise_error(Sequel::Error) end it "should accept a primary key for the remove_ method and remove an existing record" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) ds = @c1.dataset def ds.fetch_rows(sql) db << sql yield({:id=>234, :node_id=>1234}) end MODEL_DB.reset @c1.load(:node_id => nil, :id => 234).should == n.remove_attribute(234) MODEL_DB.sqls.should == ['SELECT * FROM attributes WHERE ((attributes.node_id = 1234) AND (attributes.id = 234)) LIMIT 1', 'UPDATE attributes SET node_id = NULL WHERE (id = 234)'] end it "should raise an error in the remove_ method if the passed associated object is not of the correct type" do @c2.one_to_many :attributes, :class => @c1 proc{@c2.new(:id => 1234).remove_attribute(@c2.new)}.should raise_error(Sequel::Error) end it "should have add_ method respect the :primary_key option" do @c2.one_to_many :attributes, :class => @c1, :primary_key=>:xxx n = @c2.new(:id => 1234, :xxx=>5) a = @c1.new(:id => 2345) a.save MODEL_DB.reset a.should == n.add_attribute(a) MODEL_DB.sqls.should == ['UPDATE attributes SET node_id = 5 WHERE (id = 2345)'] end it "should have add_ method not add the same object to the cached association array if the object is already in the array" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) a = @c1.new(:id => 2345) a.save MODEL_DB.reset n.associations[:attributes] = [] a.should == n.add_attribute(a) a.should == n.add_attribute(a) a.values.should == {:node_id => 1234, :id => 2345} MODEL_DB.sqls.should == ['UPDATE attributes SET node_id = 1234 WHERE (id = 2345)'] * 2 n.attributes.should == [a] end it "should have add_ method respect composite keys" do @c2.one_to_many :attributes, :class => @c1, :key =>[:node_id, :y], :primary_key=>[:id, :x] n = @c2.load(:id => 1234, :x=>5) a = @c1.load(:id => 2345) a.should == n.add_attribute(a) MODEL_DB.sqls.first.should =~ /UPDATE attributes SET (node_id = 1234|y = 5), (node_id = 1234|y = 5) WHERE \(id = 2345\)/ end it "should have add_ method accept a composite key" do @c1.set_primary_key :id, :z @c2.one_to_many :attributes, :class => @c1, :key =>[:node_id, :y], :primary_key=>[:id, :x] n = @c2.load(:id => 1234, :x=>5) a = @c1.load(:id => 2345, :z => 8, :node_id => 1234, :y=>5) a.should == n.add_attribute([2345, 8]) MODEL_DB.sqls.first.should =~ /UPDATE attributes SET (node_id|y) = (1234|5), (node_id|y) = (1234|5) WHERE \(\((id|z) = (2345|8)\) AND \((id|z) = (2345|8)\)\)/ end it "should have remove_ method respect composite keys" do @c2.one_to_many :attributes, :class => @c1, :key =>[:node_id, :y], :primary_key=>[:id, :x] n = @c2.load(:id => 1234, :x=>5) a = @c1.load(:id => 2345, :node_id=>1234, :y=>5) a.should == n.remove_attribute(a) MODEL_DB.sqls.first.should =~ /UPDATE attributes SET (node_id|y) = NULL, (node_id|y) = NULL WHERE \(id = 2345\)/ end it "should accept a array of composite primary key values for the remove_ method and remove an existing record" do @c1.set_primary_key :id, :y @c2.one_to_many :attributes, :class => @c1, :key=>:node_id, :primary_key=>:id n = @c2.new(:id => 123) ds = @c1.dataset def ds.fetch_rows(sql) db << sql yield({:id=>234, :node_id=>123, :y=>5}) end MODEL_DB.reset @c1.load(:node_id => nil, :y => 5, :id => 234).should == n.remove_attribute([234, 5]) MODEL_DB.sqls.length.should == 2 MODEL_DB.sqls.first.should =~ /SELECT \* FROM attributes WHERE \(\(attributes.node_id = 123\) AND \(attributes\.(id|y) = (234|5)\) AND \(attributes\.(id|y) = (234|5)\)\) LIMIT 1/ MODEL_DB.sqls.last.should =~ /UPDATE attributes SET node_id = NULL WHERE \(\((id|y) = (234|5)\) AND \((id|y) = (234|5)\)\)/ end it "should raise an error in add_ and remove_ if the passed object returns false to save (is not valid)" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) a = @c1.new(:id => 2345) def a.valid?(opts); false; end proc{n.add_attribute(a)}.should raise_error(Sequel::Error) proc{n.remove_attribute(a)}.should raise_error(Sequel::Error) end it "should not validate the associated object in add_ and remove_ if the :validate=>false option is used" do @c2.one_to_many :attributes, :class => @c1, :validate=>false n = @c2.new(:id => 1234) a = @c1.new(:id => 2345) def a.valid?(opts); false; end n.add_attribute(a).should == a n.remove_attribute(a).should == a end it "should raise an error if the model object doesn't have a valid primary key" do @c2.one_to_many :attributes, :class => @c1 a = @c2.new n = @c1.load(:id=>123) proc{a.attributes_dataset}.should raise_error(Sequel::Error) proc{a.add_attribute(n)}.should raise_error(Sequel::Error) proc{a.remove_attribute(n)}.should raise_error(Sequel::Error) proc{a.remove_all_attributes}.should raise_error(Sequel::Error) end it "should use :primary_key option if given" do @c1.one_to_many :nodes, :class => @c2, :primary_key => :node_id, :key=>:id n = @c1.load(:id => 1234, :node_id=>4321) n.nodes_dataset.sql.should == "SELECT * FROM nodes WHERE (nodes.id = 4321)" end it "should support a select option" do @c2.one_to_many :attributes, :class => @c1, :select => [:id, :name] n = @c2.new(:id => 1234) n.attributes_dataset.sql.should == "SELECT id, name FROM attributes WHERE (attributes.node_id = 1234)" end it "should support a conditions option" do @c2.one_to_many :attributes, :class => @c1, :conditions => {:a=>32} n = @c2.new(:id => 1234) n.attributes_dataset.sql.should == "SELECT * FROM attributes WHERE ((attributes.node_id = 1234) AND (a = 32))" @c2.one_to_many :attributes, :class => @c1, :conditions => ~:a n = @c2.new(:id => 1234) n.attributes_dataset.sql.should == "SELECT * FROM attributes WHERE ((attributes.node_id = 1234) AND NOT a)" end it "should support an order option" do @c2.one_to_many :attributes, :class => @c1, :order => :kind n = @c2.new(:id => 1234) n.attributes_dataset.sql.should == "SELECT * FROM attributes WHERE (attributes.node_id = 1234) ORDER BY kind" end it "should support an array for the order option" do @c2.one_to_many :attributes, :class => @c1, :order => [:kind1, :kind2] n = @c2.new(:id => 1234) n.attributes_dataset.sql.should == "SELECT * FROM attributes WHERE (attributes.node_id = 1234) ORDER BY kind1, kind2" end it "should return array with all members of the association" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) atts = n.attributes atts.should be_a_kind_of(Array) atts.size.should == 1 atts.first.should be_a_kind_of(@c1) atts.first.values.should == {} MODEL_DB.sqls.should == ['SELECT * FROM attributes WHERE (attributes.node_id = 1234)'] end it "should accept a block" do @c2.one_to_many :attributes, :class => @c1 do |ds| ds.filter(:xxx => @xxx) end n = @c2.new(:id => 1234) atts = n.attributes atts.should be_a_kind_of(Array) atts.size.should == 1 atts.first.should be_a_kind_of(@c1) atts.first.values.should == {} MODEL_DB.sqls.should == ['SELECT * FROM attributes WHERE ((attributes.node_id = 1234) AND (xxx IS NULL))'] end it "should support :order option with block" do @c2.one_to_many :attributes, :class => @c1, :order => :kind do |ds| ds.filter(:xxx => @xxx) end n = @c2.new(:id => 1234) atts = n.attributes atts.should be_a_kind_of(Array) atts.size.should == 1 atts.first.should be_a_kind_of(@c1) atts.first.values.should == {} MODEL_DB.sqls.should == ['SELECT * FROM attributes WHERE ((attributes.node_id = 1234) AND (xxx IS NULL)) ORDER BY kind'] end it "should have the block argument affect the _dataset method" do @c2.one_to_many :attributes, :class => @c1 do |ds| ds.filter(:xxx => 456) end @c2.new(:id => 1234).attributes_dataset.sql.should == 'SELECT * FROM attributes WHERE ((attributes.node_id = 1234) AND (xxx = 456))' end it "should support a :dataset option that is used instead of the default" do c1 = @c1 @c2.one_to_many :all_other_attributes, :class => @c1, :dataset=>proc{c1.filter(:nodeid=>pk).invert}, :order=>:a, :limit=>10 do |ds| ds.filter(:xxx => 5) end @c2.new(:id => 1234).all_other_attributes_dataset.sql.should == 'SELECT * FROM attributes WHERE ((nodeid != 1234) AND (xxx = 5)) ORDER BY a LIMIT 10' n = @c2.new(:id => 1234) atts = n.all_other_attributes atts.should be_a_kind_of(Array) atts.size.should == 1 atts.first.should be_a_kind_of(@c1) atts.first.values.should == {} MODEL_DB.sqls.should == ['SELECT * FROM attributes WHERE ((nodeid != 1234) AND (xxx = 5)) ORDER BY a LIMIT 10'] end it "should support a :limit option" do @c2.one_to_many :attributes, :class => @c1 , :limit=>10 @c2.new(:id => 1234).attributes_dataset.sql.should == 'SELECT * FROM attributes WHERE (attributes.node_id = 1234) LIMIT 10' @c2.one_to_many :attributes, :class => @c1 , :limit=>[10,10] @c2.new(:id => 1234).attributes_dataset.sql.should == 'SELECT * FROM attributes WHERE (attributes.node_id = 1234) LIMIT 10 OFFSET 10' end it "should have the :eager option affect the _dataset method" do @c2.one_to_many :attributes, :class => @c2 , :eager=>:attributes @c2.new(:id => 1234).attributes_dataset.opts[:eager].should == {:attributes=>nil} end it "should set cached instance variable when accessed" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) MODEL_DB.reset n.associations.include?(:attributes).should == false atts = n.attributes atts.should == n.associations[:attributes] MODEL_DB.sqls.should == ['SELECT * FROM attributes WHERE (attributes.node_id = 1234)'] end it "should use cached instance variable if available" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) MODEL_DB.reset n.associations[:attributes] = 42 n.attributes.should == 42 MODEL_DB.sqls.should == [] end it "should not use cached instance variable if asked to reload" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) MODEL_DB.reset n.associations[:attributes] = 42 n.attributes(true).should_not == 42 MODEL_DB.sqls.should == ['SELECT * FROM attributes WHERE (attributes.node_id = 1234)'] end it "should add item to cached instance variable if it exists when calling add_" do @c2.one_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) att = @c1.new(:id => 345) MODEL_DB.reset a = [] n.associations[:attributes] = a n.add_attribute(att) a.should == [att] end it "should set object to item's reciprocal cached association variable when calling add_" do @c2.one_to_many :attributes, :class => @c1 @c1.many_to_one :node, :class => @c2 n = @c2.new(:id => 1234) att = @c1.new(:id => 345) n.add_attribute(att) att.node.should == n end it "should remove item from cached instance variable if it exists when calling remove_" do @c2.one_to_many :attributes, :class => @c1 n = @c2.load(:id => 1234) att = @c1.load(:id => 345) MODEL_DB.reset a = [att] n.associations[:attributes] = a n.remove_attribute(att) a.should == [] end it "should remove item's reciprocal cached association variable when calling remove_" do @c2.one_to_many :attributes, :class => @c1 @c1.many_to_one :node, :class => @c2 n = @c2.new(:id => 1234) att = @c1.new(:id => 345) att.associations[:node] = n att.node.should == n n.remove_attribute(att) att.node.should == nil end it "should not create the add_, remove_, or remove_all_ methods if :read_only option is used" do @c2.one_to_many :attributes, :class => @c1, :read_only=>true im = @c2.instance_methods.collect{|x| x.to_s} im.should(include('attributes')) im.should(include('attributes_dataset')) im.should_not(include('add_attribute')) im.should_not(include('remove_attribute')) im.should_not(include('remove_all_attributes')) end it "should not add associations methods directly to class" do @c2.one_to_many :attributes, :class => @c1 im = @c2.instance_methods.collect{|x| x.to_s} im.should(include('attributes')) im.should(include('attributes_dataset')) im.should(include('add_attribute')) im.should(include('remove_attribute')) im.should(include('remove_all_attributes')) im2 = @c2.instance_methods(false).collect{|x| x.to_s} im2.should_not(include('attributes')) im2.should_not(include('attributes_dataset')) im2.should_not(include('add_attribute')) im2.should_not(include('remove_attribute')) im2.should_not(include('remove_all_attributes')) end it "should populate the reciprocal many_to_one instance variable when loading the one_to_many association" do @c2.one_to_many :attributes, :class => @c1, :key => :node_id @c1.many_to_one :node, :class => @c2, :key => :node_id n = @c2.new(:id => 1234) atts = n.attributes MODEL_DB.sqls.should == ['SELECT * FROM attributes WHERE (attributes.node_id = 1234)'] atts.should be_a_kind_of(Array) atts.size.should == 1 atts.first.should be_a_kind_of(@c1) atts.first.values.should == {} atts.first.node.should == n MODEL_DB.sqls.length.should == 1 end it "should use an explicit reciprocal instance variable if given" do @c2.one_to_many :attributes, :class => @c1, :key => :node_id, :reciprocal=>:wxyz n = @c2.new(:id => 1234) atts = n.attributes MODEL_DB.sqls.should == ['SELECT * FROM attributes WHERE (attributes.node_id = 1234)'] atts.should be_a_kind_of(Array) atts.size.should == 1 atts.first.should be_a_kind_of(@c1) atts.first.values.should == {} atts.first.associations[:wxyz].should == n MODEL_DB.sqls.length.should == 1 end it "should have an remove_all_ method that removes all associations" do @c2.one_to_many :attributes, :class => @c1 @c2.new(:id => 1234).remove_all_attributes MODEL_DB.sqls.first.should == 'UPDATE attributes SET node_id = NULL WHERE (node_id = 1234)' end it "should have remove_all method respect association filters" do @c2.one_to_many :attributes, :class => @c1, :conditions=>{:a=>1} do |ds| ds.filter(:b=>2) end @c2.new(:id => 1234).remove_all_attributes MODEL_DB.sqls.should == ['UPDATE attributes SET node_id = NULL WHERE ((node_id = 1234) AND (a = 1) AND (b = 2))'] end it "should have the remove_all_ method respect the :primary_key option" do @c2.one_to_many :attributes, :class => @c1, :primary_key=>:xxx @c2.new(:id => 1234, :xxx=>5).remove_all_attributes MODEL_DB.sqls.first.should == 'UPDATE attributes SET node_id = NULL WHERE (node_id = 5)' end it "should have the remove_all_ method respect composite keys" do @c2.one_to_many :attributes, :class => @c1, :key=>[:node_id, :y], :primary_key=>[:id, :x] @c2.new(:id => 1234, :x=>5).remove_all_attributes MODEL_DB.sqls.first.should =~ /UPDATE attributes SET (node_id|y) = NULL, (node_id|y) = NULL WHERE \(\(node_id = 1234\) AND \(y = 5\)\)/ end it "remove_all should set the cached instance variable to []" do @c2.one_to_many :attributes, :class => @c1 node = @c2.new(:id => 1234) node.remove_all_attributes node.associations[:attributes].should == [] end it "remove_all should return the array of previously associated items if the cached instance variable exists" do @c2.one_to_many :attributes, :class => @c1 attrib = @c1.new(:id=>3) node = @c2.new(:id => 1234) d = @c1.dataset def d.fetch_rows(s); end node.attributes.should == [] def attrib.save(*); self end node.add_attribute(attrib) node.associations[:attributes].should == [attrib] node.remove_all_attributes.should == [attrib] end it "remove_all should return nil if the cached instance variable does not exist" do @c2.one_to_many :attributes, :class => @c1 @c2.new(:id => 1234).remove_all_attributes.should == nil end it "remove_all should remove the current item from all reciprocal instance varaibles if it cached instance variable exists" do @c2.one_to_many :attributes, :class => @c1 @c1.many_to_one :node, :class => @c2 d = @c1.dataset def d.fetch_rows(s); end d = @c2.dataset def d.fetch_rows(s); end attrib = @c1.new(:id=>3) node = @c2.new(:id => 1234) node.attributes.should == [] attrib.node.should == nil def attrib.save(*); self end node.add_attribute(attrib) attrib.associations[:node].should == node node.remove_all_attributes attrib.associations.fetch(:node, 2).should == nil end it "should call an _add_ method internally to add attributes" do @c2.one_to_many :attributes, :class => @c1 @c2.private_instance_methods.collect{|x| x.to_s}.sort.should(include("_add_attribute")) p = @c2.load(:id=>10) c = @c1.load(:id=>123) def p._add_attribute(x) @x = x end c.should_not_receive(:node_id=) p.add_attribute(c) p.instance_variable_get(:@x).should == c end it "should allow additional arguments given to the add_ method and pass them onwards to the _add_ method" do @c2.one_to_many :attributes, :class => @c1 p = @c2.load(:id=>10) c = @c1.load(:id=>123) def p._add_attribute(x,*y) @x = x @y = y end c.should_not_receive(:node_id=) p.add_attribute(c,:foo,:bar=>:baz) p.instance_variable_get(:@x).should == c p.instance_variable_get(:@y).should == [:foo,{:bar=>:baz}] end it "should call a _remove_ method internally to remove attributes" do @c2.one_to_many :attributes, :class => @c1 @c2.private_instance_methods.collect{|x| x.to_s}.sort.should(include("_remove_attribute")) p = @c2.load(:id=>10) c = @c1.load(:id=>123) def p._remove_attribute(x) @x = x end c.should_not_receive(:node_id=) p.remove_attribute(c) p.instance_variable_get(:@x).should == c end it "should allow additional arguments given to the remove_ method and pass them onwards to the _remove_ method" do @c2.one_to_many :attributes, :class => @c1 p = @c2.load(:id=>10) c = @c1.load(:id=>123) def p._remove_attribute(x,*y) @x = x @y = y end c.should_not_receive(:node_id=) p.remove_attribute(c,:foo,:bar=>:baz) p.instance_variable_get(:@x).should == c p.instance_variable_get(:@y).should == [:foo,{:bar=>:baz}] end it "should allow additional arguments given to the remove_all_ method and pass them onwards to the _remove_all_ method" do @c2.one_to_many :attributes, :class => @c1 p = @c2.load(:id=>10) c = @c1.load(:id=>123) def p._remove_all_attributes(*y) @y = y end c.should_not_receive(:node_id=) p.remove_all_attributes(:foo,:bar=>:baz) p.instance_variable_get(:@y).should == [:foo,{:bar=>:baz}] end it "should call a _remove_all_ method internally to remove attributes" do @c2.one_to_many :attributes, :class => @c1 @c2.private_instance_methods.collect{|x| x.to_s}.sort.should(include("_remove_all_attributes")) p = @c2.load(:id=>10) def p._remove_all_attributes @x = :foo end p.remove_all_attributes p.instance_variable_get(:@x).should == :foo end it "should support (before|after)_(add|remove) callbacks" do h = [] @c2.one_to_many :attributes, :class => @c1, :before_add=>[proc{|x,y| h << x.pk; h << -y.pk}, :blah], :after_add=>proc{h << 3}, :before_remove=>:blah, :after_remove=>[:blahr] @c2.class_eval do class_variable_set(:@@blah, h) def _add_attribute(v) self.class.send(:class_variable_get, :@@blah) << 4 end def _remove_attribute(v) self.class.send(:class_variable_get, :@@blah) << 5 end def blah(x) self.class.send(:class_variable_get, :@@blah) << x.pk end def blahr(x) self.class.send(:class_variable_get, :@@blah) << 6 end end p = @c2.load(:id=>10) c = @c1.load(:id=>123) h.should == [] p.add_attribute(c) h.should == [10, -123, 123, 4, 3] p.remove_attribute(c) h.should == [10, -123, 123, 4, 3, 123, 5, 6] end it "should support after_load association callback" do h = [] @c2.one_to_many :attributes, :class => @c1, :after_load=>[proc{|x,y| h << [x.pk, y.collect{|z|z.pk}]}, :al] @c2.class_eval do class_variable_set(:@@blah, h) def al(v) v.each{|x| self.class.send(:class_variable_get, :@@blah) << x.pk} end end @c1.class_eval do def @dataset.fetch_rows(sql) yield({:id=>20}) yield({:id=>30}) end end p = @c2.load(:id=>10, :parent_id=>20) attributes = p.attributes h.should == [[10, [20, 30]], 20, 30] attributes.collect{|a| a.pk}.should == [20, 30] end it "should raise error and not call internal add or remove method if before callback returns false if raise_on_save_failure is true" do p = @c2.load(:id=>10) c = @c1.load(:id=>123) @c2.one_to_many :attributes, :class => @c1, :before_add=>:ba, :before_remove=>:br p.should_receive(:ba).once.with(c).and_return(false) p.should_not_receive(:_add_attribute) p.should_not_receive(:_remove_attribute) p.associations[:attributes] = [] proc{p.add_attribute(c)}.should raise_error(Sequel::Error) p.attributes.should == [] p.associations[:attributes] = [c] p.should_receive(:br).once.with(c).and_return(false) proc{p.remove_attribute(c)}.should raise_error(Sequel::Error) p.attributes.should == [c] end it "should return nil and not call internal add or remove method if before callback returns false if raise_on_save_failure is false" do p = @c2.load(:id=>10) c = @c1.load(:id=>123) p.raise_on_save_failure = false @c2.one_to_many :attributes, :class => @c1, :before_add=>:ba, :before_remove=>:br p.should_receive(:ba).once.with(c).and_return(false) p.should_not_receive(:_add_attribute) p.should_not_receive(:_remove_attribute) p.associations[:attributes] = [] p.add_attribute(c).should == nil p.attributes.should == [] p.associations[:attributes] = [c] p.should_receive(:br).once.with(c).and_return(false) p.remove_attribute(c).should == nil p.attributes.should == [c] end it "should raise an error if trying to use the :one_to_one option" do proc{@c2.one_to_many :attribute, :class => @c1, :one_to_one=>true}.should raise_error(Sequel::Error) proc{@c2.associate :one_to_many, :attribute, :class => @c1, :one_to_one=>true}.should raise_error(Sequel::Error) end end describe Sequel::Model, "many_to_many" do before do MODEL_DB.reset @c1 = Class.new(Sequel::Model(:attributes)) do unrestrict_primary_key attr_accessor :yyy def self.name; 'Attribute'; end def self.to_s; 'Attribute'; end columns :id, :y def _refresh(ds) self end def self.[](id) load(id.is_a?(Array) ? {:id => id[0], :y => id[1]} : {:id => id}) end end @c2 = Class.new(Sequel::Model(:nodes)) do unrestrict_primary_key attr_accessor :xxx def self.name; 'Node'; end def self.to_s; 'Node'; end columns :id, :x end @dataset = @c2.dataset [@c1, @c2].each do |c| c.dataset.extend(Module.new { def fetch_rows(sql) @db << sql yield Hash.new end }) end end it "should use implicit key values and join table if omitted" do @c2.many_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) a = n.attributes_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234))' end it "should use implicit class if omitted" do class ::Tag < Sequel::Model end @c2.many_to_many :tags n = @c2.new(:id => 1234) a = n.tags_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT tags.* FROM tags INNER JOIN nodes_tags ON ((nodes_tags.tag_id = tags.id) AND (nodes_tags.node_id = 1234))' end it "should use class inside module if given as a string" do module ::Historical class Tag < Sequel::Model end end @c2.many_to_many :tags, :class=>'::Historical::Tag' n = @c2.new(:id => 1234) a = n.tags_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT tags.* FROM tags INNER JOIN nodes_tags ON ((nodes_tags.tag_id = tags.id) AND (nodes_tags.node_id = 1234))' end it "should use explicit key values and join table if given" do @c2.many_to_many :attributes, :class => @c1, :left_key => :nodeid, :right_key => :attributeid, :join_table => :attribute2node n = @c2.new(:id => 1234) a = n.attributes_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT attributes.* FROM attributes INNER JOIN attribute2node ON ((attribute2node.attributeid = attributes.id) AND (attribute2node.nodeid = 1234))' end it "should handle an aliased join table when eager loading" do r = @c2.many_to_many(:attributes, :class => @c1, :join_table => :attribute2node___attributes_nodes) a = @c2.eager_loading_dataset(r, @c2.dataset, [:id], nil) a.sql.should == 'SELECT id, attributes_nodes.node_id AS x_foreign_key_x FROM nodes' end it "should support a conditions option" do @c2.many_to_many :attributes, :class => @c1, :conditions => {:a=>32} n = @c2.new(:id => 1234) a = n.attributes_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) WHERE (a = 32)' @c2.many_to_many :attributes, :class => @c1, :conditions => ['a = ?', 32] n = @c2.new(:id => 1234) a = n.attributes_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) WHERE (a = 32)' n.attributes.should == [@c1.load({})] end it "should support an order option" do @c2.many_to_many :attributes, :class => @c1, :order => :blah n = @c2.new(:id => 1234) a = n.attributes_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) ORDER BY blah' end it "should support an array for the order option" do @c2.many_to_many :attributes, :class => @c1, :order => [:blah1, :blah2] n = @c2.new(:id => 1234) a = n.attributes_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) ORDER BY blah1, blah2' end it "should support :left_primary_key and :right_primary_key options" do @c2.many_to_many :attributes, :class => @c1, :left_primary_key=>:xxx, :right_primary_key=>:yyy @c2.new(:id => 1234, :xxx=>5).attributes_dataset.sql.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.yyy) AND (attributes_nodes.node_id = 5))' end it "should support composite keys" do @c2.many_to_many :attributes, :class => @c1, :left_key=>[:l1, :l2], :right_key=>[:r1, :r2], :left_primary_key=>[:id, :x], :right_primary_key=>[:id, :y] @c2.load(:id => 1234, :x=>5).attributes_dataset.sql.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.r1 = attributes.id) AND (attributes_nodes.r2 = attributes.y) AND (attributes_nodes.l1 = 1234) AND (attributes_nodes.l2 = 5))' end it "should not issue query if not all keys have values" do @c2.many_to_many :attributes, :class => @c1, :left_key=>[:l1, :l2], :right_key=>[:r1, :r2], :left_primary_key=>[:id, :x], :right_primary_key=>[:id, :y] @c2.load(:id => 1234, :x=>nil).attributes.should == [] MODEL_DB.sqls.should == [] end it "should raise an Error unless same number of composite keys used" do proc{@c2.many_to_many :attributes, :class => @c1, :left_key=>[:node_id, :id]}.should raise_error(Sequel::Error) proc{@c2.many_to_many :attributes, :class => @c1, :left_primary_key=>[:node_id, :id]}.should raise_error(Sequel::Error) proc{@c2.many_to_many :attributes, :class => @c1, :left_key=>[:node_id, :id], :left_primary_key=>:id}.should raise_error(Sequel::Error) proc{@c2.many_to_many :attributes, :class => @c1, :left_key=>:id, :left_primary_key=>[:node_id, :id]}.should raise_error(Sequel::Error) proc{@c2.many_to_many :attributes, :class => @c1, :left_key=>[:node_id, :id, :x], :left_primary_key=>[:parent_id, :id]}.should raise_error(Sequel::Error) proc{@c2.many_to_many :attributes, :class => @c1, :right_primary_key=>[:node_id, :id]}.should raise_error(Sequel::Error) proc{@c2.many_to_many :attributes, :class => @c1, :right_key=>[:node_id, :id], :right_primary_key=>:id}.should raise_error(Sequel::Error) proc{@c2.many_to_many :attributes, :class => @c1, :right_key=>:id, :left_primary_key=>[:node_id, :id]}.should raise_error(Sequel::Error) proc{@c2.many_to_many :attributes, :class => @c1, :right_key=>[:node_id, :id, :x], :right_primary_key=>[:parent_id, :id]}.should raise_error(Sequel::Error) end it "should support a select option" do @c2.many_to_many :attributes, :class => @c1, :select => :blah n = @c2.new(:id => 1234) a = n.attributes_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT blah FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234))' end it "should support an array for the select option" do @c2.many_to_many :attributes, :class => @c1, :select => [:attributes.*, :attribute_nodes__blah2] n = @c2.new(:id => 1234) a = n.attributes_dataset a.should be_a_kind_of(Sequel::Dataset) a.sql.should == 'SELECT attributes.*, attribute_nodes.blah2 FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234))' end it "should accept a block" do @c2.many_to_many :attributes, :class => @c1 do |ds| ds.filter(:xxx => @xxx) end n = @c2.new(:id => 1234) n.xxx = 555 a = n.attributes a.should be_a_kind_of(Array) a.size.should == 1 a.first.should be_a_kind_of(@c1) MODEL_DB.sqls.first.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) WHERE (xxx = 555)' end it "should allow the :order option while accepting a block" do @c2.many_to_many :attributes, :class => @c1, :order=>[:blah1, :blah2] do |ds| ds.filter(:xxx => @xxx) end n = @c2.new(:id => 1234) n.xxx = 555 a = n.attributes a.should be_a_kind_of(Array) a.size.should == 1 a.first.should be_a_kind_of(@c1) MODEL_DB.sqls.first.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) WHERE (xxx = 555) ORDER BY blah1, blah2' end it "should have the block argument affect the _dataset method" do @c2.many_to_many :attributes, :class => @c1 do |ds| ds.filter(:xxx => 456) end @c2.new(:id => 1234).attributes_dataset.sql.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) WHERE (xxx = 456)' end it "should support a :dataset option that is used instead of the default" do c1 = @c1 @c2.many_to_many :attributes, :class => @c1, :dataset=>proc{c1.join_table(:natural, :an).filter(:an__nodeid=>pk)}, :order=> :a, :limit=>10, :select=>nil do |ds| ds.filter(:xxx => @xxx) end n = @c2.new(:id => 1234) n.xxx = 555 n.attributes_dataset.sql.should == 'SELECT * FROM attributes NATURAL JOIN an WHERE ((an.nodeid = 1234) AND (xxx = 555)) ORDER BY a LIMIT 10' a = n.attributes a.should be_a_kind_of(Array) a.size.should == 1 a.first.should be_a_kind_of(@c1) MODEL_DB.sqls.first.should == 'SELECT * FROM attributes NATURAL JOIN an WHERE ((an.nodeid = 1234) AND (xxx = 555)) ORDER BY a LIMIT 10' end it "should support a :limit option" do @c2.many_to_many :attributes, :class => @c1 , :limit=>10 @c2.new(:id => 1234).attributes_dataset.sql.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) LIMIT 10' @c2.many_to_many :attributes, :class => @c1 , :limit=>[10, 10] @c2.new(:id => 1234).attributes_dataset.sql.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) LIMIT 10 OFFSET 10' end it "should have the :eager option affect the _dataset method" do @c2.many_to_many :attributes, :class => @c2 , :eager=>:attributes @c2.new(:id => 1234).attributes_dataset.opts[:eager].should == {:attributes=>nil} end it "should define an add_ method that works on existing records" do @c2.many_to_many :attributes, :class => @c1 n = @c2.load(:id => 1234) a = @c1.load(:id => 2345) a.should == n.add_attribute(a) ['INSERT INTO attributes_nodes (node_id, attribute_id) VALUES (1234, 2345)', 'INSERT INTO attributes_nodes (attribute_id, node_id) VALUES (2345, 1234)' ].should(include(MODEL_DB.sqls.first)) end it "should define an add_ method that works with a primary key" do @c2.many_to_many :attributes, :class => @c1 n = @c2.load(:id => 1234) a = @c1.load(:id => 2345) a.should == n.add_attribute(2345) ['INSERT INTO attributes_nodes (node_id, attribute_id) VALUES (1234, 2345)', 'INSERT INTO attributes_nodes (attribute_id, node_id) VALUES (2345, 1234)' ].should(include(MODEL_DB.sqls.first)) end it "should allow passing a hash to the add_ method which creates a new record" do @c2.many_to_many :attributes, :class => @c1 n = @c2.load(:id => 1234) @c1.load(:id => 1).should == n.add_attribute(:id => 1) MODEL_DB.sqls.first.should == 'INSERT INTO attributes (id) VALUES (1)' ['INSERT INTO attributes_nodes (node_id, attribute_id) VALUES (1234, 1)', 'INSERT INTO attributes_nodes (attribute_id, node_id) VALUES (1, 1234)' ].should(include(MODEL_DB.sqls.last)) end it "should define a remove_ method that works on existing records" do @c2.many_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) a = @c1.new(:id => 2345) a.should == n.remove_attribute(a) MODEL_DB.sqls.first.should == 'DELETE FROM attributes_nodes WHERE ((node_id = 1234) AND (attribute_id = 2345))' end it "should raise an error in the add_ method if the passed associated object is not of the correct type" do @c2.many_to_many :attributes, :class => @c1 proc{@c2.new(:id => 1234).add_attribute(@c2.new)}.should raise_error(Sequel::Error) end it "should accept a primary key for the remove_ method and remove an existing record" do @c2.many_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) ds = @c1.dataset def ds.fetch_rows(sql) db << sql yield({:id=>234}) end MODEL_DB.reset @c1.load(:id => 234).should == n.remove_attribute(234) MODEL_DB.sqls.should == ["SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) WHERE (attributes.id = 234) LIMIT 1", "DELETE FROM attributes_nodes WHERE ((node_id = 1234) AND (attribute_id = 234))"] end it "should raise an error in the remove_ method if the passed associated object is not of the correct type" do @c2.many_to_many :attributes, :class => @c1 proc{@c2.new(:id => 1234).remove_attribute(@c2.new)}.should raise_error(Sequel::Error) end it "should have the add_ method respect the :left_primary_key and :right_primary_key options" do @c2.many_to_many :attributes, :class => @c1, :left_primary_key=>:xxx, :right_primary_key=>:yyy n = @c2.load(:id => 1234).set(:xxx=>5) a = @c1.load(:id => 2345).set(:yyy=>8) a.should == n.add_attribute(a) ['INSERT INTO attributes_nodes (node_id, attribute_id) VALUES (5, 8)', 'INSERT INTO attributes_nodes (attribute_id, node_id) VALUES (8, 5)' ].should(include(MODEL_DB.sqls.first)) end it "should have add_ method not add the same object to the cached association array if the object is already in the array" do @c2.many_to_many :attributes, :class => @c1 n = @c2.load(:id => 1234).set(:xxx=>5) a = @c1.load(:id => 2345).set(:yyy=>8) n.associations[:attributes] = [] a.should == n.add_attribute(a) a.should == n.add_attribute(a) n.attributes.should == [a] end it "should have the add_ method respect composite keys" do @c2.many_to_many :attributes, :class => @c1, :left_key=>[:l1, :l2], :right_key=>[:r1, :r2], :left_primary_key=>[:id, :x], :right_primary_key=>[:id, :y] n = @c2.load(:id => 1234, :x=>5) a = @c1.load(:id => 2345, :y=>8) a.should == n.add_attribute(a) m = /INSERT INTO attributes_nodes \((\w+), (\w+), (\w+), (\w+)\) VALUES \((\d+), (\d+), (\d+), (\d+)\)/.match(MODEL_DB.sqls.first) m.should_not == nil map = {'l1'=>1234, 'l2'=>5, 'r1'=>2345, 'r2'=>8} %w[l1 l2 r1 r2].each do |x| v = false 4.times do |i| i += 1 if m[i] == x m[i+4].should == map[x].to_s v = true end end v.should == true end end it "should have the add_ method respect composite keys" do @c2.many_to_many :attributes, :class => @c1, :left_key=>[:l1, :l2], :right_key=>[:r1, :r2], :left_primary_key=>[:id, :x], :right_primary_key=>[:id, :y] n = @c2.load(:id => 1234, :x=>5) a = @c1.load(:id => 2345, :y=>8) a.should == n.add_attribute([2345, 8]) MODEL_DB.sqls.first.should =~ /INSERT INTO attributes_nodes \([lr][12], [lr][12], [lr][12], [lr][12]\) VALUES \((1234|5|2345|8), (1234|5|2345|8), (1234|5|2345|8), (1234|5|2345|8)\)/ end it "should have the remove_ method respect the :left_primary_key and :right_primary_key options" do @c2.many_to_many :attributes, :class => @c1, :left_primary_key=>:xxx, :right_primary_key=>:yyy n = @c2.new(:id => 1234, :xxx=>5) a = @c1.new(:id => 2345, :yyy=>8) a.should == n.remove_attribute(a) MODEL_DB.sqls.first.should == 'DELETE FROM attributes_nodes WHERE ((node_id = 5) AND (attribute_id = 8))' end it "should have the remove_ method respect composite keys" do @c2.many_to_many :attributes, :class => @c1, :left_key=>[:l1, :l2], :right_key=>[:r1, :r2], :left_primary_key=>[:id, :x], :right_primary_key=>[:id, :y] n = @c2.load(:id => 1234, :x=>5) a = @c1.load(:id => 2345, :y=>8) a.should == n.remove_attribute(a) MODEL_DB.sqls.should == ["DELETE FROM attributes_nodes WHERE ((l1 = 1234) AND (l2 = 5) AND (r1 = 2345) AND (r2 = 8))"] end it "should accept a array of composite primary key values for the remove_ method and remove an existing record" do @c1.set_primary_key [:id, :y] @c2.many_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) ds = @c1.dataset def ds.fetch_rows(sql) db << sql yield({:id=>234, :y=>8}) end MODEL_DB.reset @c1.load(:id => 234, :y=>8).should == n.remove_attribute([234, 8]) ["SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) WHERE ((attributes.id = 234) AND (attributes.y = 8)) LIMIT 1", "SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234)) WHERE ((attributes.y = 8) AND (attributes.id = 234)) LIMIT 1"].should include(MODEL_DB.sqls.first) MODEL_DB.sqls.last.should == "DELETE FROM attributes_nodes WHERE ((node_id = 1234) AND (attribute_id = 234))" MODEL_DB.sqls.length.should == 2 end it "should raise an error if the model object doesn't have a valid primary key" do @c2.many_to_many :attributes, :class => @c1 a = @c2.new n = @c1.load(:id=>123) proc{a.attributes_dataset}.should raise_error(Sequel::Error) proc{a.add_attribute(n)}.should raise_error(Sequel::Error) proc{a.remove_attribute(n)}.should raise_error(Sequel::Error) proc{a.remove_all_attributes}.should raise_error(Sequel::Error) end it "should save the associated object first in add_ if passed a new model object" do @c2.many_to_many :attributes, :class => @c1 n = @c1.new a = @c2.load(:id=>123) n.new?.should == true a.add_attribute(n) n.new?.should == false end it "should raise a ValidationFailed in add_ if the associated object is new and invalid" do @c2.many_to_many :attributes, :class => @c1 n = @c1.new a = @c2.load(:id=>123) def n.valid?(opts); false; end proc{a.add_attribute(n)}.should raise_error(Sequel::ValidationFailed) end it "should raise an Error in add_ if the associated object is new and invalid and raise_on_save_failure is false" do @c2.many_to_many :attributes, :class => @c1 n = @c1.new n.raise_on_save_failure = false a = @c2.load(:id=>123) def n.valid?(opts); false; end proc{a.add_attribute(n)}.should raise_error(Sequel::Error) end it "should not attempt to validate the associated object in add_ if the :validate=>false option is used" do @c2.many_to_many :attributes, :class => @c1, :validate=>false n = @c1.new a = @c2.load(:id=>123) def n.valid?(opts); false; end a.add_attribute(n) n.new?.should == false end it "should raise an error if trying to remove a model object that doesn't have a valid primary key" do @c2.many_to_many :attributes, :class => @c1 n = @c1.new a = @c2.load(:id=>123) proc{a.remove_attribute(n)}.should raise_error(Sequel::Error) end it "should provide an array with all members of the association" do @c2.many_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) atts = n.attributes atts.should be_a_kind_of(Array) atts.size.should == 1 atts.first.should be_a_kind_of(@c1) MODEL_DB.sqls.first.should == 'SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1234))' end it "should set cached instance variable when accessed" do @c2.many_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) MODEL_DB.reset n.associations.include?(:attributes).should == false atts = n.attributes atts.should == n.associations[:attributes] MODEL_DB.sqls.length.should == 1 end it "should use cached instance variable if available" do @c2.many_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) MODEL_DB.reset n.associations[:attributes] = 42 n.attributes.should == 42 MODEL_DB.sqls.should == [] end it "should not use cached instance variable if asked to reload" do @c2.many_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) MODEL_DB.reset n.associations[:attributes] = 42 n.attributes(true).should_not == 42 MODEL_DB.sqls.length.should == 1 end it "should add item to cached instance variable if it exists when calling add_" do @c2.many_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) att = @c1.new(:id => 345) MODEL_DB.reset a = [] n.associations[:attributes] = a n.add_attribute(att) a.should == [att] end it "should add item to reciprocal cached instance variable if it exists when calling add_" do @c2.many_to_many :attributes, :class => @c1 @c1.many_to_many :nodes, :class => @c2 n = @c2.new(:id => 1234) att = @c1.new(:id => 345) att.associations[:nodes] = [] n.add_attribute(att) att.nodes.should == [n] end it "should remove item from cached instance variable if it exists when calling remove_" do @c2.many_to_many :attributes, :class => @c1 n = @c2.new(:id => 1234) att = @c1.new(:id => 345) MODEL_DB.reset a = [att] n.associations[:attributes] = a n.remove_attribute(att) a.should == [] end it "should remove item from reciprocal cached instance variable if it exists when calling remove_" do @c2.many_to_many :attributes, :class => @c1 @c1.many_to_many :nodes, :class => @c2 n = @c2.new(:id => 1234) att = @c1.new(:id => 345) att.associations[:nodes] = [n] n.remove_attribute(att) att.nodes.should == [] end it "should not create the add_, remove_, or remove_all_ methods if :read_only option is used" do @c2.many_to_many :attributes, :class => @c1, :read_only=>true im = @c2.instance_methods.collect{|x| x.to_s} im.should(include('attributes')) im.should(include('attributes_dataset')) im.should_not(include('add_attribute')) im.should_not(include('remove_attribute')) im.should_not(include('remove_all_attributes')) end it "should not add associations methods directly to class" do @c2.many_to_many :attributes, :class => @c1 im = @c2.instance_methods.collect{|x| x.to_s} im.should(include('attributes')) im.should(include('attributes_dataset')) im.should(include('add_attribute')) im.should(include('remove_attribute')) im.should(include('remove_all_attributes')) im2 = @c2.instance_methods(false).collect{|x| x.to_s} im2.should_not(include('attributes')) im2.should_not(include('attributes_dataset')) im2.should_not(include('add_attribute')) im2.should_not(include('remove_attribute')) im2.should_not(include('remove_all_attributes')) end it "should have an remove_all_ method that removes all associations" do @c2.many_to_many :attributes, :class => @c1 @c2.new(:id => 1234).remove_all_attributes MODEL_DB.sqls.first.should == 'DELETE FROM attributes_nodes WHERE (node_id = 1234)' end it "should have the remove_all_ method respect the :left_primary_key option" do @c2.many_to_many :attributes, :class => @c1, :left_primary_key=>:xxx @c2.new(:id => 1234, :xxx=>5).remove_all_attributes MODEL_DB.sqls.first.should == 'DELETE FROM attributes_nodes WHERE (node_id = 5)' end it "should have the remove_all_ method respect composite keys" do @c2.many_to_many :attributes, :class => @c1, :left_primary_key=>[:id, :x], :left_key=>[:l1, :l2] @c2.load(:id => 1234, :x=>5).remove_all_attributes MODEL_DB.sqls.should == ['DELETE FROM attributes_nodes WHERE ((l1 = 1234) AND (l2 = 5))'] end it "remove_all should set the cached instance variable to []" do @c2.many_to_many :attributes, :class => @c1 node = @c2.new(:id => 1234) node.remove_all_attributes node.associations[:attributes].should == [] end it "remove_all should return the array of previously associated items if the cached instance variable exists" do @c2.many_to_many :attributes, :class => @c1 attrib = @c1.new(:id=>3) node = @c2.new(:id => 1234) d = @c1.dataset def d.fetch_rows(s); end node.attributes.should == [] node.add_attribute(attrib) node.associations[:attributes].should == [attrib] node.remove_all_attributes.should == [attrib] end it "remove_all should return nil if the cached instance variable does not exist" do @c2.many_to_many :attributes, :class => @c1 @c2.new(:id => 1234).remove_all_attributes.should == nil end it "remove_all should remove the current item from all reciprocal instance varaibles if it cached instance variable exists" do @c2.many_to_many :attributes, :class => @c1 @c1.many_to_many :nodes, :class => @c2 d = @c1.dataset def d.fetch_rows(s); end d = @c2.dataset def d.fetch_rows(s); end attrib = @c1.new(:id=>3) node = @c2.new(:id => 1234) node.attributes.should == [] attrib.nodes.should == [] node.add_attribute(attrib) attrib.associations[:nodes].should == [node] node.remove_all_attributes attrib.associations[:nodes].should == [] end it "add, remove, and remove_all methods should respect :join_table_block option" do @c2.many_to_many :attributes, :class => @c1, :join_table_block=>proc{|ds| ds.filter(:x=>123).set_overrides(:x=>123)} o = @c2.load(:id => 1234) o.add_attribute(@c1.load(:id=>44)) o.remove_attribute(@c1.load(:id=>45)) o.remove_all_attributes MODEL_DB.sqls.first =~ /INSERT INTO attributes_nodes \((node_id|attribute_id|x), (node_id|attribute_id|x), (node_id|attribute_id|x)\) VALUES \((1234|123|44), (1234|123|44), (1234|123|44)\)/ MODEL_DB.sqls[1..-1].should == ["DELETE FROM attributes_nodes WHERE ((x = 123) AND (node_id = 1234) AND (attribute_id = 45))", "DELETE FROM attributes_nodes WHERE ((x = 123) AND (node_id = 1234))"] end it "should call an _add_ method internally to add attributes" do @c2.many_to_many :attributes, :class => @c1 @c2.private_instance_methods.collect{|x| x.to_s}.sort.should(include("_add_attribute")) p = @c2.load(:id=>10) c = @c1.load(:id=>123) def p._add_attribute(x) @x = x end p.add_attribute(c) p.instance_variable_get(:@x).should == c MODEL_DB.sqls.should == [] end it "should allow additional arguments given to the add_ method and pass them onwards to the _add_ method" do @c2.many_to_many :attributes, :class => @c1 p = @c2.load(:id=>10) c = @c1.load(:id=>123) def p._add_attribute(x,*y) @x = x @y = y end p.add_attribute(c,:foo,:bar=>:baz) p.instance_variable_get(:@x).should == c p.instance_variable_get(:@y).should == [:foo,{:bar=>:baz}] end it "should call a _remove_ method internally to remove attributes" do @c2.many_to_many :attributes, :class => @c1 @c2.private_instance_methods.collect{|x| x.to_s}.sort.should(include("_remove_attribute")) p = @c2.load(:id=>10) c = @c1.load(:id=>123) def p._remove_attribute(x) @x = x end p.remove_attribute(c) p.instance_variable_get(:@x).should == c MODEL_DB.sqls.should == [] end it "should allow additional arguments given to the remove_ method and pass them onwards to the _remove_ method" do @c2.many_to_many :attributes, :class => @c1 p = @c2.load(:id=>10) c = @c1.load(:id=>123) def p._remove_attribute(x,*y) @x = x @y = y end p.remove_attribute(c,:foo,:bar=>:baz) p.instance_variable_get(:@x).should == c p.instance_variable_get(:@y).should == [:foo,{:bar=>:baz}] end it "should allow additional arguments given to the remove_all_ method and pass them onwards to the _remove_all_ method" do @c2.many_to_many :attributes, :class => @c1 p = @c2.load(:id=>10) c = @c1.load(:id=>123) def p._remove_all_attributes(*y) @y = y end p.remove_all_attributes(:foo,:bar=>:baz) p.instance_variable_get(:@y).should == [:foo,{:bar=>:baz}] end it "should call a _remove_all_ method internally to remove attributes" do @c2.many_to_many :attributes, :class => @c1 @c2.private_instance_methods.collect{|x| x.to_s}.sort.should(include("_remove_all_attributes")) p = @c2.load(:id=>10) def p._remove_all_attributes @x = :foo end p.remove_all_attributes p.instance_variable_get(:@x).should == :foo MODEL_DB.sqls.should == [] end it "should support (before|after)_(add|remove) callbacks" do h = [] @c2.many_to_many :attributes, :class => @c1, :before_add=>[proc{|x,y| h << x.pk; h << -y.pk}, :blah], :after_add=>proc{h << 3}, :before_remove=>:blah, :after_remove=>[:blahr] @c2.class_eval do class_variable_set(:@@blah, h) def _add_attribute(v) self.class.send(:class_variable_get, :@@blah) << 4 end def _remove_attribute(v) self.class.send(:class_variable_get, :@@blah) << 5 end def blah(x) self.class.send(:class_variable_get, :@@blah) << x.pk end def blahr(x) self.class.send(:class_variable_get, :@@blah) << 6 end end p = @c2.load(:id=>10) c = @c1.load(:id=>123) h.should == [] p.add_attribute(c) h.should == [10, -123, 123, 4, 3] p.remove_attribute(c) h.should == [10, -123, 123, 4, 3, 123, 5, 6] end it "should support after_load association callback" do h = [] @c2.many_to_many :attributes, :class => @c1, :after_load=>[proc{|x,y| h << [x.pk, y.collect{|z|z.pk}]}, :al] @c2.class_eval do class_variable_set(:@@blah, h) def al(v) v.each{|x| self.class.send(:class_variable_get, :@@blah) << x.pk} end end @c1.class_eval do def @dataset.fetch_rows(sql) yield({:id=>20}) yield({:id=>30}) end end p = @c2.load(:id=>10, :parent_id=>20) attributes = p.attributes h.should == [[10, [20, 30]], 20, 30] attributes.collect{|a| a.pk}.should == [20, 30] end it "should raise error and not call internal add or remove method if before callback returns false if raise_on_save_failure is true" do p = @c2.load(:id=>10) c = @c1.load(:id=>123) @c2.many_to_many :attributes, :class => @c1, :before_add=>:ba, :before_remove=>:br p.should_receive(:ba).once.with(c).and_return(false) p.should_not_receive(:_add_attribute) p.should_not_receive(:_remove_attribute) p.associations[:attributes] = [] p.raise_on_save_failure = true proc{p.add_attribute(c)}.should raise_error(Sequel::Error) p.attributes.should == [] p.associations[:attributes] = [c] p.should_receive(:br).once.with(c).and_return(false) proc{p.remove_attribute(c)}.should raise_error(Sequel::Error) p.attributes.should == [c] end it "should return nil and not call internal add or remove method if before callback returns false if raise_on_save_failure is false" do p = @c2.load(:id=>10) c = @c1.load(:id=>123) p.raise_on_save_failure = false @c2.many_to_many :attributes, :class => @c1, :before_add=>:ba, :before_remove=>:br p.should_receive(:ba).once.with(c).and_return(false) p.should_not_receive(:_add_attribute) p.should_not_receive(:_remove_attribute) p.associations[:attributes] = [] p.add_attribute(c).should == nil p.attributes.should == [] p.associations[:attributes] = [c] p.should_receive(:br).once.with(c).and_return(false) p.remove_attribute(c).should == nil p.attributes.should == [c] end it "should support a :uniq option that removes duplicates from the association" do @c2.many_to_many :attributes, :class => @c1, :uniq=>true @c1.class_eval do def @dataset.fetch_rows(sql) yield({:id=>20}) yield({:id=>30}) yield({:id=>20}) yield({:id=>30}) end end @c2.load(:id=>10, :parent_id=>20).attributes.should == [@c1.load(:id=>20), @c1.load(:id=>30)] end it "should support a :distinct option that uses the DISTINCT clause" do @c2.many_to_many :attributes, :class => @c1, :distinct=>true @c2.load(:id=>10).attributes_dataset.sql.should == "SELECT DISTINCT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 10))" end it "should not apply association options when removing all associated records" do @c2.many_to_many :attributes, :class => @c1 do |ds| ds.filter(:name=>'John') end @c2.load(:id=>1).remove_all_attributes MODEL_DB.sqls.should == ["DELETE FROM attributes_nodes WHERE (node_id = 1)"] end it "should use assocation's dataset when grabbing a record to remove from the assocation by primary key" do @c2.many_to_many :attributes, :class => @c1 do |ds| ds.filter(:join_table_att=>3) end @c1.dataset.instance_eval do def fetch_rows(sql, &block) db.sqls << sql yield(:id=>2) end end @c2.load(:id=>1).remove_attribute(2) MODEL_DB.sqls.should == ["SELECT attributes.* FROM attributes INNER JOIN attributes_nodes ON ((attributes_nodes.attribute_id = attributes.id) AND (attributes_nodes.node_id = 1)) WHERE ((join_table_att = 3) AND (attributes.id = 2)) LIMIT 1", "DELETE FROM attributes_nodes WHERE ((node_id = 1) AND (attribute_id = 2))"] end end describe Sequel::Model, " association reflection methods" do before do MODEL_DB.reset @c1 = Class.new(Sequel::Model(:nodes)) do def self.name; 'Node'; end def self.to_s; 'Node'; end end end it "#all_association_reflections should include all association reflection hashes" do @c1.all_association_reflections.should == [] @c1.associate :many_to_one, :parent, :class => @c1 @c1.all_association_reflections.collect{|v| v[:name]}.should == [:parent] @c1.all_association_reflections.collect{|v| v[:type]}.should == [:many_to_one] @c1.all_association_reflections.collect{|v| v[:class]}.should == [@c1] @c1.associate :one_to_many, :children, :class => @c1 @c1.all_association_reflections.sort_by{|x|x[:name].to_s} @c1.all_association_reflections.sort_by{|x|x[:name].to_s}.collect{|v| v[:name]}.should == [:children, :parent] @c1.all_association_reflections.sort_by{|x|x[:name].to_s}.collect{|v| v[:type]}.should == [:one_to_many, :many_to_one] @c1.all_association_reflections.sort_by{|x|x[:name].to_s}.collect{|v| v[:class]}.should == [@c1, @c1] end it "#association_reflection should return nil for nonexistent association" do @c1.association_reflection(:blah).should == nil end it "#association_reflection should return association reflection hash if association exists" do @c1.associate :many_to_one, :parent, :class => @c1 @c1.association_reflection(:parent).should be_a_kind_of(Sequel::Model::Associations::AssociationReflection) @c1.association_reflection(:parent)[:name].should == :parent @c1.association_reflection(:parent)[:type].should == :many_to_one @c1.association_reflection(:parent)[:class].should == @c1 @c1.associate :one_to_many, :children, :class => @c1 @c1.association_reflection(:children).should be_a_kind_of(Sequel::Model::Associations::AssociationReflection) @c1.association_reflection(:children)[:name].should == :children @c1.association_reflection(:children)[:type].should == :one_to_many @c1.association_reflection(:children)[:class].should == @c1 end it "#associations should include all association names" do @c1.associations.should == [] @c1.associate :many_to_one, :parent, :class => @c1 @c1.associations.should == [:parent] @c1.associate :one_to_many, :children, :class => @c1 @c1.associations.sort_by{|x|x.to_s}.should == [:children, :parent] end it "association reflections should be copied upon subclasing" do @c1.associate :many_to_one, :parent, :class => @c1 c = Class.new(@c1) @c1.associations.should == [:parent] c.associations.should == [:parent] c.associate :many_to_one, :parent2, :class => @c1 @c1.associations.should == [:parent] c.associations.sort_by{|x| x.to_s}.should == [:parent, :parent2] c.instance_methods.map{|x| x.to_s}.should include('parent') end end describe "Filtering by associations" do before do @Album = Class.new(Sequel::Model(:albums)) artist = @Artist = Class.new(Sequel::Model(:artists)) tag = @Tag = Class.new(Sequel::Model(:tags)) track = @Track = Class.new(Sequel::Model(:tracks)) album_info = @AlbumInfo = Class.new(Sequel::Model(:album_infos)) @Artist.columns :id, :id1, :id2 @Tag.columns :id, :tid1, :tid2 @Track.columns :id, :album_id, :album_id1, :album_id2 @AlbumInfo.columns :id, :album_id, :album_id1, :album_id2 @Album.class_eval do columns :id, :id1, :id2, :artist_id, :artist_id1, :artist_id2 many_to_one :artist, :class=>artist one_to_many :tracks, :class=>track, :key=>:album_id one_to_one :album_info, :class=>album_info, :key=>:album_id many_to_many :tags, :class=>tag, :left_key=>:album_id, :join_table=>:albums_tags many_to_one :cartist, :class=>artist, :key=>[:artist_id1, :artist_id2], :primary_key=>[:id1, :id2] one_to_many :ctracks, :class=>track, :key=>[:album_id1, :album_id2], :primary_key=>[:id1, :id2] one_to_one :calbum_info, :class=>album_info, :key=>[:album_id1, :album_id2], :primary_key=>[:id1, :id2] many_to_many :ctags, :class=>tag, :left_key=>[:album_id1, :album_id2], :left_primary_key=>[:id1, :id2], :right_key=>[:tag_id1, :tag_id2], :right_primary_key=>[:tid1, :tid2], :join_table=>:albums_tags end end it "should be able to filter on many_to_one associations" do @Album.filter(:artist=>@Artist.load(:id=>3)).sql.should == 'SELECT * FROM albums WHERE (artist_id = 3)' end it "should be able to filter on one_to_many associations" do @Album.filter(:tracks=>@Track.load(:album_id=>3)).sql.should == 'SELECT * FROM albums WHERE (id = 3)' end it "should be able to filter on one_to_one associations" do @Album.filter(:album_info=>@AlbumInfo.load(:album_id=>3)).sql.should == 'SELECT * FROM albums WHERE (id = 3)' end it "should be able to filter on many_to_many associations" do @Album.filter(:tags=>@Tag.load(:id=>3)).sql.should == 'SELECT * FROM albums WHERE (id IN (SELECT album_id FROM albums_tags WHERE (tag_id = 3)))' end it "should be able to filter on many_to_one associations with composite keys" do @Album.filter(:cartist=>@Artist.load(:id1=>3, :id2=>4)).sql.should == 'SELECT * FROM albums WHERE ((artist_id1 = 3) AND (artist_id2 = 4))' end it "should be able to filter on one_to_many associations with composite keys" do @Album.filter(:ctracks=>@Track.load(:album_id1=>3, :album_id2=>4)).sql.should == 'SELECT * FROM albums WHERE ((id1 = 3) AND (id2 = 4))' end it "should be able to filter on one_to_one associations with composite keys" do @Album.filter(:calbum_info=>@AlbumInfo.load(:album_id1=>3, :album_id2=>4)).sql.should == 'SELECT * FROM albums WHERE ((id1 = 3) AND (id2 = 4))' end it "should be able to filter on many_to_many associations with composite keys" do @Album.filter(:ctags=>@Tag.load(:tid1=>3, :tid2=>4)).sql.should == 'SELECT * FROM albums WHERE ((id1, id2) IN (SELECT album_id1, album_id2 FROM albums_tags WHERE ((tag_id1 = 3) AND (tag_id2 = 4))))' end it "should work inside a complex filter" do artist = @Artist.load(:id=>3) @Album.filter{foo & {:artist=>artist}}.sql.should == 'SELECT * FROM albums WHERE (foo AND (artist_id = 3))' track = @Track.load(:album_id=>4) @Album.filter{foo & [[:artist, artist], [:tracks, track]]}.sql.should == 'SELECT * FROM albums WHERE (foo AND (artist_id = 3) AND (id = 4))' end it "should raise for an invalid association name" do proc{@Album.filter(:foo=>@Artist.load(:id=>3)).sql}.should raise_error(Sequel::Error) end it "should raise for an invalid association type" do @Album.many_to_many :iatags, :clone=>:tags @Album.association_reflection(:iatags)[:type] = :foo proc{@Album.filter(:mtmtags=>@Tag.load(:id=>3)).sql}.should raise_error(Sequel::Error) end it "should raise for an invalid associated object class " do proc{@Album.filter(:tags=>@Artist.load(:id=>3)).sql}.should raise_error(Sequel::Error) end it "should work correctly in subclasses" do c = Class.new(@Album) c.many_to_one :sartist, :class=>@Artist c.filter(:sartist=>@Artist.load(:id=>3)).sql.should == 'SELECT * FROM albums WHERE (sartist_id = 3)' end end