djsun-mongo_mapper 0.5.0.1 → 0.5.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/djsun-mongo_mapper.gemspec +164 -0
- data/lib/mongo_mapper/dirty.rb +137 -0
- data/lib/mongo_mapper/document.rb +1 -0
- data/lib/mongo_mapper/embedded_document.rb +7 -1
- data/lib/mongo_mapper/finder_options.rb +1 -8
- data/lib/mongo_mapper/key.rb +4 -0
- data/lib/mongo_mapper/support.rb +0 -14
- data/lib/mongo_mapper.rb +2 -1
- data/mongo_mapper.gemspec +11 -5
- data/test/functional/test_dirty.rb +138 -0
- data/test/unit/test_finder_options.rb +18 -29
- data/test/unit/test_key.rb +9 -0
- metadata +7 -3
data/Rakefile
CHANGED
@@ -12,7 +12,7 @@ begin
|
|
12
12
|
gem.rubyforge_project = "mongomapper"
|
13
13
|
|
14
14
|
gem.add_dependency('activesupport')
|
15
|
-
gem.add_dependency('mongo', '0.15')
|
15
|
+
gem.add_dependency('mongo', '0.15.1')
|
16
16
|
gem.add_dependency('jnunemaker-validatable', '1.7.3')
|
17
17
|
|
18
18
|
gem.add_development_dependency('mocha', '0.9.4')
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.2.1
|
@@ -0,0 +1,164 @@
|
|
1
|
+
# Generated by jeweler"
|
2
|
+
# DO NOT EDIT THIS FILE"
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`"
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{djsun-mongo_mapper}
|
8
|
+
s.version = "0.5.2.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["John Nunemaker"]
|
12
|
+
s.date = %q{2009-10-09}
|
13
|
+
s.default_executable = %q{mmconsole}
|
14
|
+
s.email = %q{nunemaker@gmail.com}
|
15
|
+
s.executables = ["mmconsole"]
|
16
|
+
s.extra_rdoc_files = [
|
17
|
+
"LICENSE",
|
18
|
+
"README.rdoc"
|
19
|
+
]
|
20
|
+
s.files = [
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"bin/mmconsole",
|
27
|
+
"djsun-mongo_mapper.gemspec",
|
28
|
+
"lib/mongo_mapper.rb",
|
29
|
+
"lib/mongo_mapper/associations.rb",
|
30
|
+
"lib/mongo_mapper/associations/base.rb",
|
31
|
+
"lib/mongo_mapper/associations/belongs_to_polymorphic_proxy.rb",
|
32
|
+
"lib/mongo_mapper/associations/belongs_to_proxy.rb",
|
33
|
+
"lib/mongo_mapper/associations/many_documents_as_proxy.rb",
|
34
|
+
"lib/mongo_mapper/associations/many_documents_proxy.rb",
|
35
|
+
"lib/mongo_mapper/associations/many_embedded_polymorphic_proxy.rb",
|
36
|
+
"lib/mongo_mapper/associations/many_embedded_proxy.rb",
|
37
|
+
"lib/mongo_mapper/associations/many_polymorphic_proxy.rb",
|
38
|
+
"lib/mongo_mapper/associations/many_proxy.rb",
|
39
|
+
"lib/mongo_mapper/associations/proxy.rb",
|
40
|
+
"lib/mongo_mapper/callbacks.rb",
|
41
|
+
"lib/mongo_mapper/dirty.rb",
|
42
|
+
"lib/mongo_mapper/document.rb",
|
43
|
+
"lib/mongo_mapper/dynamic_finder.rb",
|
44
|
+
"lib/mongo_mapper/embedded_document.rb",
|
45
|
+
"lib/mongo_mapper/finder_options.rb",
|
46
|
+
"lib/mongo_mapper/key.rb",
|
47
|
+
"lib/mongo_mapper/observing.rb",
|
48
|
+
"lib/mongo_mapper/pagination.rb",
|
49
|
+
"lib/mongo_mapper/rails_compatibility/document.rb",
|
50
|
+
"lib/mongo_mapper/rails_compatibility/embedded_document.rb",
|
51
|
+
"lib/mongo_mapper/save_with_validation.rb",
|
52
|
+
"lib/mongo_mapper/serialization.rb",
|
53
|
+
"lib/mongo_mapper/serializers/json_serializer.rb",
|
54
|
+
"lib/mongo_mapper/support.rb",
|
55
|
+
"lib/mongo_mapper/validations.rb",
|
56
|
+
"mongo_mapper.gemspec",
|
57
|
+
"specs.watchr",
|
58
|
+
"test/NOTE_ON_TESTING",
|
59
|
+
"test/custom_matchers.rb",
|
60
|
+
"test/functional/associations/test_belongs_to_polymorphic_proxy.rb",
|
61
|
+
"test/functional/associations/test_belongs_to_proxy.rb",
|
62
|
+
"test/functional/associations/test_many_documents_as_proxy.rb",
|
63
|
+
"test/functional/associations/test_many_embedded_polymorphic_proxy.rb",
|
64
|
+
"test/functional/associations/test_many_embedded_proxy.rb",
|
65
|
+
"test/functional/associations/test_many_polymorphic_proxy.rb",
|
66
|
+
"test/functional/associations/test_many_proxy.rb",
|
67
|
+
"test/functional/test_associations.rb",
|
68
|
+
"test/functional/test_binary.rb",
|
69
|
+
"test/functional/test_callbacks.rb",
|
70
|
+
"test/functional/test_dirty.rb",
|
71
|
+
"test/functional/test_document.rb",
|
72
|
+
"test/functional/test_embedded_document.rb",
|
73
|
+
"test/functional/test_logger.rb",
|
74
|
+
"test/functional/test_pagination.rb",
|
75
|
+
"test/functional/test_rails_compatibility.rb",
|
76
|
+
"test/functional/test_validations.rb",
|
77
|
+
"test/models.rb",
|
78
|
+
"test/test_helper.rb",
|
79
|
+
"test/unit/serializers/test_json_serializer.rb",
|
80
|
+
"test/unit/test_association_base.rb",
|
81
|
+
"test/unit/test_document.rb",
|
82
|
+
"test/unit/test_dynamic_finder.rb",
|
83
|
+
"test/unit/test_embedded_document.rb",
|
84
|
+
"test/unit/test_finder_options.rb",
|
85
|
+
"test/unit/test_key.rb",
|
86
|
+
"test/unit/test_mongomapper.rb",
|
87
|
+
"test/unit/test_observing.rb",
|
88
|
+
"test/unit/test_pagination.rb",
|
89
|
+
"test/unit/test_rails_compatibility.rb",
|
90
|
+
"test/unit/test_serializations.rb",
|
91
|
+
"test/unit/test_support.rb",
|
92
|
+
"test/unit/test_time_zones.rb",
|
93
|
+
"test/unit/test_validations.rb"
|
94
|
+
]
|
95
|
+
s.homepage = %q{http://github.com/jnunemaker/mongomapper}
|
96
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
97
|
+
s.require_paths = ["lib"]
|
98
|
+
s.rubyforge_project = %q{mongomapper}
|
99
|
+
s.rubygems_version = %q{1.3.5}
|
100
|
+
s.summary = %q{Awesome gem for modeling your domain and storing it in mongo}
|
101
|
+
s.test_files = [
|
102
|
+
"test/custom_matchers.rb",
|
103
|
+
"test/functional/associations/test_belongs_to_polymorphic_proxy.rb",
|
104
|
+
"test/functional/associations/test_belongs_to_proxy.rb",
|
105
|
+
"test/functional/associations/test_many_documents_as_proxy.rb",
|
106
|
+
"test/functional/associations/test_many_embedded_polymorphic_proxy.rb",
|
107
|
+
"test/functional/associations/test_many_embedded_proxy.rb",
|
108
|
+
"test/functional/associations/test_many_polymorphic_proxy.rb",
|
109
|
+
"test/functional/associations/test_many_proxy.rb",
|
110
|
+
"test/functional/test_associations.rb",
|
111
|
+
"test/functional/test_binary.rb",
|
112
|
+
"test/functional/test_callbacks.rb",
|
113
|
+
"test/functional/test_dirty.rb",
|
114
|
+
"test/functional/test_document.rb",
|
115
|
+
"test/functional/test_embedded_document.rb",
|
116
|
+
"test/functional/test_logger.rb",
|
117
|
+
"test/functional/test_pagination.rb",
|
118
|
+
"test/functional/test_rails_compatibility.rb",
|
119
|
+
"test/functional/test_validations.rb",
|
120
|
+
"test/models.rb",
|
121
|
+
"test/test_helper.rb",
|
122
|
+
"test/unit/serializers/test_json_serializer.rb",
|
123
|
+
"test/unit/test_association_base.rb",
|
124
|
+
"test/unit/test_document.rb",
|
125
|
+
"test/unit/test_dynamic_finder.rb",
|
126
|
+
"test/unit/test_embedded_document.rb",
|
127
|
+
"test/unit/test_finder_options.rb",
|
128
|
+
"test/unit/test_key.rb",
|
129
|
+
"test/unit/test_mongomapper.rb",
|
130
|
+
"test/unit/test_observing.rb",
|
131
|
+
"test/unit/test_pagination.rb",
|
132
|
+
"test/unit/test_rails_compatibility.rb",
|
133
|
+
"test/unit/test_serializations.rb",
|
134
|
+
"test/unit/test_support.rb",
|
135
|
+
"test/unit/test_time_zones.rb",
|
136
|
+
"test/unit/test_validations.rb"
|
137
|
+
]
|
138
|
+
|
139
|
+
if s.respond_to? :specification_version then
|
140
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
141
|
+
s.specification_version = 3
|
142
|
+
|
143
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
144
|
+
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
|
145
|
+
s.add_runtime_dependency(%q<mongo>, ["= 0.15.1"])
|
146
|
+
s.add_runtime_dependency(%q<jnunemaker-validatable>, ["= 1.7.3"])
|
147
|
+
s.add_development_dependency(%q<mocha>, ["= 0.9.4"])
|
148
|
+
s.add_development_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
|
149
|
+
else
|
150
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
151
|
+
s.add_dependency(%q<mongo>, ["= 0.15.1"])
|
152
|
+
s.add_dependency(%q<jnunemaker-validatable>, ["= 1.7.3"])
|
153
|
+
s.add_dependency(%q<mocha>, ["= 0.9.4"])
|
154
|
+
s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
|
155
|
+
end
|
156
|
+
else
|
157
|
+
s.add_dependency(%q<activesupport>, [">= 0"])
|
158
|
+
s.add_dependency(%q<mongo>, ["= 0.15.1"])
|
159
|
+
s.add_dependency(%q<jnunemaker-validatable>, ["= 1.7.3"])
|
160
|
+
s.add_dependency(%q<mocha>, ["= 0.9.4"])
|
161
|
+
s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
@@ -0,0 +1,137 @@
|
|
1
|
+
module MongoMapper
|
2
|
+
module Dirty
|
3
|
+
DIRTY_SUFFIXES = ['_changed?', '_change', '_will_change!', '_was']
|
4
|
+
|
5
|
+
def self.included(base)
|
6
|
+
base.alias_method_chain :write_attribute, :dirty
|
7
|
+
base.alias_method_chain :save, :dirty
|
8
|
+
base.alias_method_chain :save!, :dirty
|
9
|
+
end
|
10
|
+
|
11
|
+
def method_missing(method, *args, &block)
|
12
|
+
if method.to_s =~ /(_changed\?|_change|_will_change!|_was)$/
|
13
|
+
method_suffix = $1
|
14
|
+
key = method.to_s.gsub(method_suffix, '')
|
15
|
+
|
16
|
+
if key_names.include?(key)
|
17
|
+
case method_suffix
|
18
|
+
when '_changed?'
|
19
|
+
key_changed?(key)
|
20
|
+
when '_change'
|
21
|
+
key_change(key)
|
22
|
+
when '_will_change!'
|
23
|
+
key_will_change!(key)
|
24
|
+
when '_was'
|
25
|
+
key_was(key)
|
26
|
+
end
|
27
|
+
else
|
28
|
+
super
|
29
|
+
end
|
30
|
+
else
|
31
|
+
super
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def changed?
|
36
|
+
!changed_keys.empty?
|
37
|
+
end
|
38
|
+
|
39
|
+
# List of keys with unsaved changes.
|
40
|
+
# person.changed # => []
|
41
|
+
# person.name = 'bob'
|
42
|
+
# person.changed # => ['name']
|
43
|
+
def changed
|
44
|
+
changed_keys.keys
|
45
|
+
end
|
46
|
+
|
47
|
+
# Map of changed attrs => [original value, new value].
|
48
|
+
# person.changes # => {}
|
49
|
+
# person.name = 'bob'
|
50
|
+
# person.changes # => { 'name' => ['bill', 'bob'] }
|
51
|
+
def changes
|
52
|
+
changed.inject({}) { |h, attribute| h[attribute] = key_change(attribute); h }
|
53
|
+
end
|
54
|
+
|
55
|
+
# Attempts to +save+ the record and clears changed keys if successful.
|
56
|
+
def save_with_dirty(*args) #:nodoc:
|
57
|
+
if status = save_without_dirty(*args)
|
58
|
+
changed_keys.clear
|
59
|
+
end
|
60
|
+
status
|
61
|
+
end
|
62
|
+
|
63
|
+
# Attempts to <tt>save!</tt> the record and clears changed keys if successful.
|
64
|
+
def save_with_dirty!(*args) #:nodoc:
|
65
|
+
status = save_without_dirty!(*args)
|
66
|
+
changed_keys.clear
|
67
|
+
status
|
68
|
+
end
|
69
|
+
|
70
|
+
# <tt>reload</tt> the record and clears changed keys.
|
71
|
+
# def reload_with_dirty(*args) #:nodoc:
|
72
|
+
# record = reload_without_dirty(*args)
|
73
|
+
# changed_keys.clear
|
74
|
+
# record
|
75
|
+
# end
|
76
|
+
|
77
|
+
private
|
78
|
+
def clone_key_value(attribute_name)
|
79
|
+
value = send(:read_attribute, attribute_name)
|
80
|
+
value.duplicable? ? value.clone : value
|
81
|
+
rescue TypeError, NoMethodError
|
82
|
+
value
|
83
|
+
end
|
84
|
+
|
85
|
+
# Map of change <tt>attr => original value</tt>.
|
86
|
+
def changed_keys
|
87
|
+
@changed_keys ||= {}
|
88
|
+
end
|
89
|
+
|
90
|
+
# Handle <tt>*_changed?</tt> for +method_missing+.
|
91
|
+
def key_changed?(attribute)
|
92
|
+
changed_keys.include?(attribute)
|
93
|
+
end
|
94
|
+
|
95
|
+
# Handle <tt>*_change</tt> for +method_missing+.
|
96
|
+
def key_change(attribute)
|
97
|
+
[changed_keys[attribute], __send__(attribute)] if key_changed?(attribute)
|
98
|
+
end
|
99
|
+
|
100
|
+
# Handle <tt>*_was</tt> for +method_missing+.
|
101
|
+
def key_was(attribute)
|
102
|
+
key_changed?(attribute) ? changed_keys[attribute] : __send__(attribute)
|
103
|
+
end
|
104
|
+
|
105
|
+
# Handle <tt>*_will_change!</tt> for +method_missing+.
|
106
|
+
def key_will_change!(attribute)
|
107
|
+
changed_keys[attribute] = clone_key_value(attribute)
|
108
|
+
end
|
109
|
+
|
110
|
+
# Wrap write_attribute to remember original key value.
|
111
|
+
def write_attribute_with_dirty(attribute, value)
|
112
|
+
attribute = attribute.to_s
|
113
|
+
|
114
|
+
# The key already has an unsaved change.
|
115
|
+
if changed_keys.include?(attribute)
|
116
|
+
old = changed_keys[attribute]
|
117
|
+
changed_keys.delete(attribute) unless value_changed?(attribute, old, value)
|
118
|
+
else
|
119
|
+
old = clone_key_value(attribute)
|
120
|
+
changed_keys[attribute] = old if value_changed?(attribute, old, value)
|
121
|
+
end
|
122
|
+
|
123
|
+
# Carry on.
|
124
|
+
write_attribute_without_dirty(attribute, value)
|
125
|
+
end
|
126
|
+
|
127
|
+
def value_changed?(key_name, old, value)
|
128
|
+
key = _keys[key_name]
|
129
|
+
|
130
|
+
if key.number? && value.blank?
|
131
|
+
value = nil
|
132
|
+
end
|
133
|
+
|
134
|
+
old != value
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
@@ -299,6 +299,12 @@ module MongoMapper
|
|
299
299
|
_root_document.save
|
300
300
|
end
|
301
301
|
end
|
302
|
+
|
303
|
+
def save!
|
304
|
+
if _root_document
|
305
|
+
_root_document.save!
|
306
|
+
end
|
307
|
+
end
|
302
308
|
|
303
309
|
def update_attributes(attrs={})
|
304
310
|
self.attributes = attrs
|
@@ -348,7 +354,7 @@ module MongoMapper
|
|
348
354
|
end.map do |name, association|
|
349
355
|
association
|
350
356
|
end
|
351
|
-
end
|
357
|
+
end
|
352
358
|
end # InstanceMethods
|
353
359
|
end # EmbeddedDocument
|
354
360
|
end # MongoMapper
|
@@ -74,14 +74,7 @@ module MongoMapper
|
|
74
74
|
def self.to_mongo_sort(sort)
|
75
75
|
return if sort.blank?
|
76
76
|
pieces = sort.split(',')
|
77
|
-
|
78
|
-
|
79
|
-
hash = OrderedHash.new
|
80
|
-
pairs.each do |pair|
|
81
|
-
field, sort_direction = pair
|
82
|
-
hash[field] = sort_direction
|
83
|
-
end
|
84
|
-
hash.symbolize_keys
|
77
|
+
pieces.map { |s| to_mongo_sort_piece(s) }
|
85
78
|
end
|
86
79
|
|
87
80
|
def self.to_mongo_sort_piece(str)
|
data/lib/mongo_mapper/key.rb
CHANGED
data/lib/mongo_mapper/support.rb
CHANGED
@@ -154,18 +154,4 @@ class Time
|
|
154
154
|
Time.parse(value.to_s)
|
155
155
|
end
|
156
156
|
end
|
157
|
-
end
|
158
|
-
|
159
|
-
# duck punch to get access to internal mongo
|
160
|
-
# logger instance until my patch goes thorugh
|
161
|
-
module Mongo
|
162
|
-
class Connection
|
163
|
-
def logger
|
164
|
-
@options[:logger]
|
165
|
-
end
|
166
|
-
end
|
167
|
-
|
168
|
-
class DB
|
169
|
-
attr_reader :logger
|
170
|
-
end
|
171
157
|
end
|
data/lib/mongo_mapper.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
|
3
3
|
gem 'activesupport'
|
4
|
-
gem 'mongo', '0.15'
|
4
|
+
gem 'mongo', '0.15.1'
|
5
5
|
gem 'jnunemaker-validatable', '1.7.3'
|
6
6
|
|
7
7
|
require 'activesupport'
|
@@ -82,6 +82,7 @@ require 'mongo_mapper/associations/many_embedded_polymorphic_proxy'
|
|
82
82
|
require 'mongo_mapper/associations/many_documents_as_proxy'
|
83
83
|
require 'mongo_mapper/callbacks'
|
84
84
|
require 'mongo_mapper/finder_options'
|
85
|
+
require 'mongo_mapper/dirty'
|
85
86
|
require 'mongo_mapper/dynamic_finder'
|
86
87
|
require 'mongo_mapper/key'
|
87
88
|
require 'mongo_mapper/observing'
|
data/mongo_mapper.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{mongo_mapper}
|
8
|
-
s.version = "0.5.
|
8
|
+
s.version = "0.5.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["John Nunemaker"]
|
12
|
-
s.date = %q{2009-10-
|
12
|
+
s.date = %q{2009-10-08}
|
13
13
|
s.default_executable = %q{mmconsole}
|
14
14
|
s.email = %q{nunemaker@gmail.com}
|
15
15
|
s.executables = ["mmconsole"]
|
@@ -37,6 +37,7 @@ Gem::Specification.new do |s|
|
|
37
37
|
"lib/mongo_mapper/associations/many_proxy.rb",
|
38
38
|
"lib/mongo_mapper/associations/proxy.rb",
|
39
39
|
"lib/mongo_mapper/callbacks.rb",
|
40
|
+
"lib/mongo_mapper/dirty.rb",
|
40
41
|
"lib/mongo_mapper/document.rb",
|
41
42
|
"lib/mongo_mapper/dynamic_finder.rb",
|
42
43
|
"lib/mongo_mapper/embedded_document.rb",
|
@@ -52,6 +53,7 @@ Gem::Specification.new do |s|
|
|
52
53
|
"lib/mongo_mapper/support.rb",
|
53
54
|
"lib/mongo_mapper/validations.rb",
|
54
55
|
"mongo_mapper.gemspec",
|
56
|
+
"specs.watchr",
|
55
57
|
"test/NOTE_ON_TESTING",
|
56
58
|
"test/custom_matchers.rb",
|
57
59
|
"test/functional/associations/test_belongs_to_polymorphic_proxy.rb",
|
@@ -64,8 +66,10 @@ Gem::Specification.new do |s|
|
|
64
66
|
"test/functional/test_associations.rb",
|
65
67
|
"test/functional/test_binary.rb",
|
66
68
|
"test/functional/test_callbacks.rb",
|
69
|
+
"test/functional/test_dirty.rb",
|
67
70
|
"test/functional/test_document.rb",
|
68
71
|
"test/functional/test_embedded_document.rb",
|
72
|
+
"test/functional/test_logger.rb",
|
69
73
|
"test/functional/test_pagination.rb",
|
70
74
|
"test/functional/test_rails_compatibility.rb",
|
71
75
|
"test/functional/test_validations.rb",
|
@@ -105,8 +109,10 @@ Gem::Specification.new do |s|
|
|
105
109
|
"test/functional/test_associations.rb",
|
106
110
|
"test/functional/test_binary.rb",
|
107
111
|
"test/functional/test_callbacks.rb",
|
112
|
+
"test/functional/test_dirty.rb",
|
108
113
|
"test/functional/test_document.rb",
|
109
114
|
"test/functional/test_embedded_document.rb",
|
115
|
+
"test/functional/test_logger.rb",
|
110
116
|
"test/functional/test_pagination.rb",
|
111
117
|
"test/functional/test_rails_compatibility.rb",
|
112
118
|
"test/functional/test_validations.rb",
|
@@ -135,20 +141,20 @@ Gem::Specification.new do |s|
|
|
135
141
|
|
136
142
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
137
143
|
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
|
138
|
-
s.add_runtime_dependency(%q<mongo>, ["= 0.15"])
|
144
|
+
s.add_runtime_dependency(%q<mongo>, ["= 0.15.1"])
|
139
145
|
s.add_runtime_dependency(%q<jnunemaker-validatable>, ["= 1.7.3"])
|
140
146
|
s.add_development_dependency(%q<mocha>, ["= 0.9.4"])
|
141
147
|
s.add_development_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
|
142
148
|
else
|
143
149
|
s.add_dependency(%q<activesupport>, [">= 0"])
|
144
|
-
s.add_dependency(%q<mongo>, ["= 0.15"])
|
150
|
+
s.add_dependency(%q<mongo>, ["= 0.15.1"])
|
145
151
|
s.add_dependency(%q<jnunemaker-validatable>, ["= 1.7.3"])
|
146
152
|
s.add_dependency(%q<mocha>, ["= 0.9.4"])
|
147
153
|
s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
|
148
154
|
end
|
149
155
|
else
|
150
156
|
s.add_dependency(%q<activesupport>, [">= 0"])
|
151
|
-
s.add_dependency(%q<mongo>, ["= 0.15"])
|
157
|
+
s.add_dependency(%q<mongo>, ["= 0.15.1"])
|
152
158
|
s.add_dependency(%q<jnunemaker-validatable>, ["= 1.7.3"])
|
153
159
|
s.add_dependency(%q<mocha>, ["= 0.9.4"])
|
154
160
|
s.add_dependency(%q<jnunemaker-matchy>, ["= 0.4.0"])
|
@@ -0,0 +1,138 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
require 'models'
|
3
|
+
|
4
|
+
class DirtyTest < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
@document = Class.new do
|
7
|
+
include MongoMapper::Document
|
8
|
+
set_collection_name 'test'
|
9
|
+
key :phrase, String
|
10
|
+
end
|
11
|
+
@document.collection.clear
|
12
|
+
|
13
|
+
Status.collection.clear
|
14
|
+
Project.collection.clear
|
15
|
+
end
|
16
|
+
|
17
|
+
context "marking changes" do
|
18
|
+
should "not happen if there are none" do
|
19
|
+
doc = @document.new
|
20
|
+
doc.phrase_changed?.should be_false
|
21
|
+
doc.phrase_change.should be_nil
|
22
|
+
end
|
23
|
+
|
24
|
+
should "happen when change happens" do
|
25
|
+
doc = @document.new
|
26
|
+
doc.phrase = 'Golly Gee Willikers Batman'
|
27
|
+
doc.phrase_changed?.should be_true
|
28
|
+
doc.phrase_was.should be_nil
|
29
|
+
doc.phrase_change.should == [nil, 'Golly Gee Willikers Batman']
|
30
|
+
end
|
31
|
+
|
32
|
+
should "clear changes on save" do
|
33
|
+
doc = @document.new
|
34
|
+
doc.phrase = 'Golly Gee Willikers Batman'
|
35
|
+
doc.phrase_changed?.should be_true
|
36
|
+
doc.save
|
37
|
+
doc.phrase_changed?.should_not be_true
|
38
|
+
doc.phrase_change.should be_nil
|
39
|
+
end
|
40
|
+
|
41
|
+
should "clear changes on save!" do
|
42
|
+
doc = @document.new
|
43
|
+
doc.phrase = 'Golly Gee Willikers Batman'
|
44
|
+
doc.phrase_changed?.should be_true
|
45
|
+
doc.save!
|
46
|
+
doc.phrase_changed?.should_not be_true
|
47
|
+
doc.phrase_change.should be_nil
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
context "blank new value and type integer" do
|
52
|
+
should "not mark changes" do
|
53
|
+
@document.key :age, Integer
|
54
|
+
|
55
|
+
[nil, ''].each do |value|
|
56
|
+
doc = @document.new
|
57
|
+
doc.age = value
|
58
|
+
doc.age_changed?.should be_false
|
59
|
+
doc.age_change.should be_nil
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
context "blank new value and type float" do
|
65
|
+
should "not mark changes" do
|
66
|
+
@document.key :amount, Float
|
67
|
+
|
68
|
+
[nil, ''].each do |value|
|
69
|
+
doc = @document.new
|
70
|
+
doc.amount = value
|
71
|
+
doc.amount_changed?.should be_false
|
72
|
+
doc.amount_change.should be_nil
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
context "changed?" do
|
78
|
+
should "be true if key changed" do
|
79
|
+
doc = @document.new
|
80
|
+
doc.phrase = 'A penny saved is a penny earned.'
|
81
|
+
doc.changed?.should be_true
|
82
|
+
end
|
83
|
+
|
84
|
+
should "be false if no keys changed" do
|
85
|
+
@document.new.changed?.should be_false
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
context "changes" do
|
90
|
+
should "be empty hash if no changes" do
|
91
|
+
@document.new.changes.should == {}
|
92
|
+
end
|
93
|
+
|
94
|
+
should "be hash of keys with values of changes if there are changes" do
|
95
|
+
doc = @document.new
|
96
|
+
doc.phrase = 'A penny saved is a penny earned.'
|
97
|
+
doc.changes.should == {'phrase' => [nil, 'A penny saved is a penny earned.']}
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
context "changed" do
|
102
|
+
should "be empty array if no changes" do
|
103
|
+
@document.new.changed.should == []
|
104
|
+
end
|
105
|
+
|
106
|
+
should "be array of keys that have changed if there are changes" do
|
107
|
+
doc = @document.new
|
108
|
+
doc.phrase = 'A penny saved is a penny earned.'
|
109
|
+
doc.changed.should == ['phrase']
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
context "will_change!" do
|
114
|
+
should "mark changes" do
|
115
|
+
doc = @document.create(:phrase => 'Foo')
|
116
|
+
|
117
|
+
doc.phrase << 'bar'
|
118
|
+
doc.phrase_changed?.should be_false
|
119
|
+
|
120
|
+
doc.phrase_will_change!
|
121
|
+
doc.phrase_changed?.should be_true
|
122
|
+
doc.phrase_change.should == ['Foobar', 'Foobar']
|
123
|
+
|
124
|
+
doc.phrase << '!'
|
125
|
+
doc.phrase_changed?.should be_true
|
126
|
+
doc.phrase_change.should == ['Foobar', 'Foobar!']
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
context "changing a foreign key through association" do
|
131
|
+
should "mark changes" do
|
132
|
+
status = Status.create(:name => 'Foo')
|
133
|
+
status.project = Project.create(:name => 'Bar')
|
134
|
+
status.changed?.should be_true
|
135
|
+
status.changed.should == %w(project_id)
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
@@ -75,53 +75,42 @@ class FinderOptionsTest < Test::Unit::TestCase
|
|
75
75
|
|
76
76
|
context "ordering" do
|
77
77
|
should "single field with ascending direction" do
|
78
|
-
|
79
|
-
|
80
|
-
FinderOptions.to_mongo_options(:order => 'foo
|
81
|
-
FinderOptions.to_mongo_options(:order => 'foo ASC')[:sort].should == hash
|
78
|
+
sort = [['foo', 1]]
|
79
|
+
FinderOptions.to_mongo_options(:order => 'foo asc')[:sort].should == sort
|
80
|
+
FinderOptions.to_mongo_options(:order => 'foo ASC')[:sort].should == sort
|
82
81
|
end
|
83
82
|
|
84
83
|
should "single field with descending direction" do
|
85
|
-
|
86
|
-
|
87
|
-
FinderOptions.to_mongo_options(:order => 'foo
|
88
|
-
FinderOptions.to_mongo_options(:order => 'foo DESC')[:sort].should == hash
|
84
|
+
sort = [['foo', -1]]
|
85
|
+
FinderOptions.to_mongo_options(:order => 'foo desc')[:sort].should == sort
|
86
|
+
FinderOptions.to_mongo_options(:order => 'foo DESC')[:sort].should == sort
|
89
87
|
end
|
90
88
|
|
91
89
|
should "convert field without direction to ascending" do
|
92
|
-
|
93
|
-
|
94
|
-
FinderOptions.to_mongo_options(:order => 'foo')[:sort].should == hash
|
90
|
+
sort = [['foo', 1]]
|
91
|
+
FinderOptions.to_mongo_options(:order => 'foo')[:sort].should == sort
|
95
92
|
end
|
96
93
|
|
97
94
|
should "convert multiple fields with directions" do
|
98
|
-
|
99
|
-
|
100
|
-
hash[:bar] = 1
|
101
|
-
hash[:baz] = -1
|
102
|
-
FinderOptions.to_mongo_options(:order => 'foo desc, bar asc, baz desc')[:sort].should == hash
|
95
|
+
sort = [['foo', -1], ['bar', 1], ['baz', -1]]
|
96
|
+
FinderOptions.to_mongo_options(:order => 'foo desc, bar asc, baz desc')[:sort].should == sort
|
103
97
|
end
|
104
98
|
|
105
99
|
should "convert multiple fields with some missing directions" do
|
106
|
-
|
107
|
-
|
108
|
-
hash[:bar] = 1
|
109
|
-
hash[:baz] = 1
|
110
|
-
FinderOptions.to_mongo_options(:order => 'foo desc, bar, baz')[:sort].should == hash
|
100
|
+
sort = [['foo', -1], ['bar', 1], ['baz', 1]]
|
101
|
+
FinderOptions.to_mongo_options(:order => 'foo desc, bar, baz')[:sort].should == sort
|
111
102
|
end
|
112
103
|
|
113
104
|
should "just use sort if sort and order are present" do
|
114
|
-
|
115
|
-
|
116
|
-
}
|
105
|
+
sort = [['$natural', 1]]
|
106
|
+
FinderOptions.to_mongo_options(:sort => sort, :order => 'foo asc')[:sort].should == sort
|
117
107
|
end
|
118
108
|
|
119
109
|
should "convert natural in order to proper" do
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
FinderOptions.to_mongo_options(:order => '$natural desc')[:sort].should == hash
|
110
|
+
sort = [['$natural', 1]]
|
111
|
+
FinderOptions.to_mongo_options(:order => '$natural asc')[:sort].should == sort
|
112
|
+
sort = [['$natural', -1]]
|
113
|
+
FinderOptions.to_mongo_options(:order => '$natural desc')[:sort].should == sort
|
125
114
|
end
|
126
115
|
|
127
116
|
should "work for natural order ascending" do
|
data/test/unit/test_key.rb
CHANGED
@@ -91,6 +91,15 @@ class KeyTest < Test::Unit::TestCase
|
|
91
91
|
should "know if it is not a embedded_document" do
|
92
92
|
Key.new(:name, String).embeddable?.should be_false
|
93
93
|
end
|
94
|
+
|
95
|
+
should "know if it is a number" do
|
96
|
+
Key.new(:age, Integer).number?.should be_true
|
97
|
+
Key.new(:age, Float).number?.should be_true
|
98
|
+
end
|
99
|
+
|
100
|
+
should "know if it is not a number" do
|
101
|
+
Key.new(:age, String).number?.should be_false
|
102
|
+
end
|
94
103
|
end
|
95
104
|
|
96
105
|
context "setting a value with a custom type" do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: djsun-mongo_mapper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Nunemaker
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-10-
|
12
|
+
date: 2009-10-09 00:00:00 -04:00
|
13
13
|
default_executable: mmconsole
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -30,7 +30,7 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 0.15.1
|
34
34
|
version:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
36
|
name: jnunemaker-validatable
|
@@ -78,6 +78,7 @@ files:
|
|
78
78
|
- Rakefile
|
79
79
|
- VERSION
|
80
80
|
- bin/mmconsole
|
81
|
+
- djsun-mongo_mapper.gemspec
|
81
82
|
- lib/mongo_mapper.rb
|
82
83
|
- lib/mongo_mapper/associations.rb
|
83
84
|
- lib/mongo_mapper/associations/base.rb
|
@@ -91,6 +92,7 @@ files:
|
|
91
92
|
- lib/mongo_mapper/associations/many_proxy.rb
|
92
93
|
- lib/mongo_mapper/associations/proxy.rb
|
93
94
|
- lib/mongo_mapper/callbacks.rb
|
95
|
+
- lib/mongo_mapper/dirty.rb
|
94
96
|
- lib/mongo_mapper/document.rb
|
95
97
|
- lib/mongo_mapper/dynamic_finder.rb
|
96
98
|
- lib/mongo_mapper/embedded_document.rb
|
@@ -119,6 +121,7 @@ files:
|
|
119
121
|
- test/functional/test_associations.rb
|
120
122
|
- test/functional/test_binary.rb
|
121
123
|
- test/functional/test_callbacks.rb
|
124
|
+
- test/functional/test_dirty.rb
|
122
125
|
- test/functional/test_document.rb
|
123
126
|
- test/functional/test_embedded_document.rb
|
124
127
|
- test/functional/test_logger.rb
|
@@ -182,6 +185,7 @@ test_files:
|
|
182
185
|
- test/functional/test_associations.rb
|
183
186
|
- test/functional/test_binary.rb
|
184
187
|
- test/functional/test_callbacks.rb
|
188
|
+
- test/functional/test_dirty.rb
|
185
189
|
- test/functional/test_document.rb
|
186
190
|
- test/functional/test_embedded_document.rb
|
187
191
|
- test/functional/test_logger.rb
|