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,284 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe DataMapper::Resource do
|
4
|
+
before :all do
|
5
|
+
module ::Blog
|
6
|
+
class User
|
7
|
+
include DataMapper::Resource
|
8
|
+
|
9
|
+
property :name, String, :key => true
|
10
|
+
property :age, Integer
|
11
|
+
property :summary, Text
|
12
|
+
property :description, Text
|
13
|
+
property :admin, Boolean, :accessor => :private
|
14
|
+
|
15
|
+
belongs_to :parent, self, :required => false
|
16
|
+
has n, :children, self, :inverse => :parent
|
17
|
+
|
18
|
+
belongs_to :referrer, self, :required => false
|
19
|
+
has n, :comments
|
20
|
+
|
21
|
+
# FIXME: figure out a different approach than stubbing things out
|
22
|
+
def comment=(*)
|
23
|
+
# do nothing with comment
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
class Author < User; end
|
28
|
+
|
29
|
+
class Comment
|
30
|
+
include DataMapper::Resource
|
31
|
+
|
32
|
+
property :id, Serial
|
33
|
+
property :body, Text
|
34
|
+
|
35
|
+
belongs_to :user
|
36
|
+
end
|
37
|
+
|
38
|
+
class Article
|
39
|
+
include DataMapper::Resource
|
40
|
+
|
41
|
+
property :id, Serial
|
42
|
+
property :body, Text
|
43
|
+
|
44
|
+
has n, :paragraphs
|
45
|
+
end
|
46
|
+
|
47
|
+
class Paragraph
|
48
|
+
include DataMapper::Resource
|
49
|
+
|
50
|
+
property :id, Serial
|
51
|
+
property :text, String
|
52
|
+
|
53
|
+
belongs_to :article
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
class ::Default
|
58
|
+
include DataMapper::Resource
|
59
|
+
|
60
|
+
property :name, String, :key => true, :default => 'a default value'
|
61
|
+
end
|
62
|
+
DataMapper.finalize
|
63
|
+
|
64
|
+
@user_model = Blog::User
|
65
|
+
@author_model = Blog::Author
|
66
|
+
@comment_model = Blog::Comment
|
67
|
+
@article_model = Blog::Article
|
68
|
+
@paragraph_model = Blog::Paragraph
|
69
|
+
end
|
70
|
+
|
71
|
+
supported_by :all do
|
72
|
+
before :all do
|
73
|
+
user = @user_model.create(:name => 'dbussink', :age => 25, :description => 'Test')
|
74
|
+
|
75
|
+
@user = @user_model.get(*user.key)
|
76
|
+
end
|
77
|
+
|
78
|
+
it_should_behave_like 'A public Resource'
|
79
|
+
it_should_behave_like 'A Resource supporting Strategic Eager Loading'
|
80
|
+
|
81
|
+
it 'A resource should respond to raise_on_save_failure' do
|
82
|
+
@user.should respond_to(:raise_on_save_failure)
|
83
|
+
end
|
84
|
+
|
85
|
+
describe '#raise_on_save_failure' do
|
86
|
+
after do
|
87
|
+
# reset to the default value
|
88
|
+
reset_raise_on_save_failure(@user_model)
|
89
|
+
reset_raise_on_save_failure(@user)
|
90
|
+
end
|
91
|
+
|
92
|
+
subject { @user.raise_on_save_failure }
|
93
|
+
|
94
|
+
describe 'when model.raise_on_save_failure has not been set' do
|
95
|
+
it { should be(false) }
|
96
|
+
end
|
97
|
+
|
98
|
+
describe 'when model.raise_on_save_failure has been set to true' do
|
99
|
+
before do
|
100
|
+
@user_model.raise_on_save_failure = true
|
101
|
+
end
|
102
|
+
|
103
|
+
it { should be(true) }
|
104
|
+
end
|
105
|
+
|
106
|
+
describe 'when resource.raise_on_save_failure has been set to true' do
|
107
|
+
before do
|
108
|
+
@user.raise_on_save_failure = true
|
109
|
+
end
|
110
|
+
|
111
|
+
it { should be(true) }
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
it 'A model should respond to raise_on_save_failure=' do
|
116
|
+
@user_model.should respond_to(:raise_on_save_failure=)
|
117
|
+
end
|
118
|
+
|
119
|
+
describe '#raise_on_save_failure=' do
|
120
|
+
after do
|
121
|
+
# reset to the default value
|
122
|
+
@user_model.raise_on_save_failure = false
|
123
|
+
end
|
124
|
+
|
125
|
+
subject { @user_model.raise_on_save_failure = @value }
|
126
|
+
|
127
|
+
describe 'with a true value' do
|
128
|
+
before do
|
129
|
+
@value = true
|
130
|
+
end
|
131
|
+
|
132
|
+
it { should be(true) }
|
133
|
+
|
134
|
+
it 'should set raise_on_save_failure' do
|
135
|
+
method(:subject).should change {
|
136
|
+
@user_model.raise_on_save_failure
|
137
|
+
}.from(false).to(true)
|
138
|
+
end
|
139
|
+
end
|
140
|
+
|
141
|
+
describe 'with a false value' do
|
142
|
+
before do
|
143
|
+
@value = false
|
144
|
+
end
|
145
|
+
|
146
|
+
it { should be(false) }
|
147
|
+
|
148
|
+
it 'should set raise_on_save_failure' do
|
149
|
+
method(:subject).should_not change {
|
150
|
+
@user_model.raise_on_save_failure
|
151
|
+
}
|
152
|
+
end
|
153
|
+
end
|
154
|
+
end
|
155
|
+
|
156
|
+
[ :save, :save! ].each do |method|
|
157
|
+
describe "##{method}" do
|
158
|
+
subject { @user.__send__(method) }
|
159
|
+
|
160
|
+
describe 'when raise_on_save_failure is true' do
|
161
|
+
before do
|
162
|
+
@user.raise_on_save_failure = true
|
163
|
+
end
|
164
|
+
|
165
|
+
describe 'and it is a savable resource' do
|
166
|
+
it { should be(true) }
|
167
|
+
end
|
168
|
+
|
169
|
+
describe 'and it is an invalid resource' do
|
170
|
+
before do
|
171
|
+
@user.name = nil # name is required
|
172
|
+
end
|
173
|
+
|
174
|
+
it 'should raise an exception' do
|
175
|
+
method(:subject).should raise_error(DataMapper::SaveFailureError, "Blog::User##{method} returned false, Blog::User was not saved") { |error|
|
176
|
+
error.resource.should equal(@user)
|
177
|
+
}
|
178
|
+
end
|
179
|
+
end
|
180
|
+
end
|
181
|
+
end
|
182
|
+
end
|
183
|
+
|
184
|
+
[ :update, :update! ].each do |method|
|
185
|
+
describe 'with attributes where one is a foreign key' do
|
186
|
+
before :all do
|
187
|
+
rescue_if @skip do
|
188
|
+
@dkubb = @user.referrer = @user_model.create(:name => 'dkubb', :age => 33)
|
189
|
+
@user.save
|
190
|
+
@user = @user_model.get(*@user.key)
|
191
|
+
@user.referrer.should == @dkubb
|
192
|
+
|
193
|
+
@solnic = @user_model.create(:name => 'solnic', :age => 28)
|
194
|
+
|
195
|
+
@attributes = {}
|
196
|
+
|
197
|
+
relationship = @user_model.relationships[:referrer]
|
198
|
+
relationship.child_key.to_a.each_with_index do |k, i|
|
199
|
+
@attributes[k.name] = relationship.parent_key.to_a[i].get(@solnic)
|
200
|
+
end
|
201
|
+
|
202
|
+
@return = @user.__send__(method, @attributes)
|
203
|
+
end
|
204
|
+
end
|
205
|
+
|
206
|
+
it 'should return true' do
|
207
|
+
@return.should be(true)
|
208
|
+
end
|
209
|
+
|
210
|
+
it 'should update attributes of Resource' do
|
211
|
+
@attributes.each { |key, value| @user.__send__(key).should == value }
|
212
|
+
end
|
213
|
+
|
214
|
+
it 'should persist the changes' do
|
215
|
+
resource = @user_model.get(*@user.key)
|
216
|
+
@attributes.each { |key, value| resource.__send__(key).should == value }
|
217
|
+
end
|
218
|
+
|
219
|
+
it 'should return correct parent' do
|
220
|
+
resource = @user_model.get(*@user.key)
|
221
|
+
resource.referrer.should == @solnic
|
222
|
+
end
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
226
|
+
describe '#attribute_get' do
|
227
|
+
subject { object.attribute_get(name) }
|
228
|
+
|
229
|
+
let(:object) { @user }
|
230
|
+
|
231
|
+
context 'with a known property' do
|
232
|
+
let(:name) { :name }
|
233
|
+
|
234
|
+
it 'returns the attribute value' do
|
235
|
+
should == 'dbussink'
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
239
|
+
context 'with an unknown property' do
|
240
|
+
let(:name) { :unknown }
|
241
|
+
|
242
|
+
it 'returns nil' do
|
243
|
+
should be_nil
|
244
|
+
end
|
245
|
+
end
|
246
|
+
end
|
247
|
+
|
248
|
+
describe '#attribute_set' do
|
249
|
+
subject { object.attribute_set(name, value) }
|
250
|
+
|
251
|
+
let(:object) { @user.dup }
|
252
|
+
|
253
|
+
context 'with a known property' do
|
254
|
+
let(:name) { :name }
|
255
|
+
let(:value) { 'dkubb' }
|
256
|
+
|
257
|
+
it 'sets the attribute' do
|
258
|
+
expect { subject }.to change { object.name }.
|
259
|
+
from('dbussink').
|
260
|
+
to('dkubb')
|
261
|
+
end
|
262
|
+
|
263
|
+
it 'makes the object dirty' do
|
264
|
+
expect { subject }.to change { object.dirty? }.
|
265
|
+
from(false).
|
266
|
+
to(true)
|
267
|
+
end
|
268
|
+
end
|
269
|
+
|
270
|
+
context 'with an unknown property' do
|
271
|
+
let(:name) { :unknown }
|
272
|
+
let(:value) { mock('Unknown Value') }
|
273
|
+
|
274
|
+
it 'does not set the attribute' do
|
275
|
+
expect { subject }.to_not change { object.attributes.dup }
|
276
|
+
end
|
277
|
+
|
278
|
+
it 'does not make the object dirty' do
|
279
|
+
expect { subject }.to_not change { object.dirty? }
|
280
|
+
end
|
281
|
+
end
|
282
|
+
end
|
283
|
+
end
|
284
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'SEL', 'with STI subclasses' do
|
4
|
+
before :all do
|
5
|
+
module ::Blog
|
6
|
+
class Author
|
7
|
+
include DataMapper::Resource
|
8
|
+
|
9
|
+
property :id, Serial
|
10
|
+
property :name, String
|
11
|
+
|
12
|
+
has n, :messages
|
13
|
+
end
|
14
|
+
|
15
|
+
class Message
|
16
|
+
include DataMapper::Resource
|
17
|
+
|
18
|
+
property :id, Serial
|
19
|
+
property :type, Discriminator
|
20
|
+
property :title, String, :required => true
|
21
|
+
|
22
|
+
belongs_to :author
|
23
|
+
end
|
24
|
+
|
25
|
+
class Article < Message; end
|
26
|
+
class Comment < Message; end
|
27
|
+
end
|
28
|
+
|
29
|
+
DataMapper.finalize
|
30
|
+
|
31
|
+
@author_model = Blog::Author
|
32
|
+
@message_model = Blog::Message
|
33
|
+
@article_model = Blog::Article
|
34
|
+
@comment_model = Blog::Comment
|
35
|
+
end
|
36
|
+
|
37
|
+
supported_by :all do
|
38
|
+
before :all do
|
39
|
+
author1 = @author_model.create(:name => 'Dan Kubb')
|
40
|
+
author2 = @author_model.create(:name => 'Sindre Aarsaether')
|
41
|
+
|
42
|
+
@article_model.create(:title => 'SEL', :author => author1)
|
43
|
+
@article_model.create(:title => 'STI', :author => author1)
|
44
|
+
@comment_model.create(:title => 'SEL and STI error', :author => author2)
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'should allow STI loading of mixed relationships' do
|
48
|
+
lambda {
|
49
|
+
@message_model.all.each { |message| message.author }
|
50
|
+
}.should_not raise_error(ArgumentError)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,145 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe DataMapper do
|
4
|
+
describe '.setup' do
|
5
|
+
describe 'using connection string' do
|
6
|
+
before :all do
|
7
|
+
@return = DataMapper.setup(:setup_test, 'in_memory://user:pass@hostname:1234/path?foo=bar&baz=foo#fragment')
|
8
|
+
|
9
|
+
@options = @return.options
|
10
|
+
end
|
11
|
+
|
12
|
+
after :all do
|
13
|
+
DataMapper::Repository.adapters.delete(@return.name)
|
14
|
+
end
|
15
|
+
|
16
|
+
it 'should return an Adapter' do
|
17
|
+
@return.should be_kind_of(DataMapper::Adapters::AbstractAdapter)
|
18
|
+
end
|
19
|
+
|
20
|
+
it 'should set up the repository' do
|
21
|
+
DataMapper.repository(:setup_test).adapter.should equal(@return)
|
22
|
+
end
|
23
|
+
|
24
|
+
{
|
25
|
+
:adapter => 'in_memory',
|
26
|
+
:user => 'user',
|
27
|
+
:password => 'pass',
|
28
|
+
:host => 'hostname',
|
29
|
+
:port => 1234,
|
30
|
+
:path => '/path',
|
31
|
+
:fragment => 'fragment'
|
32
|
+
}.each do |key, val|
|
33
|
+
it "should extract the #{key.inspect} option from the uri" do
|
34
|
+
@options[key].should == val
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
it 'should alias the scheme of the uri as the adapter' do
|
39
|
+
@options[:scheme].should == @options[:adapter]
|
40
|
+
end
|
41
|
+
|
42
|
+
it 'should leave the query param intact' do
|
43
|
+
@options[:query].should == 'foo=bar&baz=foo'
|
44
|
+
end
|
45
|
+
|
46
|
+
it 'should extract the query param as top-level options' do
|
47
|
+
@options[:foo].should == 'bar'
|
48
|
+
@options[:baz].should == 'foo'
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'using options' do
|
53
|
+
before :all do
|
54
|
+
@return = DataMapper.setup(:setup_test, :adapter => :in_memory, :foo => 'bar')
|
55
|
+
|
56
|
+
@options = @return.options
|
57
|
+
end
|
58
|
+
|
59
|
+
after :all do
|
60
|
+
DataMapper::Repository.adapters.delete(@return.name)
|
61
|
+
end
|
62
|
+
|
63
|
+
it 'should return an Adapter' do
|
64
|
+
@return.should be_kind_of(DataMapper::Adapters::AbstractAdapter)
|
65
|
+
end
|
66
|
+
|
67
|
+
it 'should set up the repository' do
|
68
|
+
DataMapper.repository(:setup_test).adapter.should equal(@return)
|
69
|
+
end
|
70
|
+
|
71
|
+
{
|
72
|
+
:adapter => :in_memory,
|
73
|
+
:foo => 'bar'
|
74
|
+
}.each do |key, val|
|
75
|
+
it "should set the #{key.inspect} option" do
|
76
|
+
@options[key].should == val
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
describe 'using invalid options' do
|
82
|
+
it 'should raise an exception' do
|
83
|
+
lambda {
|
84
|
+
DataMapper.setup(:setup_test, :invalid)
|
85
|
+
}.should raise_error(ArgumentError, '+options+ should be Hash or Addressable::URI or String, but was Symbol')
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
describe 'using an instance of an adapter' do
|
90
|
+
before :all do
|
91
|
+
@adapter = DataMapper::Adapters::InMemoryAdapter.new(:setup_test)
|
92
|
+
|
93
|
+
@return = DataMapper.setup(@adapter)
|
94
|
+
end
|
95
|
+
|
96
|
+
after :all do
|
97
|
+
DataMapper::Repository.adapters.delete(@return.name)
|
98
|
+
end
|
99
|
+
|
100
|
+
it 'should return an Adapter' do
|
101
|
+
@return.should be_kind_of(DataMapper::Adapters::AbstractAdapter)
|
102
|
+
end
|
103
|
+
|
104
|
+
it 'should set up the repository' do
|
105
|
+
DataMapper.repository(:setup_test).adapter.should equal(@return)
|
106
|
+
end
|
107
|
+
|
108
|
+
it 'should use the adapter given' do
|
109
|
+
@return.should == @adapter
|
110
|
+
end
|
111
|
+
|
112
|
+
it 'should use the name given to the adapter' do
|
113
|
+
@return.name.should == @adapter.name
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
117
|
+
supported_by :postgres, :mysql, :sqlite3, :sqlserver do
|
118
|
+
{ :path => :database, :user => :username }.each do |original_key, new_key|
|
119
|
+
describe "using #{new_key.inspect} option" do
|
120
|
+
before :all do
|
121
|
+
@return = DataMapper.setup(:setup_test, :adapter => @adapter.options[:adapter], new_key => @adapter.options[original_key])
|
122
|
+
|
123
|
+
@options = @return.options
|
124
|
+
end
|
125
|
+
|
126
|
+
after :all do
|
127
|
+
DataMapper::Repository.adapters.delete(@return.name)
|
128
|
+
end
|
129
|
+
|
130
|
+
it 'should return an Adapter' do
|
131
|
+
@return.should be_kind_of(DataMapper::Adapters::AbstractAdapter)
|
132
|
+
end
|
133
|
+
|
134
|
+
it 'should set up the repository' do
|
135
|
+
DataMapper.repository(:setup_test).adapter.should equal(@return)
|
136
|
+
end
|
137
|
+
|
138
|
+
it "should set the #{new_key.inspect} option" do
|
139
|
+
@options[new_key].should == @adapter.options[original_key]
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|