ardm-core 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.autotest +29 -0
- data/.document +5 -0
- data/.gitignore +35 -0
- data/.travis.yml +23 -0
- data/.yardopts +1 -0
- data/Gemfile +63 -0
- data/LICENSE +20 -0
- data/README.rdoc +237 -0
- data/Rakefile +4 -0
- data/VERSION +1 -0
- data/ardm-core.gemspec +25 -0
- data/lib/ardm-core.rb +1 -0
- data/lib/dm-core.rb +285 -0
- data/lib/dm-core/adapters.rb +222 -0
- data/lib/dm-core/adapters/abstract_adapter.rb +236 -0
- data/lib/dm-core/adapters/in_memory_adapter.rb +113 -0
- data/lib/dm-core/associations/many_to_many.rb +496 -0
- data/lib/dm-core/associations/many_to_one.rb +296 -0
- data/lib/dm-core/associations/one_to_many.rb +345 -0
- data/lib/dm-core/associations/one_to_one.rb +86 -0
- data/lib/dm-core/associations/relationship.rb +663 -0
- data/lib/dm-core/backwards.rb +13 -0
- data/lib/dm-core/collection.rb +1514 -0
- data/lib/dm-core/core_ext/kernel.rb +23 -0
- data/lib/dm-core/core_ext/pathname.rb +6 -0
- data/lib/dm-core/core_ext/symbol.rb +10 -0
- data/lib/dm-core/identity_map.rb +7 -0
- data/lib/dm-core/model.rb +869 -0
- data/lib/dm-core/model/hook.rb +102 -0
- data/lib/dm-core/model/is.rb +32 -0
- data/lib/dm-core/model/property.rb +253 -0
- data/lib/dm-core/model/relationship.rb +377 -0
- data/lib/dm-core/model/scope.rb +89 -0
- data/lib/dm-core/property.rb +839 -0
- data/lib/dm-core/property/binary.rb +22 -0
- data/lib/dm-core/property/boolean.rb +31 -0
- data/lib/dm-core/property/class.rb +24 -0
- data/lib/dm-core/property/date.rb +45 -0
- data/lib/dm-core/property/date_time.rb +44 -0
- data/lib/dm-core/property/decimal.rb +50 -0
- data/lib/dm-core/property/discriminator.rb +46 -0
- data/lib/dm-core/property/float.rb +28 -0
- data/lib/dm-core/property/integer.rb +32 -0
- data/lib/dm-core/property/lookup.rb +29 -0
- data/lib/dm-core/property/numeric.rb +40 -0
- data/lib/dm-core/property/object.rb +28 -0
- data/lib/dm-core/property/serial.rb +13 -0
- data/lib/dm-core/property/string.rb +50 -0
- data/lib/dm-core/property/text.rb +12 -0
- data/lib/dm-core/property/time.rb +46 -0
- data/lib/dm-core/property/typecast/numeric.rb +32 -0
- data/lib/dm-core/property/typecast/time.rb +33 -0
- data/lib/dm-core/property_set.rb +177 -0
- data/lib/dm-core/query.rb +1444 -0
- data/lib/dm-core/query/conditions/comparison.rb +910 -0
- data/lib/dm-core/query/conditions/operation.rb +720 -0
- data/lib/dm-core/query/direction.rb +36 -0
- data/lib/dm-core/query/operator.rb +35 -0
- data/lib/dm-core/query/path.rb +114 -0
- data/lib/dm-core/query/sort.rb +39 -0
- data/lib/dm-core/relationship_set.rb +72 -0
- data/lib/dm-core/repository.rb +226 -0
- data/lib/dm-core/resource.rb +1228 -0
- data/lib/dm-core/resource/persistence_state.rb +75 -0
- data/lib/dm-core/resource/persistence_state/clean.rb +40 -0
- data/lib/dm-core/resource/persistence_state/deleted.rb +30 -0
- data/lib/dm-core/resource/persistence_state/dirty.rb +96 -0
- data/lib/dm-core/resource/persistence_state/immutable.rb +34 -0
- data/lib/dm-core/resource/persistence_state/persisted.rb +29 -0
- data/lib/dm-core/resource/persistence_state/transient.rb +78 -0
- data/lib/dm-core/spec/lib/adapter_helpers.rb +54 -0
- data/lib/dm-core/spec/lib/collection_helpers.rb +20 -0
- data/lib/dm-core/spec/lib/counter_adapter.rb +38 -0
- data/lib/dm-core/spec/lib/pending_helpers.rb +50 -0
- data/lib/dm-core/spec/lib/spec_helper.rb +74 -0
- data/lib/dm-core/spec/setup.rb +173 -0
- data/lib/dm-core/spec/shared/adapter_spec.rb +326 -0
- data/lib/dm-core/spec/shared/public/property_spec.rb +229 -0
- data/lib/dm-core/spec/shared/resource_spec.rb +1236 -0
- data/lib/dm-core/spec/shared/sel_spec.rb +111 -0
- data/lib/dm-core/spec/shared/semipublic/property_spec.rb +134 -0
- data/lib/dm-core/spec/shared/semipublic/query/conditions/abstract_comparison_spec.rb +261 -0
- data/lib/dm-core/support/assertions.rb +8 -0
- data/lib/dm-core/support/chainable.rb +18 -0
- data/lib/dm-core/support/deprecate.rb +12 -0
- data/lib/dm-core/support/descendant_set.rb +89 -0
- data/lib/dm-core/support/equalizer.rb +48 -0
- data/lib/dm-core/support/ext/array.rb +22 -0
- data/lib/dm-core/support/ext/blank.rb +25 -0
- data/lib/dm-core/support/ext/hash.rb +67 -0
- data/lib/dm-core/support/ext/module.rb +47 -0
- data/lib/dm-core/support/ext/object.rb +57 -0
- data/lib/dm-core/support/ext/string.rb +24 -0
- data/lib/dm-core/support/ext/try_dup.rb +12 -0
- data/lib/dm-core/support/hook.rb +402 -0
- data/lib/dm-core/support/inflections.rb +60 -0
- data/lib/dm-core/support/inflector/inflections.rb +211 -0
- data/lib/dm-core/support/inflector/methods.rb +151 -0
- data/lib/dm-core/support/lazy_array.rb +451 -0
- data/lib/dm-core/support/local_object_space.rb +12 -0
- data/lib/dm-core/support/logger.rb +199 -0
- data/lib/dm-core/support/mash.rb +176 -0
- data/lib/dm-core/support/naming_conventions.rb +90 -0
- data/lib/dm-core/support/ordered_set.rb +380 -0
- data/lib/dm-core/support/subject.rb +33 -0
- data/lib/dm-core/support/subject_set.rb +250 -0
- data/lib/dm-core/version.rb +3 -0
- data/script/performance.rb +275 -0
- data/script/profile.rb +218 -0
- data/spec/lib/rspec_immediate_feedback_formatter.rb +54 -0
- data/spec/public/associations/many_to_many/read_multiple_join_spec.rb +68 -0
- data/spec/public/associations/many_to_many_spec.rb +197 -0
- data/spec/public/associations/many_to_one_spec.rb +83 -0
- data/spec/public/associations/many_to_one_with_boolean_cpk_spec.rb +40 -0
- data/spec/public/associations/many_to_one_with_custom_fk_spec.rb +49 -0
- data/spec/public/associations/one_to_many_spec.rb +81 -0
- data/spec/public/associations/one_to_one_spec.rb +176 -0
- data/spec/public/associations/one_to_one_with_boolean_cpk_spec.rb +46 -0
- data/spec/public/collection_spec.rb +69 -0
- data/spec/public/finalize_spec.rb +76 -0
- data/spec/public/model/hook_spec.rb +246 -0
- data/spec/public/model/property_spec.rb +88 -0
- data/spec/public/model/relationship_spec.rb +1040 -0
- data/spec/public/model_spec.rb +458 -0
- data/spec/public/property/binary_spec.rb +41 -0
- data/spec/public/property/boolean_spec.rb +22 -0
- data/spec/public/property/class_spec.rb +28 -0
- data/spec/public/property/date_spec.rb +22 -0
- data/spec/public/property/date_time_spec.rb +22 -0
- data/spec/public/property/decimal_spec.rb +23 -0
- data/spec/public/property/discriminator_spec.rb +135 -0
- data/spec/public/property/float_spec.rb +22 -0
- data/spec/public/property/integer_spec.rb +22 -0
- data/spec/public/property/object_spec.rb +107 -0
- data/spec/public/property/serial_spec.rb +22 -0
- data/spec/public/property/string_spec.rb +22 -0
- data/spec/public/property/text_spec.rb +63 -0
- data/spec/public/property/time_spec.rb +22 -0
- data/spec/public/property_spec.rb +341 -0
- data/spec/public/resource_spec.rb +284 -0
- data/spec/public/sel_spec.rb +53 -0
- data/spec/public/setup_spec.rb +145 -0
- data/spec/public/shared/association_collection_shared_spec.rb +309 -0
- data/spec/public/shared/collection_finder_shared_spec.rb +267 -0
- data/spec/public/shared/collection_shared_spec.rb +1669 -0
- data/spec/public/shared/finder_shared_spec.rb +1629 -0
- data/spec/rcov.opts +6 -0
- data/spec/semipublic/adapters/abstract_adapter_spec.rb +30 -0
- data/spec/semipublic/adapters/in_memory_adapter_spec.rb +12 -0
- data/spec/semipublic/associations/many_to_many_spec.rb +94 -0
- data/spec/semipublic/associations/many_to_one_spec.rb +63 -0
- data/spec/semipublic/associations/one_to_many_spec.rb +55 -0
- data/spec/semipublic/associations/one_to_one_spec.rb +53 -0
- data/spec/semipublic/associations/relationship_spec.rb +200 -0
- data/spec/semipublic/associations_spec.rb +177 -0
- data/spec/semipublic/collection_spec.rb +110 -0
- data/spec/semipublic/model_spec.rb +96 -0
- data/spec/semipublic/property/binary_spec.rb +13 -0
- data/spec/semipublic/property/boolean_spec.rb +47 -0
- data/spec/semipublic/property/class_spec.rb +33 -0
- data/spec/semipublic/property/date_spec.rb +43 -0
- data/spec/semipublic/property/date_time_spec.rb +46 -0
- data/spec/semipublic/property/decimal_spec.rb +83 -0
- data/spec/semipublic/property/discriminator_spec.rb +19 -0
- data/spec/semipublic/property/float_spec.rb +82 -0
- data/spec/semipublic/property/integer_spec.rb +82 -0
- data/spec/semipublic/property/lookup_spec.rb +29 -0
- data/spec/semipublic/property/serial_spec.rb +13 -0
- data/spec/semipublic/property/string_spec.rb +13 -0
- data/spec/semipublic/property/text_spec.rb +31 -0
- data/spec/semipublic/property/time_spec.rb +50 -0
- data/spec/semipublic/property_spec.rb +114 -0
- data/spec/semipublic/query/conditions/comparison_spec.rb +1501 -0
- data/spec/semipublic/query/conditions/operation_spec.rb +1294 -0
- data/spec/semipublic/query/path_spec.rb +471 -0
- data/spec/semipublic/query_spec.rb +3777 -0
- data/spec/semipublic/resource/state/clean_spec.rb +88 -0
- data/spec/semipublic/resource/state/deleted_spec.rb +78 -0
- data/spec/semipublic/resource/state/dirty_spec.rb +156 -0
- data/spec/semipublic/resource/state/immutable_spec.rb +105 -0
- data/spec/semipublic/resource/state/transient_spec.rb +162 -0
- data/spec/semipublic/resource/state_spec.rb +230 -0
- data/spec/semipublic/resource_spec.rb +23 -0
- data/spec/semipublic/shared/condition_shared_spec.rb +9 -0
- data/spec/semipublic/shared/resource_shared_spec.rb +199 -0
- data/spec/semipublic/shared/resource_state_shared_spec.rb +79 -0
- data/spec/semipublic/shared/subject_shared_spec.rb +79 -0
- data/spec/spec.opts +5 -0
- data/spec/spec_helper.rb +37 -0
- data/spec/support/core_ext/hash.rb +10 -0
- data/spec/support/core_ext/inheritable_attributes.rb +46 -0
- data/spec/support/properties/huge_integer.rb +17 -0
- data/spec/unit/array_spec.rb +23 -0
- data/spec/unit/blank_spec.rb +73 -0
- data/spec/unit/data_mapper/ordered_set/append_spec.rb +26 -0
- data/spec/unit/data_mapper/ordered_set/clear_spec.rb +24 -0
- data/spec/unit/data_mapper/ordered_set/delete_spec.rb +28 -0
- data/spec/unit/data_mapper/ordered_set/each_spec.rb +19 -0
- data/spec/unit/data_mapper/ordered_set/empty_spec.rb +20 -0
- data/spec/unit/data_mapper/ordered_set/entries_spec.rb +22 -0
- data/spec/unit/data_mapper/ordered_set/eql_spec.rb +51 -0
- data/spec/unit/data_mapper/ordered_set/equal_value_spec.rb +84 -0
- data/spec/unit/data_mapper/ordered_set/hash_spec.rb +12 -0
- data/spec/unit/data_mapper/ordered_set/include_spec.rb +23 -0
- data/spec/unit/data_mapper/ordered_set/index_spec.rb +28 -0
- data/spec/unit/data_mapper/ordered_set/initialize_spec.rb +32 -0
- data/spec/unit/data_mapper/ordered_set/merge_spec.rb +36 -0
- data/spec/unit/data_mapper/ordered_set/shared/append_spec.rb +24 -0
- data/spec/unit/data_mapper/ordered_set/shared/clear_spec.rb +9 -0
- data/spec/unit/data_mapper/ordered_set/shared/delete_spec.rb +25 -0
- data/spec/unit/data_mapper/ordered_set/shared/each_spec.rb +17 -0
- data/spec/unit/data_mapper/ordered_set/shared/empty_spec.rb +9 -0
- data/spec/unit/data_mapper/ordered_set/shared/entries_spec.rb +9 -0
- data/spec/unit/data_mapper/ordered_set/shared/include_spec.rb +9 -0
- data/spec/unit/data_mapper/ordered_set/shared/index_spec.rb +13 -0
- data/spec/unit/data_mapper/ordered_set/shared/initialize_spec.rb +28 -0
- data/spec/unit/data_mapper/ordered_set/shared/merge_spec.rb +28 -0
- data/spec/unit/data_mapper/ordered_set/shared/size_spec.rb +13 -0
- data/spec/unit/data_mapper/ordered_set/shared/to_ary_spec.rb +11 -0
- data/spec/unit/data_mapper/ordered_set/size_spec.rb +27 -0
- data/spec/unit/data_mapper/ordered_set/to_ary_spec.rb +23 -0
- data/spec/unit/data_mapper/subject_set/append_spec.rb +47 -0
- data/spec/unit/data_mapper/subject_set/clear_spec.rb +34 -0
- data/spec/unit/data_mapper/subject_set/delete_spec.rb +40 -0
- data/spec/unit/data_mapper/subject_set/each_spec.rb +30 -0
- data/spec/unit/data_mapper/subject_set/empty_spec.rb +31 -0
- data/spec/unit/data_mapper/subject_set/entries_spec.rb +31 -0
- data/spec/unit/data_mapper/subject_set/get_spec.rb +34 -0
- data/spec/unit/data_mapper/subject_set/include_spec.rb +32 -0
- data/spec/unit/data_mapper/subject_set/named_spec.rb +33 -0
- data/spec/unit/data_mapper/subject_set/shared/append_spec.rb +18 -0
- data/spec/unit/data_mapper/subject_set/shared/clear_spec.rb +9 -0
- data/spec/unit/data_mapper/subject_set/shared/delete_spec.rb +9 -0
- data/spec/unit/data_mapper/subject_set/shared/each_spec.rb +9 -0
- data/spec/unit/data_mapper/subject_set/shared/empty_spec.rb +9 -0
- data/spec/unit/data_mapper/subject_set/shared/entries_spec.rb +9 -0
- data/spec/unit/data_mapper/subject_set/shared/get_spec.rb +9 -0
- data/spec/unit/data_mapper/subject_set/shared/include_spec.rb +9 -0
- data/spec/unit/data_mapper/subject_set/shared/named_spec.rb +9 -0
- data/spec/unit/data_mapper/subject_set/shared/size_spec.rb +13 -0
- data/spec/unit/data_mapper/subject_set/shared/to_ary_spec.rb +9 -0
- data/spec/unit/data_mapper/subject_set/shared/values_at_spec.rb +44 -0
- data/spec/unit/data_mapper/subject_set/size_spec.rb +42 -0
- data/spec/unit/data_mapper/subject_set/to_ary_spec.rb +34 -0
- data/spec/unit/data_mapper/subject_set/values_at_spec.rb +57 -0
- data/spec/unit/hash_spec.rb +28 -0
- data/spec/unit/hook_spec.rb +1235 -0
- data/spec/unit/lazy_array_spec.rb +1949 -0
- data/spec/unit/mash_spec.rb +312 -0
- data/spec/unit/module_spec.rb +71 -0
- data/spec/unit/object_spec.rb +38 -0
- data/spec/unit/try_dup_spec.rb +46 -0
- data/tasks/ci.rake +1 -0
- data/tasks/db.rake +11 -0
- data/tasks/spec.rake +38 -0
- data/tasks/yard.rake +9 -0
- data/tasks/yardstick.rake +19 -0
- metadata +491 -0
@@ -0,0 +1,88 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
describe DataMapper::Resource::PersistenceState::Clean do
|
3
|
+
before :all do
|
4
|
+
class ::Author
|
5
|
+
include DataMapper::Resource
|
6
|
+
|
7
|
+
property :id, HugeInteger, :key => true, :default => 1
|
8
|
+
property :name, String
|
9
|
+
property :active, Boolean, :default => true
|
10
|
+
property :coding, Boolean, :default => true
|
11
|
+
|
12
|
+
belongs_to :parent, self, :required => false
|
13
|
+
has n, :children, self, :inverse => :parent
|
14
|
+
end
|
15
|
+
DataMapper.finalize
|
16
|
+
|
17
|
+
@model = Author
|
18
|
+
end
|
19
|
+
|
20
|
+
before do
|
21
|
+
@resource = @model.create(:name => 'Dan Kubb')
|
22
|
+
|
23
|
+
@state = @resource.persistence_state
|
24
|
+
@state.should be_kind_of(DataMapper::Resource::PersistenceState::Clean)
|
25
|
+
end
|
26
|
+
|
27
|
+
after do
|
28
|
+
@model.destroy!
|
29
|
+
end
|
30
|
+
|
31
|
+
[ :commit, :rollback ].each do |method|
|
32
|
+
describe "##{method}" do
|
33
|
+
subject { @state.send(method) }
|
34
|
+
|
35
|
+
supported_by :all do
|
36
|
+
it 'should be a no-op' do
|
37
|
+
should equal(@state)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
describe '#delete' do
|
44
|
+
subject { @state.delete }
|
45
|
+
|
46
|
+
supported_by :all do
|
47
|
+
it 'should return a Deleted state' do
|
48
|
+
should eql(DataMapper::Resource::PersistenceState::Deleted.new(@resource))
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe '#get' do
|
54
|
+
it_should_behave_like 'Resource::PersistenceState::Persisted#get'
|
55
|
+
end
|
56
|
+
|
57
|
+
describe '#set' do
|
58
|
+
subject { @state.set(@key, @value) }
|
59
|
+
|
60
|
+
supported_by :all do
|
61
|
+
describe 'with attributes that make the resource dirty' do
|
62
|
+
before do
|
63
|
+
@key = @model.properties[:name]
|
64
|
+
@value = nil
|
65
|
+
end
|
66
|
+
|
67
|
+
it_should_behave_like 'A method that delegates to the superclass #set'
|
68
|
+
|
69
|
+
it 'should return a Dirty state' do
|
70
|
+
should eql(DataMapper::Resource::PersistenceState::Dirty.new(@resource))
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
describe 'with attributes that keep the resource clean' do
|
75
|
+
before do
|
76
|
+
@key = @model.properties[:name]
|
77
|
+
@value = 'Dan Kubb'
|
78
|
+
end
|
79
|
+
|
80
|
+
it_should_behave_like 'A method that does not delegate to the superclass #set'
|
81
|
+
|
82
|
+
it 'should return a Clean state' do
|
83
|
+
should equal(@state)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
@@ -0,0 +1,78 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
describe DataMapper::Resource::PersistenceState::Deleted do
|
3
|
+
before :all do
|
4
|
+
class ::Author
|
5
|
+
include DataMapper::Resource
|
6
|
+
|
7
|
+
property :id, HugeInteger, :key => true, :default => 1
|
8
|
+
property :name, String
|
9
|
+
property :active, Boolean, :default => true
|
10
|
+
property :coding, Boolean, :default => true
|
11
|
+
|
12
|
+
belongs_to :parent, self, :required => false
|
13
|
+
has n, :children, self, :inverse => :parent
|
14
|
+
end
|
15
|
+
|
16
|
+
DataMapper.finalize
|
17
|
+
@model = Author
|
18
|
+
end
|
19
|
+
|
20
|
+
before do
|
21
|
+
@resource = @model.create(:name => 'Dan Kubb')
|
22
|
+
|
23
|
+
@state = DataMapper::Resource::PersistenceState::Deleted.new(@resource)
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
@model.destroy!
|
28
|
+
end
|
29
|
+
|
30
|
+
describe '#commit' do
|
31
|
+
subject { @state.commit }
|
32
|
+
|
33
|
+
supported_by :all do
|
34
|
+
it 'should return an Immutable state' do
|
35
|
+
should eql(DataMapper::Resource::PersistenceState::Immutable.new(@resource))
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'should delete the resource' do
|
39
|
+
subject
|
40
|
+
@model.get(*@resource.key).should be_nil
|
41
|
+
end
|
42
|
+
|
43
|
+
it 'should remove the resource from the identity map' do
|
44
|
+
identity_map = @resource.repository.identity_map(@model)
|
45
|
+
method(:subject).should change { identity_map.dup }.from(@resource.key => @resource).to({})
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe '#delete' do
|
51
|
+
subject { @state.delete }
|
52
|
+
|
53
|
+
supported_by :all do
|
54
|
+
it 'should be a no-op' do
|
55
|
+
should equal(@state)
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe '#get' do
|
61
|
+
it_should_behave_like 'Resource::PersistenceState::Persisted#get'
|
62
|
+
end
|
63
|
+
|
64
|
+
describe '#set' do
|
65
|
+
subject { @state.set(@key, @value) }
|
66
|
+
|
67
|
+
supported_by :all do
|
68
|
+
before do
|
69
|
+
@key = @model.properties[:name]
|
70
|
+
@value = @key.get!(@resource)
|
71
|
+
end
|
72
|
+
|
73
|
+
it 'should raise an exception' do
|
74
|
+
method(:subject).should raise_error(DataMapper::ImmutableDeletedError, 'Deleted resource cannot be modified')
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
@@ -0,0 +1,156 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
describe DataMapper::Resource::PersistenceState::Dirty do
|
3
|
+
before :all do
|
4
|
+
class ::Author
|
5
|
+
include DataMapper::Resource
|
6
|
+
|
7
|
+
property :id, HugeInteger, :key => true, :default => 1
|
8
|
+
property :name, String
|
9
|
+
property :active, Boolean, :default => true
|
10
|
+
property :coding, Boolean, :default => true
|
11
|
+
|
12
|
+
belongs_to :parent, self, :required => false
|
13
|
+
has n, :children, self, :inverse => :parent
|
14
|
+
end
|
15
|
+
|
16
|
+
DataMapper.finalize
|
17
|
+
|
18
|
+
@model = Author
|
19
|
+
end
|
20
|
+
|
21
|
+
before do
|
22
|
+
@parent = @model.create(:name => 'Jane Doe')
|
23
|
+
|
24
|
+
@resource = @model.create(:id => 2, :name => 'Dan Kubb', :parent => @parent)
|
25
|
+
@resource.attributes = { :name => 'John Doe' }
|
26
|
+
|
27
|
+
@state = @resource.persistence_state
|
28
|
+
@state.should be_kind_of(DataMapper::Resource::PersistenceState::Dirty)
|
29
|
+
end
|
30
|
+
|
31
|
+
after do
|
32
|
+
@model.destroy!
|
33
|
+
end
|
34
|
+
|
35
|
+
describe '#commit' do
|
36
|
+
subject { @state.commit }
|
37
|
+
|
38
|
+
supported_by :all do
|
39
|
+
context 'with valid attributes' do
|
40
|
+
let(:state) { @state }
|
41
|
+
|
42
|
+
before do
|
43
|
+
@new_id = @resource.id = @resource.id.succ
|
44
|
+
end
|
45
|
+
|
46
|
+
it 'should return a Clean state' do
|
47
|
+
should eql(DataMapper::Resource::PersistenceState::Clean.new(@resource))
|
48
|
+
end
|
49
|
+
|
50
|
+
it 'should set the child key if the parent key changes' do
|
51
|
+
original_id = @parent.id
|
52
|
+
@parent.update(:id => 42).should be(true)
|
53
|
+
method(:subject).should change(@resource, :parent_id).from(original_id).to(42)
|
54
|
+
end
|
55
|
+
|
56
|
+
it 'should update the resource' do
|
57
|
+
subject
|
58
|
+
@model.get!(*@resource.key).should == @resource
|
59
|
+
end
|
60
|
+
|
61
|
+
it 'should update the resource to the identity map if the key changed' do
|
62
|
+
identity_map = @resource.repository.identity_map(@model)
|
63
|
+
identity_map.should == { @resource.key => @resource }
|
64
|
+
subject
|
65
|
+
identity_map.should == { [ @new_id ] => @resource }
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
context 'with invalid attributes' do
|
70
|
+
before do
|
71
|
+
@resource.coding = 'yes'
|
72
|
+
end
|
73
|
+
|
74
|
+
it { should equal(@state) }
|
75
|
+
|
76
|
+
it 'should update the resource to the identity map if the key changed' do
|
77
|
+
method(:subject).should_not change { @resource.repository.identity_map(@model).dup }
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
82
|
+
|
83
|
+
describe '#delete' do
|
84
|
+
subject { @state.delete }
|
85
|
+
|
86
|
+
supported_by :all do
|
87
|
+
before do
|
88
|
+
@resource.children = [ @resource.parent = @resource ]
|
89
|
+
end
|
90
|
+
|
91
|
+
it_should_behave_like 'It resets resource state'
|
92
|
+
|
93
|
+
it 'should return a Deleted state' do
|
94
|
+
should eql(DataMapper::Resource::PersistenceState::Deleted.new(@resource))
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
describe '#get' do
|
100
|
+
before do
|
101
|
+
@loaded_value = 'John Doe'
|
102
|
+
end
|
103
|
+
|
104
|
+
it_should_behave_like 'Resource::PersistenceState::Persisted#get'
|
105
|
+
end
|
106
|
+
|
107
|
+
describe '#rollback' do
|
108
|
+
subject { @state.rollback }
|
109
|
+
|
110
|
+
supported_by :all do
|
111
|
+
before do
|
112
|
+
@resource.children = [ @resource.parent = @resource ]
|
113
|
+
end
|
114
|
+
|
115
|
+
it_should_behave_like 'It resets resource state'
|
116
|
+
|
117
|
+
it 'should return a Clean state' do
|
118
|
+
should eql(DataMapper::Resource::PersistenceState::Clean.new(@resource))
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
describe '#set' do
|
124
|
+
subject { @state.set(@key, @value) }
|
125
|
+
|
126
|
+
supported_by :all do
|
127
|
+
describe 'with attributes that keep the resource dirty' do
|
128
|
+
before do
|
129
|
+
@key = @model.properties[:id]
|
130
|
+
@value = @key.get!(@resource)
|
131
|
+
end
|
132
|
+
|
133
|
+
it_should_behave_like 'A method that delegates to the superclass #set'
|
134
|
+
|
135
|
+
it 'should return a Dirty state' do
|
136
|
+
should equal(@state)
|
137
|
+
end
|
138
|
+
|
139
|
+
its(:original_attributes) { should == { @model.properties[:name] => 'Dan Kubb' } }
|
140
|
+
end
|
141
|
+
|
142
|
+
describe 'with attributes that make the resource clean' do
|
143
|
+
before do
|
144
|
+
@key = @model.properties[:name]
|
145
|
+
@value = 'Dan Kubb'
|
146
|
+
end
|
147
|
+
|
148
|
+
it_should_behave_like 'A method that delegates to the superclass #set'
|
149
|
+
|
150
|
+
it 'should return a Clean state' do
|
151
|
+
should eql(DataMapper::Resource::PersistenceState::Clean.new(@resource))
|
152
|
+
end
|
153
|
+
end
|
154
|
+
end
|
155
|
+
end
|
156
|
+
end
|
@@ -0,0 +1,105 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
describe DataMapper::Resource::PersistenceState::Immutable do
|
3
|
+
before :all do
|
4
|
+
class ::Author
|
5
|
+
include DataMapper::Resource
|
6
|
+
|
7
|
+
property :id, Serial
|
8
|
+
property :name, String
|
9
|
+
property :active, Boolean, :default => true
|
10
|
+
property :coding, Boolean, :default => true
|
11
|
+
|
12
|
+
belongs_to :parent, self, :required => false
|
13
|
+
end
|
14
|
+
|
15
|
+
DataMapper.finalize
|
16
|
+
|
17
|
+
@model = Author
|
18
|
+
end
|
19
|
+
|
20
|
+
before do
|
21
|
+
@parent = @model.create(:name => 'John Doe')
|
22
|
+
|
23
|
+
@resource = @model.create(:name => 'Dan Kubb', :parent => @parent)
|
24
|
+
attributes = Hash[ @model.key.zip(@resource.key) ]
|
25
|
+
@resource = @model.first(attributes.merge(:fields => [ :name, :parent_id ]))
|
26
|
+
|
27
|
+
@state = @resource.persistence_state
|
28
|
+
@state.should be_kind_of(DataMapper::Resource::PersistenceState::Immutable)
|
29
|
+
end
|
30
|
+
|
31
|
+
after do
|
32
|
+
@model.destroy!
|
33
|
+
end
|
34
|
+
|
35
|
+
describe '#commit' do
|
36
|
+
subject { @state.commit }
|
37
|
+
|
38
|
+
supported_by :all do
|
39
|
+
it 'should be a no-op' do
|
40
|
+
should equal(@state)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe '#delete' do
|
46
|
+
subject { @state.delete }
|
47
|
+
|
48
|
+
supported_by :all do
|
49
|
+
it 'should raise an exception' do
|
50
|
+
method(:subject).should raise_error(DataMapper::ImmutableError, 'Immutable resource cannot be deleted')
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe '#get' do
|
56
|
+
subject { @state.get(@key) }
|
57
|
+
|
58
|
+
supported_by :all do
|
59
|
+
describe 'with an unloaded property' do
|
60
|
+
before do
|
61
|
+
@key = @model.properties[:id]
|
62
|
+
end
|
63
|
+
|
64
|
+
it 'should raise an exception' do
|
65
|
+
method(:subject).should raise_error(DataMapper::ImmutableError, 'Immutable resource cannot be lazy loaded')
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe 'with an unloaded relationship' do
|
70
|
+
before do
|
71
|
+
@key = @model.relationships[:parent]
|
72
|
+
end
|
73
|
+
|
74
|
+
it 'should return value' do
|
75
|
+
should == @parent
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
describe 'with a loaded subject' do
|
80
|
+
before do
|
81
|
+
@key = @model.properties[:name]
|
82
|
+
end
|
83
|
+
|
84
|
+
it 'should return value' do
|
85
|
+
should == 'Dan Kubb'
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
describe '#set' do
|
92
|
+
before do
|
93
|
+
@key = @model.properties[:name]
|
94
|
+
@value = @key.get!(@resource)
|
95
|
+
end
|
96
|
+
|
97
|
+
subject { @state.set(@key, @value) }
|
98
|
+
|
99
|
+
supported_by :all do
|
100
|
+
it 'should raise an exception' do
|
101
|
+
method(:subject).should raise_error(DataMapper::ImmutableError, 'Immutable resource cannot be modified')
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
@@ -0,0 +1,162 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
describe DataMapper::Resource::PersistenceState::Transient do
|
3
|
+
before :all do
|
4
|
+
class ::Author
|
5
|
+
include DataMapper::Resource
|
6
|
+
|
7
|
+
property :id, Serial
|
8
|
+
property :name, String
|
9
|
+
property :age, Integer
|
10
|
+
property :description, Text, :default => lambda { |resource, property| resource.name }
|
11
|
+
property :active, Boolean, :default => true
|
12
|
+
property :coding, Boolean, :default => true
|
13
|
+
|
14
|
+
belongs_to :parent, self, :required => false
|
15
|
+
has n, :children, self, :inverse => :parent
|
16
|
+
|
17
|
+
belongs_to :with_default, self, :required => false, :default => proc { first(:name => 'John Doe') }
|
18
|
+
end
|
19
|
+
|
20
|
+
DataMapper.finalize
|
21
|
+
|
22
|
+
@model = Author
|
23
|
+
end
|
24
|
+
|
25
|
+
before do
|
26
|
+
@parent = @model.create(:name => 'John Doe')
|
27
|
+
@resource = @model.new(:name => 'Dan Kubb', :coding => false, :parent => @parent)
|
28
|
+
|
29
|
+
@state = @resource.persistence_state
|
30
|
+
@state.should be_kind_of(DataMapper::Resource::PersistenceState::Transient)
|
31
|
+
end
|
32
|
+
|
33
|
+
after do
|
34
|
+
@model.destroy!
|
35
|
+
end
|
36
|
+
|
37
|
+
describe '#commit' do
|
38
|
+
subject { @state.commit }
|
39
|
+
|
40
|
+
supported_by :all do
|
41
|
+
it 'should return the expected Clean state' do
|
42
|
+
should eql(DataMapper::Resource::PersistenceState::Clean.new(@resource))
|
43
|
+
end
|
44
|
+
|
45
|
+
it 'should set the serial property' do
|
46
|
+
method(:subject).should change(@resource, :id).from(nil)
|
47
|
+
end
|
48
|
+
|
49
|
+
it 'should set the child key if the parent key changes' do
|
50
|
+
# SqlServer does not allow updating IDENTITY columns.
|
51
|
+
if defined?(DataMapper::Adapters::SqlserverAdapter) &&
|
52
|
+
@adapter.kind_of?(DataMapper::Adapters::SqlserverAdapter)
|
53
|
+
return
|
54
|
+
end
|
55
|
+
|
56
|
+
original_id = @parent.id
|
57
|
+
@parent.update(:id => 42).should be(true)
|
58
|
+
method(:subject).should change(@resource, :parent_id).from(original_id).to(42)
|
59
|
+
end
|
60
|
+
|
61
|
+
it 'should set default values' do
|
62
|
+
method(:subject).should change { @model.relationships[:with_default].get!(@resource) }.from(nil).to(@parent)
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'should not set default values when they are already set' do
|
66
|
+
method(:subject).should_not change(@resource, :coding)
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'should create the resource' do
|
70
|
+
subject
|
71
|
+
@model.get(*@resource.key).should == @resource
|
72
|
+
end
|
73
|
+
|
74
|
+
it 'should reset original attributes' do
|
75
|
+
original_attributes = {
|
76
|
+
@model.properties[:name] => nil,
|
77
|
+
@model.properties[:coding] => nil,
|
78
|
+
@model.properties[:parent_id] => nil,
|
79
|
+
@model.relationships[:parent] => nil,
|
80
|
+
}
|
81
|
+
|
82
|
+
expect do
|
83
|
+
@resource.persistence_state = subject
|
84
|
+
end.should change { @resource.original_attributes.dup }.from(original_attributes).to({})
|
85
|
+
end
|
86
|
+
|
87
|
+
it 'should add the resource to the identity map' do
|
88
|
+
DataMapper.repository do |repository|
|
89
|
+
identity_map = repository.identity_map(@model)
|
90
|
+
identity_map.should be_empty
|
91
|
+
subject
|
92
|
+
identity_map.should == { @parent.key => @parent, @resource.key => @resource }
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
[ :delete, :rollback ].each do |method|
|
99
|
+
describe "##{method}" do
|
100
|
+
subject { @state.send(method) }
|
101
|
+
|
102
|
+
supported_by :all do
|
103
|
+
it 'should be a no-op' do
|
104
|
+
should equal(@state)
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
describe '#get' do
|
111
|
+
subject { @state.get(@key) }
|
112
|
+
|
113
|
+
supported_by :all do
|
114
|
+
describe 'with a set value' do
|
115
|
+
before do
|
116
|
+
@key = @model.properties[:coding]
|
117
|
+
@key.should be_loaded(@resource)
|
118
|
+
end
|
119
|
+
|
120
|
+
it 'should return value' do
|
121
|
+
should be(false)
|
122
|
+
end
|
123
|
+
|
124
|
+
it 'should be idempotent' do
|
125
|
+
should equal(subject)
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
describe 'with an unset value and no default value' do
|
130
|
+
before do
|
131
|
+
@key = @model.properties[:age]
|
132
|
+
@key.should_not be_loaded(@resource)
|
133
|
+
@key.should_not be_default
|
134
|
+
end
|
135
|
+
|
136
|
+
it 'should return nil' do
|
137
|
+
should be_nil
|
138
|
+
end
|
139
|
+
|
140
|
+
it 'should be idempotent' do
|
141
|
+
should equal(subject)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
describe 'with an unset value and a default value' do
|
146
|
+
before do
|
147
|
+
@key = @model.properties[:description]
|
148
|
+
@key.should_not be_loaded(@resource)
|
149
|
+
@key.should be_default
|
150
|
+
end
|
151
|
+
|
152
|
+
it 'should return the name' do
|
153
|
+
should == 'Dan Kubb'
|
154
|
+
end
|
155
|
+
|
156
|
+
it 'should be idempotent' do
|
157
|
+
should equal(subject)
|
158
|
+
end
|
159
|
+
end
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|