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
data/spec/rcov.opts
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'AbstractAdapter' do
|
4
|
+
before :all do
|
5
|
+
@adapter = DataMapper::Adapters::AbstractAdapter.new(:abstract, :foo => 'bar')
|
6
|
+
@adapter_class = @adapter.class
|
7
|
+
@scheme = DataMapper::Inflector.underscore(DataMapper::Inflector.demodulize(@adapter_class).chomp('Adapter'))
|
8
|
+
@adapter_name = "test_#{@scheme}".to_sym
|
9
|
+
end
|
10
|
+
|
11
|
+
describe 'initialization' do
|
12
|
+
|
13
|
+
describe 'name' do
|
14
|
+
it 'should have a name' do
|
15
|
+
@adapter.name.should == :abstract
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
it 'should set options' do
|
20
|
+
@adapter.options.should == {:foo => 'bar'}
|
21
|
+
end
|
22
|
+
|
23
|
+
it 'should set naming conventions' do
|
24
|
+
@adapter.resource_naming_convention.should == DataMapper::NamingConventions::Resource::UnderscoredAndPluralized
|
25
|
+
@adapter.field_naming_convention.should == DataMapper::NamingConventions::Field::Underscored
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
@@ -0,0 +1,94 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Many to Many Associations' do
|
4
|
+
before :all do
|
5
|
+
module ::Blog
|
6
|
+
class Article
|
7
|
+
include DataMapper::Resource
|
8
|
+
|
9
|
+
property :title, String, :key => true
|
10
|
+
property :body, Text, :required => true
|
11
|
+
|
12
|
+
has n, :without_default_join, 'WithoutDefault'
|
13
|
+
has n, :with_default_join, 'WithDefault'
|
14
|
+
has n, :with_default_callable_join, 'WithDefaultCallable'
|
15
|
+
end
|
16
|
+
|
17
|
+
class Author
|
18
|
+
include DataMapper::Resource
|
19
|
+
|
20
|
+
property :name, String, :key => true
|
21
|
+
|
22
|
+
has n, :without_default_join, 'WithoutDefault'
|
23
|
+
has n, :with_default_join, 'WithDefault'
|
24
|
+
has n, :with_default_callable_join, 'WithDefaultCallable'
|
25
|
+
|
26
|
+
has n, :without_default, 'Article', :through => :without_default_join, :via => :article
|
27
|
+
has n, :with_default, 'Article', :through => :with_default_join, :via => :article
|
28
|
+
has n, :with_default_callable, 'Article', :through => :with_default_callable_join, :via => :article
|
29
|
+
end
|
30
|
+
|
31
|
+
class WithoutDefault
|
32
|
+
include DataMapper::Resource
|
33
|
+
|
34
|
+
belongs_to :article, :key => true
|
35
|
+
belongs_to :author, :key => true
|
36
|
+
end
|
37
|
+
|
38
|
+
class WithDefault
|
39
|
+
include DataMapper::Resource
|
40
|
+
|
41
|
+
belongs_to :article, :key => true
|
42
|
+
belongs_to :author, :key => true
|
43
|
+
end
|
44
|
+
|
45
|
+
class WithDefaultCallable
|
46
|
+
include DataMapper::Resource
|
47
|
+
|
48
|
+
belongs_to :article, :key => true
|
49
|
+
belongs_to :author, :key => true
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
|
54
|
+
@article_model = Blog::Article
|
55
|
+
@author_model = Blog::Author
|
56
|
+
|
57
|
+
DataMapper.finalize
|
58
|
+
|
59
|
+
n = @article_model.n
|
60
|
+
|
61
|
+
@default_value = [ @author_model.new(:name => 'Dan Kubb') ]
|
62
|
+
@default_value_callable = [ @author_model.new(:name => 'John Doe') ]
|
63
|
+
|
64
|
+
@subject_without_default = @article_model.has(n, :without_default, 'Author', :through => :without_default_join, :via => :author)
|
65
|
+
@subject_with_default = @article_model.has(n, :with_default, 'Author', :through => :with_default_join, :via => :author, :default => @default_value)
|
66
|
+
@subject_with_default_callable = @article_model.has(n, :with_default_callable, 'Author', :through => :with_default_callable_join, :via => :author, :default => lambda { |resource, relationship| @default_value_callable })
|
67
|
+
|
68
|
+
DataMapper.finalize
|
69
|
+
end
|
70
|
+
|
71
|
+
supported_by :all do
|
72
|
+
before :all do
|
73
|
+
@no_join = defined?(DataMapper::Adapters::InMemoryAdapter) && @adapter.kind_of?(DataMapper::Adapters::InMemoryAdapter) ||
|
74
|
+
defined?(DataMapper::Adapters::YamlAdapter) && @adapter.kind_of?(DataMapper::Adapters::YamlAdapter)
|
75
|
+
end
|
76
|
+
|
77
|
+
before do
|
78
|
+
pending if @no_join
|
79
|
+
end
|
80
|
+
|
81
|
+
before :all do
|
82
|
+
@default_value.each { |resource| resource.save }
|
83
|
+
@default_value_callable.each { |resource| resource.save }
|
84
|
+
end
|
85
|
+
|
86
|
+
describe 'acts like a subject' do
|
87
|
+
before do
|
88
|
+
@resource = @article_model.new(:title => 'DataMapper Rocks!', :body => 'TSIA')
|
89
|
+
end
|
90
|
+
|
91
|
+
it_should_behave_like 'A semipublic Subject'
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'Many to One Associations' 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
|
+
|
12
|
+
has n, :comments
|
13
|
+
end
|
14
|
+
|
15
|
+
class ::Comment
|
16
|
+
include DataMapper::Resource
|
17
|
+
|
18
|
+
property :id, Serial
|
19
|
+
|
20
|
+
belongs_to :user
|
21
|
+
end
|
22
|
+
|
23
|
+
@user_model = User
|
24
|
+
@comment_model = Comment
|
25
|
+
|
26
|
+
DataMapper.finalize
|
27
|
+
|
28
|
+
@default_value = @user_model.new(:name => 'dkubb', :age => 34, :description => 'Test')
|
29
|
+
@default_value_callable = @user_model.new(:name => 'jdoe', :age => 21, :description => 'Test')
|
30
|
+
|
31
|
+
@subject_without_default = @user_model.belongs_to(:without_default, @user_model, :required => false, :child_key => [ :without_default_id ])
|
32
|
+
@subject_with_default = @user_model.belongs_to(:with_default, @user_model, :required => false, :child_key => [ :with_default_id ], :default => @default_value)
|
33
|
+
@subject_with_default_callable = @user_model.belongs_to(:with_default_callable, @user_model, :required => false, :child_key => [ :with_default_callable_id ], :default => lambda { |resource, relationship| @default_value_callable })
|
34
|
+
|
35
|
+
@default_value.with_default = nil
|
36
|
+
@default_value.with_default_callable = nil
|
37
|
+
|
38
|
+
DataMapper.finalize
|
39
|
+
end
|
40
|
+
|
41
|
+
supported_by :all do
|
42
|
+
before :all do
|
43
|
+
@default_value.save
|
44
|
+
@default_value_callable.save
|
45
|
+
end
|
46
|
+
|
47
|
+
before :all do
|
48
|
+
comment = @comment_model.create(:user => { :name => 'dbussink', :age => 25, :description => 'Test' })
|
49
|
+
|
50
|
+
@user = @comment_model.get(*comment.key).user
|
51
|
+
end
|
52
|
+
|
53
|
+
it_should_behave_like 'A semipublic Resource'
|
54
|
+
|
55
|
+
describe 'acts like a subject' do
|
56
|
+
before do
|
57
|
+
@resource = @user_model.new(:name => 'A subject')
|
58
|
+
end
|
59
|
+
|
60
|
+
it_should_behave_like 'A semipublic Subject'
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'One to Many Associations' do
|
4
|
+
before :all do
|
5
|
+
module ::Blog
|
6
|
+
class Article
|
7
|
+
include DataMapper::Resource
|
8
|
+
|
9
|
+
property :title, String, :key => true
|
10
|
+
property :body, Text, :required => true
|
11
|
+
end
|
12
|
+
|
13
|
+
class Author
|
14
|
+
include DataMapper::Resource
|
15
|
+
|
16
|
+
property :name, String, :key => true
|
17
|
+
|
18
|
+
belongs_to :without_default, 'Article', :child_key => [ :without_default_id ], :required => false
|
19
|
+
belongs_to :with_default, 'Article', :child_key => [ :with_default_id ], :required => false
|
20
|
+
belongs_to :with_default_callable, 'Article', :child_key => [ :with_default_callable_id ], :required => false
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
@article_model = Blog::Article
|
25
|
+
@author_model = Blog::Author
|
26
|
+
|
27
|
+
DataMapper.finalize
|
28
|
+
|
29
|
+
n = @article_model.n
|
30
|
+
|
31
|
+
@default_value = [ @author_model.new(:name => 'Dan Kubb') ]
|
32
|
+
@default_value_callable = [ @author_model.new(:name => 'John Doe') ]
|
33
|
+
|
34
|
+
@subject_without_default = @article_model.has(n, :without_default, @author_model, :child_key => [ :without_default_id ])
|
35
|
+
@subject_with_default = @article_model.has(n, :with_default, @author_model, :child_key => [ :with_default_id ], :default => @default_value)
|
36
|
+
@subject_with_default_callable = @article_model.has(n, :with_default_callable, @author_model, :child_key => [ :with_default_callable_id ], :default => lambda { |resource, relationship| @default_value_callable })
|
37
|
+
|
38
|
+
DataMapper.finalize
|
39
|
+
end
|
40
|
+
|
41
|
+
supported_by :all do
|
42
|
+
before :all do
|
43
|
+
@default_value.each { |resource| resource.save }
|
44
|
+
@default_value_callable.each { |resource| resource.save }
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'acts like a subject' do
|
48
|
+
before do
|
49
|
+
@resource = @article_model.new(:title => 'DataMapper Rocks!', :body => 'TSIA')
|
50
|
+
end
|
51
|
+
|
52
|
+
it_should_behave_like 'A semipublic Subject'
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe 'One to One Associations' do
|
4
|
+
before :all do
|
5
|
+
module ::Blog
|
6
|
+
class Article
|
7
|
+
include DataMapper::Resource
|
8
|
+
|
9
|
+
property :title, String, :key => true
|
10
|
+
property :body, Text, :required => true
|
11
|
+
end
|
12
|
+
|
13
|
+
class Author
|
14
|
+
include DataMapper::Resource
|
15
|
+
|
16
|
+
property :name, String, :key => true
|
17
|
+
|
18
|
+
belongs_to :without_default, 'Article', :child_key => [ :without_default_id ], :required => false
|
19
|
+
belongs_to :with_default, 'Article', :child_key => [ :with_default_id ], :required => false
|
20
|
+
belongs_to :with_default_callable, 'Article', :child_key => [ :with_default_callable_id ], :required => false
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
@article_model = Blog::Article
|
25
|
+
@author_model = Blog::Author
|
26
|
+
|
27
|
+
DataMapper.finalize
|
28
|
+
|
29
|
+
@default_value = @author_model.new(:name => 'Dan Kubb')
|
30
|
+
@default_value_callable = @author_model.new(:name => 'John Doe')
|
31
|
+
|
32
|
+
@subject_without_default = @article_model.has(1, :without_default, @author_model, :child_key => [ :without_default_id ])
|
33
|
+
@subject_with_default = @article_model.has(1, :with_default, @author_model, :child_key => [ :with_default_id ], :default => @default_value)
|
34
|
+
@subject_with_default_callable = @article_model.has(1, :with_default_callable, @author_model, :child_key => [ :with_default_callable_id ], :default => lambda { |resource, relationship| @default_value_callable })
|
35
|
+
|
36
|
+
DataMapper.finalize
|
37
|
+
end
|
38
|
+
|
39
|
+
supported_by :all do
|
40
|
+
before :all do
|
41
|
+
@default_value.save
|
42
|
+
@default_value_callable.save
|
43
|
+
end
|
44
|
+
|
45
|
+
describe 'acts like a subject' do
|
46
|
+
before do
|
47
|
+
@resource = @article_model.new(:title => 'DataMapper Rocks!', :body => 'TSIA')
|
48
|
+
end
|
49
|
+
|
50
|
+
it_should_behave_like 'A semipublic Subject'
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,200 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe DataMapper::Associations::Relationship do
|
4
|
+
before :all do
|
5
|
+
module ::Blog
|
6
|
+
class Article
|
7
|
+
include DataMapper::Resource
|
8
|
+
|
9
|
+
property :title, String, :key => true
|
10
|
+
end
|
11
|
+
|
12
|
+
class Comment
|
13
|
+
include DataMapper::Resource
|
14
|
+
|
15
|
+
property :id, Serial
|
16
|
+
property :body, Text
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
@article_model = Blog::Article
|
21
|
+
@comment_model = Blog::Comment
|
22
|
+
end
|
23
|
+
|
24
|
+
def n
|
25
|
+
1.0/0
|
26
|
+
end
|
27
|
+
|
28
|
+
describe '#inverse' do
|
29
|
+
describe 'with matching relationships' do
|
30
|
+
before :all do
|
31
|
+
@comments_relationship = @article_model.has(n, :comments)
|
32
|
+
@article_relationship = @comment_model.belongs_to(:article)
|
33
|
+
|
34
|
+
# TODO: move this to spec/public/model/relationship_spec.rb
|
35
|
+
@comments_relationship.child_repository_name.should be_nil
|
36
|
+
@comments_relationship.parent_repository_name.should == :default
|
37
|
+
|
38
|
+
# TODO: move this to spec/public/model/relationship_spec.rb
|
39
|
+
@article_relationship.child_repository_name.should == :default
|
40
|
+
@article_relationship.parent_repository_name.should be_nil
|
41
|
+
DataMapper.finalize
|
42
|
+
end
|
43
|
+
|
44
|
+
it 'should return the inverted relationships' do
|
45
|
+
@comments_relationship.inverse.should equal(@article_relationship)
|
46
|
+
@article_relationship.inverse.should equal(@comments_relationship)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe 'with matching relationships where the child repository is not nil' do
|
51
|
+
before :all do
|
52
|
+
@comments_relationship = @article_model.has(n, :comments, :repository => :default)
|
53
|
+
@article_relationship = @comment_model.belongs_to(:article)
|
54
|
+
|
55
|
+
# TODO: move this to spec/public/model/relationship_spec.rb
|
56
|
+
@comments_relationship.child_repository_name.should == :default
|
57
|
+
@comments_relationship.parent_repository_name.should == :default
|
58
|
+
|
59
|
+
# TODO: move this to spec/public/model/relationship_spec.rb
|
60
|
+
@article_relationship.child_repository_name.should == :default
|
61
|
+
@article_relationship.parent_repository_name.should be_nil
|
62
|
+
DataMapper.finalize
|
63
|
+
end
|
64
|
+
|
65
|
+
it 'should return the inverted relationships' do
|
66
|
+
@comments_relationship.inverse.should equal(@article_relationship)
|
67
|
+
@article_relationship.inverse.should equal(@comments_relationship)
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
describe 'with matching relationships where the parent repository is not nil' do
|
72
|
+
before :all do
|
73
|
+
@comments_relationship = @article_model.has(n, :comments)
|
74
|
+
@article_relationship = @comment_model.belongs_to(:article, :repository => :default)
|
75
|
+
|
76
|
+
# TODO: move this to spec/public/model/relationship_spec.rb
|
77
|
+
@comments_relationship.child_repository_name.should be_nil
|
78
|
+
@comments_relationship.parent_repository_name.should == :default
|
79
|
+
|
80
|
+
# TODO: move this to spec/public/model/relationship_spec.rb
|
81
|
+
@article_relationship.child_repository_name.should == :default
|
82
|
+
@article_relationship.parent_repository_name.should == :default
|
83
|
+
DataMapper.finalize
|
84
|
+
end
|
85
|
+
|
86
|
+
it 'should return the inverted relationships' do
|
87
|
+
@comments_relationship.inverse.should equal(@article_relationship)
|
88
|
+
@article_relationship.inverse.should equal(@comments_relationship)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
describe 'with no matching relationship', 'from the parent side' do
|
93
|
+
before :all do
|
94
|
+
# added to force OneToMany::Relationship#inverse to consider the
|
95
|
+
# child_key differences
|
96
|
+
@comment_model.belongs_to(:other_article, @article_model, :child_key => [ :other_article_id ])
|
97
|
+
|
98
|
+
@relationship = @article_model.has(n, :comments)
|
99
|
+
|
100
|
+
@inverse = @relationship.inverse
|
101
|
+
|
102
|
+
# after Relationship#inverse to ensure no match
|
103
|
+
@expected = @comment_model.belongs_to(:article)
|
104
|
+
DataMapper.finalize
|
105
|
+
end
|
106
|
+
|
107
|
+
it 'should return a Relationship' do
|
108
|
+
@inverse.should be_kind_of(DataMapper::Associations::Relationship)
|
109
|
+
end
|
110
|
+
|
111
|
+
it 'should return an inverted relationship' do
|
112
|
+
@inverse.should == @expected
|
113
|
+
end
|
114
|
+
|
115
|
+
it 'should be an anonymous relationship' do
|
116
|
+
@inverse.should_not equal(@expected)
|
117
|
+
end
|
118
|
+
|
119
|
+
it 'should have a source repository equal to the target repository of the relationship' do
|
120
|
+
@inverse.source_repository_name.should == @relationship.target_repository_name
|
121
|
+
end
|
122
|
+
|
123
|
+
it "should be have the relationship as it's inverse" do
|
124
|
+
@inverse.inverse.should equal(@relationship)
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
describe 'with no matching relationship', 'from the child side' do
|
129
|
+
before :all do
|
130
|
+
@relationship = @comment_model.belongs_to(:article)
|
131
|
+
|
132
|
+
@inverse = @relationship.inverse
|
133
|
+
|
134
|
+
# after Relationship#inverse to ensure no match
|
135
|
+
@expected = @article_model.has(n, :comments)
|
136
|
+
DataMapper.finalize
|
137
|
+
end
|
138
|
+
|
139
|
+
it 'should return a Relationship' do
|
140
|
+
@inverse.should be_kind_of(DataMapper::Associations::Relationship)
|
141
|
+
end
|
142
|
+
|
143
|
+
it 'should return an inverted relationship' do
|
144
|
+
@inverse.should == @expected
|
145
|
+
end
|
146
|
+
|
147
|
+
it 'should be an anonymous relationship' do
|
148
|
+
@inverse.should_not equal(@expected)
|
149
|
+
end
|
150
|
+
|
151
|
+
it 'should have a source repository equal to the target repository of the relationship' do
|
152
|
+
@inverse.source_repository_name.should == @relationship.target_repository_name
|
153
|
+
end
|
154
|
+
|
155
|
+
it "should be have the relationship as it's inverse" do
|
156
|
+
@inverse.inverse.should equal(@relationship)
|
157
|
+
end
|
158
|
+
end
|
159
|
+
end
|
160
|
+
|
161
|
+
describe '#valid?' do
|
162
|
+
before :all do
|
163
|
+
@relationship = @article_model.has(n, :comments)
|
164
|
+
DataMapper.finalize
|
165
|
+
end
|
166
|
+
|
167
|
+
supported_by :all do
|
168
|
+
describe 'with valid resource' do
|
169
|
+
before :all do
|
170
|
+
@article = @article_model.create(:title => 'Relationships in DataMapper')
|
171
|
+
@resource = @article.comments.create
|
172
|
+
end
|
173
|
+
|
174
|
+
it 'should return true' do
|
175
|
+
@relationship.valid?(@resource).should be(true)
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
describe 'with a resource of the wrong class' do
|
180
|
+
before :all do
|
181
|
+
@resource = @article_model.new
|
182
|
+
end
|
183
|
+
|
184
|
+
it 'should return false' do
|
185
|
+
@relationship.valid?(@resource).should be(false)
|
186
|
+
end
|
187
|
+
end
|
188
|
+
|
189
|
+
describe 'with a resource without a valid parent' do
|
190
|
+
before :all do
|
191
|
+
@resource = @comment_model.new
|
192
|
+
end
|
193
|
+
|
194
|
+
it 'should return false' do
|
195
|
+
@relationship.valid?(@resource).should be(false)
|
196
|
+
end
|
197
|
+
end
|
198
|
+
end
|
199
|
+
end
|
200
|
+
end
|