sequel 3.21.0 → 3.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +413 -3
- data/README.rdoc +20 -6
- data/Rakefile +23 -16
- data/bin/sequel +1 -5
- data/doc/association_basics.rdoc +210 -43
- data/doc/dataset_basics.rdoc +4 -4
- data/doc/mass_assignment.rdoc +54 -0
- data/doc/migration.rdoc +15 -538
- data/doc/model_hooks.rdoc +72 -27
- data/doc/opening_databases.rdoc +86 -50
- data/doc/prepared_statements.rdoc +40 -13
- data/doc/reflection.rdoc +8 -2
- data/doc/release_notes/3.22.0.txt +39 -0
- data/doc/release_notes/3.23.0.txt +172 -0
- data/doc/release_notes/3.24.0.txt +420 -0
- data/doc/release_notes/3.25.0.txt +88 -0
- data/doc/release_notes/3.26.0.txt +88 -0
- data/doc/release_notes/3.27.0.txt +82 -0
- data/doc/release_notes/3.28.0.txt +304 -0
- data/doc/release_notes/3.29.0.txt +459 -0
- data/doc/schema_modification.rdoc +547 -0
- data/doc/sharding.rdoc +7 -1
- data/doc/testing.rdoc +115 -0
- data/doc/transactions.rdoc +137 -0
- data/doc/virtual_rows.rdoc +2 -2
- data/lib/sequel/adapters/ado/mssql.rb +18 -6
- data/lib/sequel/adapters/ado.rb +40 -18
- data/lib/sequel/adapters/amalgalite.rb +15 -7
- data/lib/sequel/adapters/db2.rb +175 -86
- data/lib/sequel/adapters/dbi.rb +15 -15
- data/lib/sequel/adapters/do/mysql.rb +0 -5
- data/lib/sequel/adapters/do/postgres.rb +0 -5
- data/lib/sequel/adapters/do/sqlite.rb +0 -5
- data/lib/sequel/adapters/do.rb +17 -36
- data/lib/sequel/adapters/firebird.rb +27 -208
- data/lib/sequel/adapters/ibmdb.rb +448 -0
- data/lib/sequel/adapters/informix.rb +6 -23
- data/lib/sequel/adapters/jdbc/as400.rb +5 -31
- data/lib/sequel/adapters/jdbc/db2.rb +44 -0
- data/lib/sequel/adapters/jdbc/derby.rb +217 -0
- data/lib/sequel/adapters/jdbc/firebird.rb +29 -0
- data/lib/sequel/adapters/jdbc/h2.rb +26 -17
- data/lib/sequel/adapters/jdbc/hsqldb.rb +166 -0
- data/lib/sequel/adapters/jdbc/informix.rb +26 -0
- data/lib/sequel/adapters/jdbc/jtds.rb +29 -0
- data/lib/sequel/adapters/jdbc/mssql.rb +0 -32
- data/lib/sequel/adapters/jdbc/mysql.rb +9 -10
- data/lib/sequel/adapters/jdbc/oracle.rb +67 -25
- data/lib/sequel/adapters/jdbc/postgresql.rb +6 -11
- data/lib/sequel/adapters/jdbc/sqlite.rb +0 -5
- data/lib/sequel/adapters/jdbc/sqlserver.rb +41 -0
- data/lib/sequel/adapters/jdbc/transactions.rb +83 -0
- data/lib/sequel/adapters/jdbc.rb +107 -38
- data/lib/sequel/adapters/mock.rb +315 -0
- data/lib/sequel/adapters/mysql.rb +78 -182
- data/lib/sequel/adapters/mysql2.rb +24 -23
- data/lib/sequel/adapters/odbc/db2.rb +17 -0
- data/lib/sequel/adapters/odbc/mssql.rb +0 -5
- data/lib/sequel/adapters/odbc.rb +28 -9
- data/lib/sequel/adapters/openbase.rb +2 -4
- data/lib/sequel/adapters/oracle.rb +349 -51
- data/lib/sequel/adapters/postgres.rb +169 -21
- data/lib/sequel/adapters/shared/access.rb +21 -6
- data/lib/sequel/adapters/shared/db2.rb +288 -0
- data/lib/sequel/adapters/shared/firebird.rb +214 -0
- data/lib/sequel/adapters/shared/informix.rb +45 -0
- data/lib/sequel/adapters/shared/mssql.rb +108 -65
- data/lib/sequel/adapters/shared/mysql.rb +56 -13
- data/lib/sequel/adapters/shared/mysql_prepared_statements.rb +149 -0
- data/lib/sequel/adapters/shared/oracle.rb +185 -34
- data/lib/sequel/adapters/shared/postgres.rb +107 -58
- data/lib/sequel/adapters/shared/progress.rb +0 -6
- data/lib/sequel/adapters/shared/sqlite.rb +168 -41
- data/lib/sequel/adapters/sqlite.rb +27 -18
- data/lib/sequel/adapters/swift/mysql.rb +9 -5
- data/lib/sequel/adapters/swift/postgres.rb +0 -5
- data/lib/sequel/adapters/swift/sqlite.rb +6 -4
- data/lib/sequel/adapters/swift.rb +5 -5
- data/lib/sequel/adapters/tinytds.rb +152 -17
- data/lib/sequel/adapters/utils/emulate_offset_with_row_number.rb +63 -0
- data/lib/sequel/ast_transformer.rb +190 -0
- data/lib/sequel/connection_pool/threaded.rb +3 -2
- data/lib/sequel/connection_pool.rb +1 -1
- data/lib/sequel/core.rb +46 -5
- data/lib/sequel/database/connecting.rb +5 -6
- data/lib/sequel/database/dataset.rb +4 -4
- data/lib/sequel/database/dataset_defaults.rb +59 -1
- data/lib/sequel/database/logging.rb +1 -1
- data/lib/sequel/database/misc.rb +100 -19
- data/lib/sequel/database/query.rb +153 -58
- data/lib/sequel/database/schema_generator.rb +8 -5
- data/lib/sequel/database/schema_methods.rb +59 -29
- data/lib/sequel/dataset/actions.rb +194 -57
- data/lib/sequel/dataset/features.rb +81 -8
- data/lib/sequel/dataset/graph.rb +8 -7
- data/lib/sequel/dataset/misc.rb +50 -23
- data/lib/sequel/dataset/mutation.rb +5 -6
- data/lib/sequel/dataset/prepared_statements.rb +32 -15
- data/lib/sequel/dataset/query.rb +223 -42
- data/lib/sequel/dataset/sql.rb +58 -61
- data/lib/sequel/dataset.rb +8 -0
- data/lib/sequel/exceptions.rb +4 -0
- data/lib/sequel/extensions/columns_introspection.rb +61 -0
- data/lib/sequel/extensions/migration.rb +6 -4
- data/lib/sequel/extensions/named_timezones.rb +5 -0
- data/lib/sequel/extensions/thread_local_timezones.rb +1 -1
- data/lib/sequel/extensions/to_dot.rb +95 -83
- data/lib/sequel/model/associations.rb +997 -331
- data/lib/sequel/model/base.rb +386 -129
- data/lib/sequel/model/errors.rb +1 -1
- data/lib/sequel/model/exceptions.rb +5 -1
- data/lib/sequel/model.rb +15 -8
- data/lib/sequel/plugins/association_pks.rb +22 -4
- data/lib/sequel/plugins/class_table_inheritance.rb +4 -4
- data/lib/sequel/plugins/dataset_associations.rb +100 -0
- data/lib/sequel/plugins/defaults_setter.rb +58 -0
- data/lib/sequel/plugins/force_encoding.rb +6 -6
- data/lib/sequel/plugins/identity_map.rb +114 -7
- data/lib/sequel/plugins/many_through_many.rb +65 -7
- data/lib/sequel/plugins/prepared_statements.rb +151 -0
- data/lib/sequel/plugins/prepared_statements_associations.rb +84 -0
- data/lib/sequel/plugins/prepared_statements_safe.rb +82 -0
- data/lib/sequel/plugins/prepared_statements_with_pk.rb +59 -0
- data/lib/sequel/plugins/rcte_tree.rb +29 -15
- data/lib/sequel/plugins/serialization.rb +6 -1
- data/lib/sequel/plugins/serialization_modification_detection.rb +51 -0
- data/lib/sequel/plugins/sharding.rb +12 -25
- data/lib/sequel/plugins/single_table_inheritance.rb +3 -1
- data/lib/sequel/plugins/typecast_on_load.rb +9 -12
- data/lib/sequel/plugins/update_primary_key.rb +2 -2
- data/lib/sequel/plugins/xml_serializer.rb +3 -3
- data/lib/sequel/sql.rb +107 -51
- data/lib/sequel/timezones.rb +44 -35
- data/lib/sequel/version.rb +1 -1
- data/spec/adapters/db2_spec.rb +146 -0
- data/spec/adapters/mssql_spec.rb +65 -29
- data/spec/adapters/mysql_spec.rb +122 -123
- data/spec/adapters/oracle_spec.rb +48 -76
- data/spec/adapters/postgres_spec.rb +213 -61
- data/spec/adapters/spec_helper.rb +6 -5
- data/spec/adapters/sqlite_spec.rb +35 -21
- data/spec/core/connection_pool_spec.rb +71 -92
- data/spec/core/core_sql_spec.rb +20 -31
- data/spec/core/database_spec.rb +729 -508
- data/spec/core/dataset_spec.rb +980 -1044
- data/spec/core/expression_filters_spec.rb +159 -42
- data/spec/core/mock_adapter_spec.rb +378 -0
- data/spec/core/object_graph_spec.rb +48 -114
- data/spec/core/schema_generator_spec.rb +3 -3
- data/spec/core/schema_spec.rb +298 -38
- data/spec/core/spec_helper.rb +6 -48
- data/spec/extensions/association_pks_spec.rb +38 -0
- data/spec/extensions/class_table_inheritance_spec.rb +1 -1
- data/spec/extensions/columns_introspection_spec.rb +91 -0
- data/spec/extensions/dataset_associations_spec.rb +199 -0
- data/spec/extensions/defaults_setter_spec.rb +64 -0
- data/spec/extensions/identity_map_spec.rb +162 -0
- data/spec/extensions/instance_hooks_spec.rb +71 -0
- data/spec/extensions/many_through_many_spec.rb +195 -20
- data/spec/extensions/migration_spec.rb +17 -17
- data/spec/extensions/named_timezones_spec.rb +22 -2
- data/spec/extensions/nested_attributes_spec.rb +4 -0
- data/spec/extensions/prepared_statements_associations_spec.rb +126 -0
- data/spec/extensions/prepared_statements_safe_spec.rb +79 -0
- data/spec/extensions/prepared_statements_spec.rb +72 -0
- data/spec/extensions/prepared_statements_with_pk_spec.rb +38 -0
- data/spec/extensions/schema_dumper_spec.rb +2 -2
- data/spec/extensions/schema_spec.rb +13 -21
- data/spec/extensions/serialization_modification_detection_spec.rb +37 -0
- data/spec/extensions/serialization_spec.rb +5 -8
- data/spec/extensions/single_table_inheritance_spec.rb +11 -0
- data/spec/extensions/spec_helper.rb +7 -1
- data/spec/extensions/thread_local_timezones_spec.rb +22 -2
- data/spec/extensions/to_dot_spec.rb +3 -5
- data/spec/extensions/typecast_on_load_spec.rb +1 -6
- data/spec/extensions/xml_serializer_spec.rb +16 -4
- data/spec/integration/associations_test.rb +522 -21
- data/spec/integration/database_test.rb +4 -2
- data/spec/integration/dataset_test.rb +375 -62
- data/spec/integration/eager_loader_test.rb +19 -21
- data/spec/integration/model_test.rb +80 -1
- data/spec/integration/plugin_test.rb +304 -116
- data/spec/integration/prepared_statement_test.rb +200 -120
- data/spec/integration/schema_test.rb +161 -30
- data/spec/integration/spec_helper.rb +39 -30
- data/spec/integration/timezone_test.rb +38 -12
- data/spec/integration/transaction_test.rb +172 -5
- data/spec/integration/type_test.rb +17 -3
- data/spec/model/association_reflection_spec.rb +174 -7
- data/spec/model/associations_spec.rb +849 -661
- data/spec/model/base_spec.rb +255 -95
- data/spec/model/dataset_methods_spec.rb +7 -27
- data/spec/model/eager_loading_spec.rb +640 -676
- data/spec/model/hooks_spec.rb +309 -67
- data/spec/model/model_spec.rb +207 -167
- data/spec/model/plugins_spec.rb +24 -13
- data/spec/model/record_spec.rb +321 -218
- data/spec/model/spec_helper.rb +13 -71
- data/spec/model/validations_spec.rb +11 -0
- metadata +95 -38
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
require File.join(File.dirname(File.expand_path(__FILE__)), 'spec_helper')
|
|
2
|
+
|
|
3
|
+
describe "Sequel::Dataset.introspect_all_columns" do
|
|
4
|
+
before do
|
|
5
|
+
@db = MODEL_DB
|
|
6
|
+
@ds = @db[:a]
|
|
7
|
+
class Sequel::Dataset
|
|
8
|
+
# Handle case where introspect_all_columns has already been called
|
|
9
|
+
alias columns columns_without_introspection unless instance_methods(false).map{|x| x.to_s}.include?('columns')
|
|
10
|
+
end
|
|
11
|
+
Sequel::Dataset.introspect_all_columns
|
|
12
|
+
@db.reset
|
|
13
|
+
end
|
|
14
|
+
after do
|
|
15
|
+
class Sequel::Dataset
|
|
16
|
+
alias columns columns_without_introspection
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
specify "should turn on column introspection by default" do
|
|
21
|
+
@ds.select(:x).columns.should == [:x]
|
|
22
|
+
@db.sqls.length.should == 0
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
describe "columns_introspection extension" do
|
|
27
|
+
before do
|
|
28
|
+
@db = MODEL_DB
|
|
29
|
+
@ds = @db[:a]
|
|
30
|
+
@ds.extend(Sequel::ColumnsIntrospection.dup) # dup to allow multiple places in class hierarchy
|
|
31
|
+
@db.reset
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
specify "should not issue a database query if the columns are already loaded" do
|
|
35
|
+
@ds.instance_variable_set(:@columns, [:x])
|
|
36
|
+
@ds.columns.should == [:x]
|
|
37
|
+
@db.sqls.length.should == 0
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
specify "should handle plain symbols without a database query" do
|
|
41
|
+
@ds.select(:x).columns.should == [:x]
|
|
42
|
+
@db.sqls.length.should == 0
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
specify "should handle qualified symbols without a database query" do
|
|
46
|
+
@ds.select(:t__x).columns.should == [:x]
|
|
47
|
+
@db.sqls.length.should == 0
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
specify "should handle aliased symbols without a database query" do
|
|
51
|
+
@ds.select(:x___a).columns.should == [:a]
|
|
52
|
+
@db.sqls.length.should == 0
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
specify "should handle qualified and aliased symbols without a database query" do
|
|
56
|
+
@ds.select(:t__x___a).columns.should == [:a]
|
|
57
|
+
@db.sqls.length.should == 0
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
specify "should handle SQL::Identifiers " do
|
|
61
|
+
@ds.select(:x.identifier).columns.should == [:x]
|
|
62
|
+
@db.sqls.length.should == 0
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
specify "should handle SQL::QualifiedIdentifiers" do
|
|
66
|
+
@ds.select(:x.qualify(:t)).columns.should == [:x]
|
|
67
|
+
@ds.select(:x.identifier.qualify(:t)).columns.should == [:x]
|
|
68
|
+
@db.sqls.length.should == 0
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
specify "should handle SQL::AliasedExpressions" do
|
|
72
|
+
@ds.select(:x.as(:a)).columns.should == [:a]
|
|
73
|
+
@ds.select(:x.as(:a.identifier)).columns.should == [:a]
|
|
74
|
+
@db.sqls.length.should == 0
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
specify "should issue a database query if the wildcard is selected" do
|
|
78
|
+
@ds.columns
|
|
79
|
+
@db.sqls.length.should == 1
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
specify "should issue a database query if an unsupported type is used" do
|
|
83
|
+
@ds.select(1).columns
|
|
84
|
+
@db.sqls.length.should == 1
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
specify "should not have column introspection on by default" do
|
|
88
|
+
@db[:a].select(:x).columns
|
|
89
|
+
@db.sqls.length.should == 1
|
|
90
|
+
end
|
|
91
|
+
end
|
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
require File.join(File.dirname(File.expand_path(__FILE__)), "spec_helper")
|
|
2
|
+
|
|
3
|
+
describe "Sequel::Plugins::DatasetAssociations" do
|
|
4
|
+
before do
|
|
5
|
+
@db = Sequel::Database.new
|
|
6
|
+
@Base = Class.new(Sequel::Model)
|
|
7
|
+
@Base.plugin :dataset_associations
|
|
8
|
+
|
|
9
|
+
@Artist = Class.new(@Base)
|
|
10
|
+
@Album = Class.new(@Base)
|
|
11
|
+
@Tag = Class.new(@Base)
|
|
12
|
+
|
|
13
|
+
@Artist.meta_def(:name){'Artist'}
|
|
14
|
+
@Album.meta_def(:name){'Album'}
|
|
15
|
+
@Tag.meta_def(:name){'Tag'}
|
|
16
|
+
|
|
17
|
+
@Artist.dataset = @db[:artists]
|
|
18
|
+
@Album.dataset = @db[:albums]
|
|
19
|
+
@Tag.dataset = @db[:tags]
|
|
20
|
+
|
|
21
|
+
@Artist.columns :id, :name
|
|
22
|
+
@Album.columns :id, :name, :artist_id
|
|
23
|
+
@Tag.columns :id, :name
|
|
24
|
+
|
|
25
|
+
@Artist.plugin :many_through_many
|
|
26
|
+
@Artist.one_to_many :albums, :class=>@Album
|
|
27
|
+
@Artist.one_to_one :first_album, :class=>@Album
|
|
28
|
+
@Album.many_to_one :artist, :class=>@Artist
|
|
29
|
+
@Album.many_to_many :tags, :class=>@Tag
|
|
30
|
+
@Tag.many_to_many :albums, :class=>@Album
|
|
31
|
+
@Artist.many_through_many :tags, [[:albums, :artist_id, :id], [:albums_tags, :album_id, :tag_id]], :class=>@Tag
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
it "should work for many_to_one associations" do
|
|
35
|
+
ds = @Album.artists
|
|
36
|
+
ds.should be_a_kind_of(Sequel::Dataset)
|
|
37
|
+
ds.model.should == @Artist
|
|
38
|
+
ds.sql.should == "SELECT * FROM artists WHERE (artists.id IN (SELECT albums.artist_id FROM albums))"
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
it "should work for one_to_many associations" do
|
|
42
|
+
ds = @Artist.albums
|
|
43
|
+
ds.should be_a_kind_of(Sequel::Dataset)
|
|
44
|
+
ds.model.should == @Album
|
|
45
|
+
ds.sql.should == "SELECT * FROM albums WHERE (albums.artist_id IN (SELECT artists.id FROM artists))"
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
it "should work for one_to_one associations" do
|
|
49
|
+
ds = @Artist.first_albums
|
|
50
|
+
ds.should be_a_kind_of(Sequel::Dataset)
|
|
51
|
+
ds.model.should == @Album
|
|
52
|
+
ds.sql.should == "SELECT * FROM albums WHERE (albums.artist_id IN (SELECT artists.id FROM artists))"
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
it "should work for many_to_many associations" do
|
|
56
|
+
ds = @Album.tags
|
|
57
|
+
ds.should be_a_kind_of(Sequel::Dataset)
|
|
58
|
+
ds.model.should == @Tag
|
|
59
|
+
ds.sql.should == "SELECT tags.* FROM tags WHERE (tags.id IN (SELECT albums_tags.tag_id FROM albums INNER JOIN albums_tags ON (albums_tags.album_id = albums.id)))"
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
it "should work for many_through_many associations" do
|
|
63
|
+
ds = @Artist.tags
|
|
64
|
+
ds.should be_a_kind_of(Sequel::Dataset)
|
|
65
|
+
ds.model.should == @Tag
|
|
66
|
+
ds.sql.should == "SELECT tags.* FROM tags WHERE (tags.id IN (SELECT albums_tags.tag_id FROM artists INNER JOIN albums ON (albums.artist_id = artists.id) INNER JOIN albums_tags ON (albums_tags.album_id = albums.id)))"
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
it "should have an associated method that takes an association symbol" do
|
|
70
|
+
ds = @Album.associated(:artist)
|
|
71
|
+
ds.should be_a_kind_of(Sequel::Dataset)
|
|
72
|
+
ds.model.should == @Artist
|
|
73
|
+
ds.sql.should == "SELECT * FROM artists WHERE (artists.id IN (SELECT albums.artist_id FROM albums))"
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
it "should raise an Error if an invalid association is given to associated" do
|
|
77
|
+
proc{@Album.associated(:foo)}.should raise_error(Sequel::Error)
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
it "should raise an Error if an unrecognized association type is used" do
|
|
81
|
+
@Album.association_reflection(:artist)[:type] = :foo
|
|
82
|
+
proc{@Album.artists}.should raise_error(Sequel::Error)
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
it "should work correctly when chaining" do
|
|
86
|
+
ds = @Artist.albums.tags
|
|
87
|
+
ds.should be_a_kind_of(Sequel::Dataset)
|
|
88
|
+
ds.model.should == @Tag
|
|
89
|
+
ds.sql.should == "SELECT tags.* FROM tags WHERE (tags.id IN (SELECT albums_tags.tag_id FROM albums INNER JOIN albums_tags ON (albums_tags.album_id = albums.id) WHERE (albums.artist_id IN (SELECT artists.id FROM artists))))"
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
it "should deal correctly with filters before the association method" do
|
|
93
|
+
@Artist.filter(:id=>1).albums.sql.should == "SELECT * FROM albums WHERE (albums.artist_id IN (SELECT artists.id FROM artists WHERE (id = 1)))"
|
|
94
|
+
end
|
|
95
|
+
|
|
96
|
+
it "should deal correctly with filters after the association method" do
|
|
97
|
+
@Artist.albums.filter(:id=>1).sql.should == "SELECT * FROM albums WHERE ((albums.artist_id IN (SELECT artists.id FROM artists)) AND (id = 1))"
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
it "should deal correctly with block on the association" do
|
|
101
|
+
@Artist.one_to_many :albums, :clone=>:albums do |ds| ds.filter(:id=>1..100) end
|
|
102
|
+
@Artist.albums.sql.should == "SELECT * FROM albums WHERE ((albums.artist_id IN (SELECT artists.id FROM artists)) AND (id >= 1) AND (id <= 100))"
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
it "should deal correctly with :conditions option on the association" do
|
|
106
|
+
@Artist.one_to_many :albums, :clone=>:albums, :conditions=>{:id=>1..100}
|
|
107
|
+
@Artist.albums.sql.should == "SELECT * FROM albums WHERE ((albums.artist_id IN (SELECT artists.id FROM artists)) AND (id >= 1) AND (id <= 100))"
|
|
108
|
+
end
|
|
109
|
+
|
|
110
|
+
it "should deal correctly with :distinct option on the association" do
|
|
111
|
+
@Artist.one_to_many :albums, :clone=>:albums, :distinct=>true
|
|
112
|
+
@Artist.albums.sql.should == "SELECT DISTINCT * FROM albums WHERE (albums.artist_id IN (SELECT artists.id FROM artists))"
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
it "should deal correctly with :eager option on the association" do
|
|
116
|
+
@Artist.one_to_many :albums, :clone=>:albums, :eager=>:tags
|
|
117
|
+
@Artist.albums.opts[:eager].should == {:tags=>nil}
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
it "should deal correctly with :eager_block option on the association, ignoring the association block" do
|
|
121
|
+
@Artist.one_to_many :albums, :clone=>:albums, :eager_block=>proc{|ds| ds.filter(:id=>1..100)} do |ds| ds.filter(:id=>2..200) end
|
|
122
|
+
@Artist.albums.sql.should == "SELECT * FROM albums WHERE ((albums.artist_id IN (SELECT artists.id FROM artists)) AND (id >= 1) AND (id <= 100))"
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
it "should deal correctly with :extend option on the association" do
|
|
126
|
+
@Artist.one_to_many :albums, :clone=>:albums, :extend=>Module.new{def foo(x) filter(:id=>x) end}
|
|
127
|
+
@Artist.albums.foo(1).sql.should == "SELECT * FROM albums WHERE ((albums.artist_id IN (SELECT artists.id FROM artists)) AND (id = 1))"
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
it "should deal correctly with :order option on the association" do
|
|
131
|
+
@Artist.one_to_many :albums, :clone=>:albums, :order=>:name
|
|
132
|
+
@Artist.albums.sql.should == "SELECT * FROM albums WHERE (albums.artist_id IN (SELECT artists.id FROM artists)) ORDER BY name"
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
it "should deal correctly with :select option on the association" do
|
|
136
|
+
@Artist.one_to_many :albums, :clone=>:albums, :select=>[:id, :name]
|
|
137
|
+
@Artist.albums.sql.should == "SELECT id, name FROM albums WHERE (albums.artist_id IN (SELECT artists.id FROM artists))"
|
|
138
|
+
end
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
describe "Sequel::Plugins::DatasetAssociations with composite keys" do
|
|
142
|
+
before do
|
|
143
|
+
@db = Sequel::Database.new
|
|
144
|
+
@Base = Class.new(Sequel::Model)
|
|
145
|
+
@Base.plugin :dataset_associations
|
|
146
|
+
|
|
147
|
+
@Artist = Class.new(@Base)
|
|
148
|
+
@Album = Class.new(@Base)
|
|
149
|
+
@Tag = Class.new(@Base)
|
|
150
|
+
|
|
151
|
+
@Artist.meta_def(:name){'Artist'}
|
|
152
|
+
@Album.meta_def(:name){'Album'}
|
|
153
|
+
@Tag.meta_def(:name){'Tag'}
|
|
154
|
+
|
|
155
|
+
@Artist.dataset = @db[:artists]
|
|
156
|
+
@Album.dataset = @db[:albums]
|
|
157
|
+
@Tag.dataset = @db[:tags]
|
|
158
|
+
|
|
159
|
+
@Artist.set_primary_key([:id1, :id2])
|
|
160
|
+
@Album.set_primary_key([:id1, :id2])
|
|
161
|
+
@Tag.set_primary_key([:id1, :id2])
|
|
162
|
+
|
|
163
|
+
@Artist.columns :id1, :id2, :name
|
|
164
|
+
@Album.columns :id1, :id2, :name, :artist_id1, :artist_id2
|
|
165
|
+
@Tag.columns :id1, :id2, :name
|
|
166
|
+
|
|
167
|
+
@Artist.plugin :many_through_many
|
|
168
|
+
@Artist.one_to_many :albums, :class=>@Album, :key=>[:artist_id1, :artist_id2]
|
|
169
|
+
@Artist.one_to_one :first_album, :class=>@Album, :key=>[:artist_id1, :artist_id2]
|
|
170
|
+
@Album.many_to_one :artist, :class=>@Artist, :key=>[:artist_id1, :artist_id2]
|
|
171
|
+
@Album.many_to_many :tags, :class=>@Tag, :left_key=>[:album_id1, :album_id2], :right_key=>[:tag_id1, :tag_id2]
|
|
172
|
+
@Tag.many_to_many :albums, :class=>@Album, :right_key=>[:album_id1, :album_id2], :left_key=>[:tag_id1, :tag_id2]
|
|
173
|
+
@Artist.many_through_many :tags, [[:albums, [:artist_id1, :artist_id2], [:id1, :id2]], [:albums_tags, [:album_id1, :album_id2], [:tag_id1, :tag_id2]]], :class=>@Tag
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
it "should work for many_to_one associations" do
|
|
177
|
+
@Album.artists.sql.should == "SELECT * FROM artists WHERE ((artists.id1, artists.id2) IN (SELECT albums.artist_id1, albums.artist_id2 FROM albums))"
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
it "should work for one_to_many associations" do
|
|
181
|
+
@Artist.albums.sql.should == "SELECT * FROM albums WHERE ((albums.artist_id1, albums.artist_id2) IN (SELECT artists.id1, artists.id2 FROM artists))"
|
|
182
|
+
end
|
|
183
|
+
|
|
184
|
+
it "should work for one_to_one associations" do
|
|
185
|
+
@Artist.first_albums.sql.should == "SELECT * FROM albums WHERE ((albums.artist_id1, albums.artist_id2) IN (SELECT artists.id1, artists.id2 FROM artists))"
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
it "should work for many_to_many associations" do
|
|
189
|
+
@Album.tags.sql.should == "SELECT tags.* FROM tags WHERE ((tags.id1, tags.id2) IN (SELECT albums_tags.tag_id1, albums_tags.tag_id2 FROM albums INNER JOIN albums_tags ON ((albums_tags.album_id1 = albums.id1) AND (albums_tags.album_id2 = albums.id2))))"
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
it "should work for many_through_many associations" do
|
|
193
|
+
@Artist.tags.sql.should == "SELECT tags.* FROM tags WHERE ((tags.id1, tags.id2) IN (SELECT albums_tags.tag_id1, albums_tags.tag_id2 FROM artists INNER JOIN albums ON ((albums.artist_id1 = artists.id1) AND (albums.artist_id2 = artists.id2)) INNER JOIN albums_tags ON ((albums_tags.album_id1 = albums.id1) AND (albums_tags.album_id2 = albums.id2))))"
|
|
194
|
+
end
|
|
195
|
+
|
|
196
|
+
it "should work correctly when chaining" do
|
|
197
|
+
@Artist.albums.tags.sql.should == "SELECT tags.* FROM tags WHERE ((tags.id1, tags.id2) IN (SELECT albums_tags.tag_id1, albums_tags.tag_id2 FROM albums INNER JOIN albums_tags ON ((albums_tags.album_id1 = albums.id1) AND (albums_tags.album_id2 = albums.id2)) WHERE ((albums.artist_id1, albums.artist_id2) IN (SELECT artists.id1, artists.id2 FROM artists))))"
|
|
198
|
+
end
|
|
199
|
+
end
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
require File.join(File.dirname(File.expand_path(__FILE__)), "spec_helper")
|
|
2
|
+
|
|
3
|
+
describe "Sequel::Plugins::DefaultsSetter" do
|
|
4
|
+
before do
|
|
5
|
+
@db = db = Sequel::Database.new
|
|
6
|
+
@c = c = Class.new(Sequel::Model(db[:foo]))
|
|
7
|
+
@c.instance_variable_set(:@db_schema, {:a=>{}})
|
|
8
|
+
@c.plugin :defaults_setter
|
|
9
|
+
@c.columns :a
|
|
10
|
+
@pr = proc{|x| db.meta_def(:schema){|*| [[:a, {:ruby_default => x}]]}; c.dataset = c.dataset; c}
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
it "should set default value upon initialization" do
|
|
14
|
+
@pr.call(2).new.values.should == {:a=>2}
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
it "should not mark the column as modified" do
|
|
18
|
+
@pr.call(2).new.changed_columns.should == []
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
it "should not set a default of nil" do
|
|
22
|
+
@pr.call(nil).new.values.should == {}
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
it "should not override a given value" do
|
|
26
|
+
@pr.call(2)
|
|
27
|
+
@c.new('a'=>3).values.should == {:a=>3}
|
|
28
|
+
@c.new('a'=>nil).values.should == {:a=>nil}
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
it "should work correctly when subclassing" do
|
|
32
|
+
Class.new(@pr.call(2)).new.values.should == {:a=>2}
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
it "should contain the default values in default_values" do
|
|
36
|
+
@pr.call(2).default_values.should == {:a=>2}
|
|
37
|
+
@pr.call(nil).default_values.should == {}
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
it "should allow modifications of default values" do
|
|
41
|
+
@pr.call(2)
|
|
42
|
+
@c.default_values[:a] = 3
|
|
43
|
+
@c.new.values.should == {:a => 3}
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
it "should allow proc default values" do
|
|
47
|
+
@pr.call(2)
|
|
48
|
+
@c.default_values[:a] = proc{3}
|
|
49
|
+
@c.new.values.should == {:a => 3}
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
it "should have procs that set default values set them to nil" do
|
|
53
|
+
@pr.call(2)
|
|
54
|
+
@c.default_values[:a] = proc{nil}
|
|
55
|
+
@c.new.values.should == {:a => nil}
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
it "should work correctly on a model without a dataset" do
|
|
59
|
+
@pr.call(2)
|
|
60
|
+
c = Class.new(Sequel::Model(@db[:bar]))
|
|
61
|
+
c.plugin :defaults_setter
|
|
62
|
+
c.default_values.should == {:a=>2}
|
|
63
|
+
end
|
|
64
|
+
end
|
|
@@ -13,6 +13,11 @@ describe "Sequel::Plugins::IdentityMap" do
|
|
|
13
13
|
execute(sql)
|
|
14
14
|
yield h
|
|
15
15
|
end
|
|
16
|
+
def self.waw_identity_map(&block) # with and without
|
|
17
|
+
with_identity_map(&block)
|
|
18
|
+
db.reset
|
|
19
|
+
yield
|
|
20
|
+
end
|
|
16
21
|
end
|
|
17
22
|
class ::IdentityMapAlbum < ::IdentityMapModel
|
|
18
23
|
columns :artist_id
|
|
@@ -216,4 +221,161 @@ describe "Sequel::Plugins::IdentityMap" do
|
|
|
216
221
|
MODEL_DB.sqls.length.should == 2
|
|
217
222
|
end
|
|
218
223
|
end
|
|
224
|
+
|
|
225
|
+
it "should not override custom :eager_loaders for many_to_many associations" do
|
|
226
|
+
@c1.columns :id
|
|
227
|
+
@c2.columns :id
|
|
228
|
+
c = @c2
|
|
229
|
+
@c1.many_to_many :artists, :class=>@c2, :left_key=>:album_id, :right_key=>:artist_id, :join_table=>:aa, :eager_loader=>(proc do |eo|
|
|
230
|
+
eo[:rows].each{|object| object.associations[:artists] = [c.load(:id=>object.id)]}
|
|
231
|
+
end)
|
|
232
|
+
ds = @c1.dataset
|
|
233
|
+
def ds.fetch_rows(sql)
|
|
234
|
+
execute(sql)
|
|
235
|
+
yield({:id=>1})
|
|
236
|
+
yield({:id=>2})
|
|
237
|
+
yield({:id=>3})
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
@c.waw_identity_map do
|
|
241
|
+
MODEL_DB.sqls.length.should == 0
|
|
242
|
+
a = @c1.eager(:artists).all
|
|
243
|
+
MODEL_DB.sqls.length.should == 1
|
|
244
|
+
a.should == [@c1.load(:id=>1), @c1.load(:id=>2), @c1.load(:id=>3)]
|
|
245
|
+
a.map{|x| x.artists}.should == [[@c2.load(:id=>1)], [@c2.load(:id=>2)], [@c2.load(:id=>3)]]
|
|
246
|
+
MODEL_DB.sqls.length.should == 1
|
|
247
|
+
end
|
|
248
|
+
end
|
|
249
|
+
|
|
250
|
+
it "should work correctly when eagerly loading many_to_many associations" do
|
|
251
|
+
@c1.columns :id
|
|
252
|
+
@c2.columns :id
|
|
253
|
+
@c1.many_to_many :artists, :class=>@c2, :left_key=>:album_id, :right_key=>:artist_id, :join_table=>:aa
|
|
254
|
+
ds = @c1.dataset
|
|
255
|
+
def ds.fetch_rows(sql)
|
|
256
|
+
execute(sql)
|
|
257
|
+
yield({:id=>1})
|
|
258
|
+
yield({:id=>2})
|
|
259
|
+
yield({:id=>3})
|
|
260
|
+
end
|
|
261
|
+
ds = @c2.dataset
|
|
262
|
+
def ds.fetch_rows(sql)
|
|
263
|
+
execute(sql)
|
|
264
|
+
yield({:id=>1, :x_foreign_key_x=>1})
|
|
265
|
+
yield({:id=>1, :x_foreign_key_x=>2})
|
|
266
|
+
yield({:id=>2, :x_foreign_key_x=>1})
|
|
267
|
+
yield({:id=>2, :x_foreign_key_x=>2})
|
|
268
|
+
yield({:id=>3, :x_foreign_key_x=>1})
|
|
269
|
+
yield({:id=>3, :x_foreign_key_x=>1})
|
|
270
|
+
end
|
|
271
|
+
|
|
272
|
+
@c.waw_identity_map do
|
|
273
|
+
MODEL_DB.sqls.length.should == 0
|
|
274
|
+
a = @c1.eager(:artists).all
|
|
275
|
+
MODEL_DB.sqls.length.should == 2
|
|
276
|
+
a.should == [@c1.load(:id=>1), @c1.load(:id=>2), @c1.load(:id=>3)]
|
|
277
|
+
a.map{|x| x.artists}.should == [[@c2.load(:id=>1), @c2.load(:id=>2), @c2.load(:id=>3), @c2.load(:id=>3)], [@c2.load(:id=>1), @c2.load(:id=>2)], []]
|
|
278
|
+
MODEL_DB.sqls.length.should == 2
|
|
279
|
+
end
|
|
280
|
+
end
|
|
281
|
+
|
|
282
|
+
it "should work correctly when eagerly loading many_to_many associations with composite keys" do
|
|
283
|
+
@c1.columns :id, :id2
|
|
284
|
+
@c2.columns :id
|
|
285
|
+
@c1.set_primary_key :id, :id2
|
|
286
|
+
@c1.many_to_many :artists, :class=>@c2, :left_key=>[:album_id1, :album_id2], :right_key=>:artist_id, :join_table=>:aa
|
|
287
|
+
ds = @c1.dataset
|
|
288
|
+
def ds.fetch_rows(sql)
|
|
289
|
+
execute(sql)
|
|
290
|
+
yield({:id=>1, :id2=>4})
|
|
291
|
+
yield({:id=>2, :id2=>5})
|
|
292
|
+
yield({:id=>3, :id2=>6})
|
|
293
|
+
end
|
|
294
|
+
ds = @c2.dataset
|
|
295
|
+
def ds.fetch_rows(sql)
|
|
296
|
+
execute(sql)
|
|
297
|
+
yield({:id=>1, :x_foreign_key_0_x=>1, :x_foreign_key_1_x=>4})
|
|
298
|
+
yield({:id=>1, :x_foreign_key_0_x=>2, :x_foreign_key_1_x=>5})
|
|
299
|
+
yield({:id=>2, :x_foreign_key_0_x=>1, :x_foreign_key_1_x=>4})
|
|
300
|
+
yield({:id=>2, :x_foreign_key_0_x=>2, :x_foreign_key_1_x=>5})
|
|
301
|
+
yield({:id=>3, :x_foreign_key_0_x=>1, :x_foreign_key_1_x=>4})
|
|
302
|
+
yield({:id=>3, :x_foreign_key_0_x=>1, :x_foreign_key_1_x=>4})
|
|
303
|
+
end
|
|
304
|
+
|
|
305
|
+
@c.waw_identity_map do
|
|
306
|
+
MODEL_DB.sqls.length.should == 0
|
|
307
|
+
a = @c1.eager(:artists).all
|
|
308
|
+
MODEL_DB.sqls.length.should == 2
|
|
309
|
+
a.should == [@c1.load(:id=>1, :id2=>4), @c1.load(:id=>2, :id2=>5), @c1.load(:id=>3, :id2=>6)]
|
|
310
|
+
a.map{|x| x.artists}.should == [[@c2.load(:id=>1), @c2.load(:id=>2), @c2.load(:id=>3), @c2.load(:id=>3)], [@c2.load(:id=>1), @c2.load(:id=>2)], []]
|
|
311
|
+
MODEL_DB.sqls.length.should == 2
|
|
312
|
+
end
|
|
313
|
+
end
|
|
314
|
+
|
|
315
|
+
it "should work correctly when eagerly loading many_through_many associations" do
|
|
316
|
+
@c1.columns :id
|
|
317
|
+
@c2.columns :id
|
|
318
|
+
@c1.plugin :many_through_many
|
|
319
|
+
@c1.many_through_many :artists, [[:aa, :album_id, :artist_id]], :class=>@c2
|
|
320
|
+
ds = @c1.dataset
|
|
321
|
+
def ds.fetch_rows(sql)
|
|
322
|
+
execute(sql)
|
|
323
|
+
yield({:id=>1})
|
|
324
|
+
yield({:id=>2})
|
|
325
|
+
yield({:id=>3})
|
|
326
|
+
end
|
|
327
|
+
ds = @c2.dataset
|
|
328
|
+
def ds.fetch_rows(sql)
|
|
329
|
+
execute(sql)
|
|
330
|
+
yield({:id=>1, :x_foreign_key_x=>1})
|
|
331
|
+
yield({:id=>1, :x_foreign_key_x=>2})
|
|
332
|
+
yield({:id=>2, :x_foreign_key_x=>1})
|
|
333
|
+
yield({:id=>2, :x_foreign_key_x=>2})
|
|
334
|
+
yield({:id=>3, :x_foreign_key_x=>1})
|
|
335
|
+
yield({:id=>3, :x_foreign_key_x=>1})
|
|
336
|
+
end
|
|
337
|
+
|
|
338
|
+
@c.waw_identity_map do
|
|
339
|
+
MODEL_DB.sqls.length.should == 0
|
|
340
|
+
a = @c1.eager(:artists).all
|
|
341
|
+
MODEL_DB.sqls.length.should == 2
|
|
342
|
+
a.should == [@c1.load(:id=>1), @c1.load(:id=>2), @c1.load(:id=>3)]
|
|
343
|
+
a.map{|x| x.artists}.should == [[@c2.load(:id=>1), @c2.load(:id=>2), @c2.load(:id=>3), @c2.load(:id=>3)], [@c2.load(:id=>1), @c2.load(:id=>2)], []]
|
|
344
|
+
MODEL_DB.sqls.length.should == 2
|
|
345
|
+
end
|
|
346
|
+
end
|
|
347
|
+
|
|
348
|
+
it "should work correctly when eagerly loading many_to_many associations with composite keys" do
|
|
349
|
+
@c1.columns :id, :id2
|
|
350
|
+
@c2.columns :id
|
|
351
|
+
@c1.set_primary_key :id, :id2
|
|
352
|
+
@c1.plugin :many_through_many
|
|
353
|
+
@c1.many_through_many :artists, [[:aa, [:album_id1, :album_id2], :artist_id]], :class=>@c2
|
|
354
|
+
ds = @c1.dataset
|
|
355
|
+
def ds.fetch_rows(sql)
|
|
356
|
+
execute(sql)
|
|
357
|
+
yield({:id=>1, :id2=>4})
|
|
358
|
+
yield({:id=>2, :id2=>5})
|
|
359
|
+
yield({:id=>3, :id2=>6})
|
|
360
|
+
end
|
|
361
|
+
ds = @c2.dataset
|
|
362
|
+
def ds.fetch_rows(sql)
|
|
363
|
+
execute(sql)
|
|
364
|
+
yield({:id=>1, :x_foreign_key_0_x=>1, :x_foreign_key_1_x=>4})
|
|
365
|
+
yield({:id=>1, :x_foreign_key_0_x=>2, :x_foreign_key_1_x=>5})
|
|
366
|
+
yield({:id=>2, :x_foreign_key_0_x=>1, :x_foreign_key_1_x=>4})
|
|
367
|
+
yield({:id=>2, :x_foreign_key_0_x=>2, :x_foreign_key_1_x=>5})
|
|
368
|
+
yield({:id=>3, :x_foreign_key_0_x=>1, :x_foreign_key_1_x=>4})
|
|
369
|
+
yield({:id=>3, :x_foreign_key_0_x=>1, :x_foreign_key_1_x=>4})
|
|
370
|
+
end
|
|
371
|
+
|
|
372
|
+
@c.waw_identity_map do
|
|
373
|
+
MODEL_DB.sqls.length.should == 0
|
|
374
|
+
a = @c1.eager(:artists).all
|
|
375
|
+
MODEL_DB.sqls.length.should == 2
|
|
376
|
+
a.should == [@c1.load(:id=>1, :id2=>4), @c1.load(:id=>2, :id2=>5), @c1.load(:id=>3, :id2=>6)]
|
|
377
|
+
a.map{|x| x.artists}.should == [[@c2.load(:id=>1), @c2.load(:id=>2), @c2.load(:id=>3), @c2.load(:id=>3)], [@c2.load(:id=>1), @c2.load(:id=>2)], []]
|
|
378
|
+
MODEL_DB.sqls.length.should == 2
|
|
379
|
+
end
|
|
380
|
+
end
|
|
219
381
|
end
|
|
@@ -177,3 +177,74 @@ describe "InstanceHooks plugin" do
|
|
|
177
177
|
@r.should == [2, 1, 4, 3]
|
|
178
178
|
end
|
|
179
179
|
end
|
|
180
|
+
|
|
181
|
+
describe "InstanceHooks plugin with transactions" do
|
|
182
|
+
before do
|
|
183
|
+
@logger = Object.new
|
|
184
|
+
def @logger.method_missing(meth, sql)
|
|
185
|
+
(@sqls ||= []) << sql
|
|
186
|
+
end
|
|
187
|
+
def @logger.sqls
|
|
188
|
+
@sqls
|
|
189
|
+
end
|
|
190
|
+
@db = Class.new(Sequel::Database) do
|
|
191
|
+
def connect(*)
|
|
192
|
+
Object.new
|
|
193
|
+
end
|
|
194
|
+
def log_connection_execute(conn, sql)
|
|
195
|
+
execute(sql)
|
|
196
|
+
end
|
|
197
|
+
def execute(sql, opts={})
|
|
198
|
+
@loggers.each{|l| l.info(sql)}
|
|
199
|
+
end
|
|
200
|
+
end.new(:loggers=>[@logger])
|
|
201
|
+
pr = proc{|x| r(x)}
|
|
202
|
+
@c = Class.new(Sequel::Model(@db[:items])) do
|
|
203
|
+
attr_accessor :rb
|
|
204
|
+
def _delete
|
|
205
|
+
end
|
|
206
|
+
def after_save
|
|
207
|
+
db.execute('as')
|
|
208
|
+
raise Sequel::Rollback if rb
|
|
209
|
+
end
|
|
210
|
+
def after_destroy
|
|
211
|
+
db.execute('ad')
|
|
212
|
+
raise Sequel::Rollback if rb
|
|
213
|
+
end
|
|
214
|
+
end
|
|
215
|
+
@c.use_transactions = true
|
|
216
|
+
@c.plugin :instance_hooks
|
|
217
|
+
@o = @c.load({:id=>1})
|
|
218
|
+
@or = @c.load({:id=>1})
|
|
219
|
+
@or.rb = true
|
|
220
|
+
@r = []
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
it "should support after_commit_hook" do
|
|
224
|
+
@o.after_commit_hook{@db.execute('ac1')}
|
|
225
|
+
@o.after_commit_hook{@db.execute('ac2')}
|
|
226
|
+
@o.save.should_not be_nil
|
|
227
|
+
@logger.sqls.should == ['BEGIN', 'as', 'COMMIT', 'ac1', 'ac2']
|
|
228
|
+
end
|
|
229
|
+
|
|
230
|
+
it "should support after_rollback_hook" do
|
|
231
|
+
@or.after_rollback_hook{@db.execute('ar1')}
|
|
232
|
+
@or.after_rollback_hook{@db.execute('ar2')}
|
|
233
|
+
@or.save.should be_nil
|
|
234
|
+
@logger.sqls.should == ['BEGIN', 'as', 'ROLLBACK', 'ar1', 'ar2']
|
|
235
|
+
end
|
|
236
|
+
|
|
237
|
+
it "should support after_commit_hook" do
|
|
238
|
+
@o.after_destroy_commit_hook{@db.execute('adc1')}
|
|
239
|
+
@o.after_destroy_commit_hook{@db.execute('adc2')}
|
|
240
|
+
@o.destroy.should_not be_nil
|
|
241
|
+
@logger.sqls.should == ['BEGIN', 'ad', 'COMMIT', 'adc1', 'adc2']
|
|
242
|
+
end
|
|
243
|
+
|
|
244
|
+
it "should support after_rollback_hook" do
|
|
245
|
+
@or.after_destroy_rollback_hook{@db.execute('adr1')}
|
|
246
|
+
@or.after_destroy_rollback_hook{@db.execute('adr2')}
|
|
247
|
+
@or.destroy.should be_nil
|
|
248
|
+
@logger.sqls.should == ['BEGIN', 'ad', 'ROLLBACK', 'adr1', 'adr2']
|
|
249
|
+
end
|
|
250
|
+
end
|