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,230 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe DataMapper::Resource::PersistenceState do
|
4
|
+
before :all do
|
5
|
+
class ::Author
|
6
|
+
include DataMapper::Resource
|
7
|
+
|
8
|
+
property :id, Serial
|
9
|
+
property :name, String
|
10
|
+
property :private, Boolean, :accessor => :private
|
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
|
+
@resource = @model.new(:name => 'Dan Kubb')
|
22
|
+
|
23
|
+
@state = DataMapper::Resource::PersistenceState.new(@resource)
|
24
|
+
end
|
25
|
+
|
26
|
+
describe '.new' do
|
27
|
+
subject { DataMapper::Resource::PersistenceState.new(@resource) }
|
28
|
+
|
29
|
+
it { should be_kind_of(DataMapper::Resource::PersistenceState) }
|
30
|
+
end
|
31
|
+
|
32
|
+
describe '#==' do
|
33
|
+
subject { @state == @other }
|
34
|
+
|
35
|
+
supported_by :all do
|
36
|
+
describe 'with the same class and resource' do
|
37
|
+
before do
|
38
|
+
@other = DataMapper::Resource::PersistenceState.new(@resource)
|
39
|
+
end
|
40
|
+
|
41
|
+
it { should be(true) }
|
42
|
+
|
43
|
+
it 'should be symmetric' do
|
44
|
+
should == (@other == @state)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
describe 'with the same class and different resource' do
|
49
|
+
before do
|
50
|
+
@other = DataMapper::Resource::PersistenceState.new(@model.new)
|
51
|
+
end
|
52
|
+
|
53
|
+
it { should be(false) }
|
54
|
+
|
55
|
+
it 'should be symmetric' do
|
56
|
+
should == (@other == @state)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe 'with a different class and the same resource' do
|
61
|
+
before do
|
62
|
+
@other = DataMapper::Resource::PersistenceState::Clean.new(@resource)
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'should be true for a subclass' do
|
66
|
+
should be(true)
|
67
|
+
end
|
68
|
+
|
69
|
+
it 'should be symmetric' do
|
70
|
+
should == (@other == @state)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
describe 'with a different class and different resource' do
|
75
|
+
before do
|
76
|
+
@other = DataMapper::Resource::PersistenceState::Clean.new(@model.new)
|
77
|
+
end
|
78
|
+
|
79
|
+
it { should be(false) }
|
80
|
+
|
81
|
+
it 'should be symmetric' do
|
82
|
+
should == (@other == @state)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
[ :commit, :delete, :rollback ].each do |method|
|
89
|
+
describe "##{method}" do
|
90
|
+
subject { @state.send(method) }
|
91
|
+
|
92
|
+
it 'should raise an exception' do
|
93
|
+
method(:subject).should raise_error(NotImplementedError, "DataMapper::Resource::PersistenceState##{method} should be implemented")
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
describe '#eql?' do
|
99
|
+
subject { @state.eql?(@other) }
|
100
|
+
|
101
|
+
supported_by :all do
|
102
|
+
describe 'with the same class and resource' do
|
103
|
+
before do
|
104
|
+
@other = DataMapper::Resource::PersistenceState.new(@resource)
|
105
|
+
end
|
106
|
+
|
107
|
+
it { should be(true) }
|
108
|
+
|
109
|
+
it 'should be symmetric' do
|
110
|
+
should == @other.eql?(@state)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
describe 'with the same class and different resource' do
|
115
|
+
before do
|
116
|
+
@other = DataMapper::Resource::PersistenceState.new(@model.new)
|
117
|
+
end
|
118
|
+
|
119
|
+
it { should be(false) }
|
120
|
+
|
121
|
+
it 'should be symmetric' do
|
122
|
+
should == @other.eql?(@state)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
describe 'with a different class and the same resource' do
|
127
|
+
before do
|
128
|
+
@other = DataMapper::Resource::PersistenceState::Clean.new(@resource)
|
129
|
+
end
|
130
|
+
|
131
|
+
it { should be(false) }
|
132
|
+
|
133
|
+
it 'should be symmetric' do
|
134
|
+
should == @other.eql?(@state)
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
describe 'with a different class and different resource' do
|
139
|
+
before do
|
140
|
+
@other = DataMapper::Resource::PersistenceState::Clean.new(@model.new)
|
141
|
+
end
|
142
|
+
|
143
|
+
it { should be(false) }
|
144
|
+
|
145
|
+
it 'should be symmetric' do
|
146
|
+
should == @other.eql?(@state)
|
147
|
+
end
|
148
|
+
end
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
describe '#get' do
|
153
|
+
subject { @state.get(@key) }
|
154
|
+
|
155
|
+
describe 'with a Property subject' do
|
156
|
+
before do
|
157
|
+
@key = @model.properties[:name]
|
158
|
+
end
|
159
|
+
|
160
|
+
it 'should return the value' do
|
161
|
+
should == 'Dan Kubb'
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
describe 'with a Relationship subject' do
|
166
|
+
supported_by :all do
|
167
|
+
before do
|
168
|
+
# set the association
|
169
|
+
@resource.parent = @resource
|
170
|
+
|
171
|
+
@key = @model.relationships[:parent]
|
172
|
+
end
|
173
|
+
|
174
|
+
it 'should return the association' do
|
175
|
+
should == @resource
|
176
|
+
end
|
177
|
+
end
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
describe '#hash' do
|
182
|
+
subject { @state.hash }
|
183
|
+
|
184
|
+
it { should == @state.class.hash ^ @resource.hash }
|
185
|
+
end
|
186
|
+
|
187
|
+
describe '#resource' do
|
188
|
+
subject { @state.resource }
|
189
|
+
|
190
|
+
it 'should return the resource' do
|
191
|
+
should equal(@resource)
|
192
|
+
end
|
193
|
+
end
|
194
|
+
|
195
|
+
describe '#set' do
|
196
|
+
subject { @state.set(@key, @value) }
|
197
|
+
|
198
|
+
describe 'with a Property subject' do
|
199
|
+
before do
|
200
|
+
@key = @model.properties[:name]
|
201
|
+
@value = 'John Doe'
|
202
|
+
end
|
203
|
+
|
204
|
+
it 'should return a state object' do
|
205
|
+
should be_kind_of(DataMapper::Resource::PersistenceState)
|
206
|
+
end
|
207
|
+
|
208
|
+
it 'should change the object attributes' do
|
209
|
+
method(:subject).should change(@resource, :attributes).from(:name => 'Dan Kubb').to(:name => 'John Doe')
|
210
|
+
end
|
211
|
+
end
|
212
|
+
|
213
|
+
describe 'with a Relationship subject' do
|
214
|
+
supported_by :all do
|
215
|
+
before do
|
216
|
+
@key = @model.relationships[:parent]
|
217
|
+
@value = @resource
|
218
|
+
end
|
219
|
+
|
220
|
+
it 'should return a state object' do
|
221
|
+
should be_kind_of(DataMapper::Resource::PersistenceState)
|
222
|
+
end
|
223
|
+
|
224
|
+
it 'should change the object relationship' do
|
225
|
+
method(:subject).should change(@resource, :parent).from(nil).to(@resource)
|
226
|
+
end
|
227
|
+
end
|
228
|
+
end
|
229
|
+
end
|
230
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe DataMapper::Resource do
|
4
|
+
before :all do
|
5
|
+
class ::User
|
6
|
+
include DataMapper::Resource
|
7
|
+
|
8
|
+
property :name, String, :key => true
|
9
|
+
property :age, Integer
|
10
|
+
property :description, Text
|
11
|
+
end
|
12
|
+
|
13
|
+
@user_model = User
|
14
|
+
end
|
15
|
+
|
16
|
+
supported_by :all do
|
17
|
+
before :all do
|
18
|
+
@user = @user_model.create(:name => 'dbussink', :age => 25, :description => "Test")
|
19
|
+
end
|
20
|
+
|
21
|
+
it_should_behave_like 'A semipublic Resource'
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,199 @@
|
|
1
|
+
share_examples_for 'A semipublic Resource' do
|
2
|
+
before :all do
|
3
|
+
%w[ @user_model @user ].each do |ivar|
|
4
|
+
raise "+#{ivar}+ should be defined in before block" unless instance_variable_get(ivar)
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
it { @user.should respond_to(:attribute_dirty?) }
|
9
|
+
|
10
|
+
describe '#attribute_dirty?' do
|
11
|
+
describe 'on a non-dirty record' do
|
12
|
+
it { @user.attribute_dirty?(:age).should be(false) }
|
13
|
+
end
|
14
|
+
|
15
|
+
describe 'on a dirty record' do
|
16
|
+
before { @user.age = 100 }
|
17
|
+
|
18
|
+
it { @user.attribute_dirty?(:age).should be(true) }
|
19
|
+
end
|
20
|
+
|
21
|
+
describe 'on a new record' do
|
22
|
+
before { @user = @user_model.new }
|
23
|
+
|
24
|
+
it { @user.attribute_dirty?(:age).should be(false) }
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
it { @user.should respond_to(:dirty_attributes) }
|
29
|
+
|
30
|
+
describe '#dirty_attributes' do
|
31
|
+
describe 'on a saved/clean record' do
|
32
|
+
it { @user.dirty_attributes.should be_empty }
|
33
|
+
end
|
34
|
+
|
35
|
+
describe 'on a saved/dirty record' do
|
36
|
+
before { @user.age = 100 }
|
37
|
+
|
38
|
+
it { @user.dirty_attributes.should == { @user_model.properties[:age] => 100 } }
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'on an saved/set/unset record' do
|
42
|
+
before do
|
43
|
+
@user.age = 100
|
44
|
+
@user.age = 25
|
45
|
+
end
|
46
|
+
|
47
|
+
it { @user.dirty_attributes.should be_empty }
|
48
|
+
end
|
49
|
+
|
50
|
+
describe 'on an saved/unchanged record' do
|
51
|
+
before do
|
52
|
+
@user.age = 25
|
53
|
+
end
|
54
|
+
|
55
|
+
it { @user.dirty_attributes.should be_empty }
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'on a new/clean record' do
|
59
|
+
before { @user = @user_model.new }
|
60
|
+
|
61
|
+
it { @user.dirty_attributes.should be_empty }
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'on a new/dirty record' do
|
65
|
+
before { @user = @user_model.new(:age => 100) }
|
66
|
+
|
67
|
+
it { @user.original_attributes.should == { @user_model.properties[:age] => nil } }
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'on an new/set/unset record' do
|
71
|
+
before do
|
72
|
+
@user = @user_model.new(:age => 100)
|
73
|
+
@user.age = nil
|
74
|
+
end
|
75
|
+
|
76
|
+
it { @user.dirty_attributes.should == { @user_model.properties[:age] => nil } }
|
77
|
+
end
|
78
|
+
|
79
|
+
describe 'on an new/unchanged record' do
|
80
|
+
before do
|
81
|
+
@user = @user_model.new(:age => nil)
|
82
|
+
end
|
83
|
+
|
84
|
+
it { @user.dirty_attributes.should == { @user_model.properties[:age] => nil } }
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
it { @user.should respond_to(:original_attributes) }
|
89
|
+
|
90
|
+
describe '#original_attributes' do
|
91
|
+
describe 'on a saved/clean record' do
|
92
|
+
it { @user.original_attributes.should be_empty }
|
93
|
+
end
|
94
|
+
|
95
|
+
describe 'on a saved/dirty record' do
|
96
|
+
before { @user.age = 100 }
|
97
|
+
|
98
|
+
it { @user.original_attributes.should == { @user_model.properties[:age] => 25 } }
|
99
|
+
end
|
100
|
+
|
101
|
+
describe 'on an saved/set/unset record' do
|
102
|
+
before do
|
103
|
+
@user.age = 100
|
104
|
+
@user.age = 25
|
105
|
+
end
|
106
|
+
|
107
|
+
it { @user.original_attributes.should be_empty }
|
108
|
+
end
|
109
|
+
|
110
|
+
describe 'on an saved/unchanged record' do
|
111
|
+
before do
|
112
|
+
@user.age = 25
|
113
|
+
end
|
114
|
+
|
115
|
+
it { @user.original_attributes.should be_empty }
|
116
|
+
end
|
117
|
+
|
118
|
+
describe 'on a new/clean record' do
|
119
|
+
before { @user = @user_model.new }
|
120
|
+
|
121
|
+
it { @user.original_attributes.should be_empty }
|
122
|
+
end
|
123
|
+
|
124
|
+
describe 'on a new/dirty record' do
|
125
|
+
before { @user = @user_model.new(:age => 100) }
|
126
|
+
|
127
|
+
it { @user.original_attributes.should == { @user_model.properties[:age] => nil } }
|
128
|
+
end
|
129
|
+
|
130
|
+
describe 'on an new/set/unset record' do
|
131
|
+
before do
|
132
|
+
@user = @user_model.new(:age => 100)
|
133
|
+
@user.age = nil
|
134
|
+
end
|
135
|
+
|
136
|
+
it { @user.original_attributes.should == { @user_model.properties[:age] => nil } }
|
137
|
+
end
|
138
|
+
|
139
|
+
describe 'on an new/unchanged record' do
|
140
|
+
before do
|
141
|
+
@user = @user_model.new(:age => nil)
|
142
|
+
end
|
143
|
+
|
144
|
+
it { @user.original_attributes.should == { @user_model.properties[:age] => nil } }
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
it { @user.should respond_to(:repository) }
|
149
|
+
|
150
|
+
describe '#repository' do
|
151
|
+
before :all do
|
152
|
+
class ::Statistic
|
153
|
+
include DataMapper::Resource
|
154
|
+
|
155
|
+
def self.default_repository_name
|
156
|
+
:alternate
|
157
|
+
end
|
158
|
+
|
159
|
+
property :id, Serial
|
160
|
+
property :name, String
|
161
|
+
property :value, Integer
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
with_alternate_adapter do
|
166
|
+
before :all do
|
167
|
+
if @user_model.respond_to?(:auto_migrate!)
|
168
|
+
# force the user model to be available in the alternate repository
|
169
|
+
@user_model.auto_migrate!(@adapter.name)
|
170
|
+
end
|
171
|
+
end
|
172
|
+
|
173
|
+
it 'should return the default repository when nothing is specified' do
|
174
|
+
default_repository = DataMapper.repository(:default)
|
175
|
+
@user_model.create(:name => 'carl').repository.should == default_repository
|
176
|
+
@user_model.new.repository.should == default_repository
|
177
|
+
@user_model.get('carl').repository.should == default_repository
|
178
|
+
end
|
179
|
+
|
180
|
+
it 'should return the default repository for the model' do
|
181
|
+
statistic = Statistic.create(:name => 'visits', :value => 2)
|
182
|
+
statistic.repository.should == @repository
|
183
|
+
Statistic.new.repository.should == @repository
|
184
|
+
Statistic.get(statistic.id).repository.should == @repository
|
185
|
+
end
|
186
|
+
|
187
|
+
it 'should return the repository defined by the current context' do
|
188
|
+
@repository.scope do
|
189
|
+
@user_model.new.repository.should == @repository
|
190
|
+
@user_model.create(:name => 'carl').repository.should == @repository
|
191
|
+
@user_model.get('carl').repository.should == @repository
|
192
|
+
end
|
193
|
+
|
194
|
+
@repository.scope { @user_model.get('carl') }.repository.should == @repository
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
end
|
199
|
+
end
|