deep_merge 0.1.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +34 -0
- data/README +95 -88
- data/Rakefile +19 -0
- data/VERSION +1 -0
- data/lib/deep_merge.rb +2 -206
- data/lib/deep_merge/core.rb +210 -0
- data/lib/deep_merge/deep_merge_hash.rb +28 -0
- data/lib/deep_merge/rails_compat.rb +27 -0
- data/test/test_deep_merge.rb +596 -553
- metadata +23 -14
@@ -0,0 +1,210 @@
|
|
1
|
+
module DeepMerge
|
2
|
+
|
3
|
+
class InvalidParameter < StandardError; end
|
4
|
+
|
5
|
+
DEFAULT_FIELD_KNOCKOUT_PREFIX = '--'
|
6
|
+
|
7
|
+
# Deep Merge core documentation.
|
8
|
+
# deep_merge! method permits merging of arbitrary child elements. The two top level
|
9
|
+
# elements must be hashes. These hashes can contain unlimited (to stack limit) levels
|
10
|
+
# of child elements. These child elements to not have to be of the same types.
|
11
|
+
# Where child elements are of the same type, deep_merge will attempt to merge them together.
|
12
|
+
# Where child elements are not of the same type, deep_merge will skip or optionally overwrite
|
13
|
+
# the destination element with the contents of the source element at that level.
|
14
|
+
# So if you have two hashes like this:
|
15
|
+
# source = {:x => [1,2,3], :y => 2}
|
16
|
+
# dest = {:x => [4,5,'6'], :y => [7,8,9]}
|
17
|
+
# dest.deep_merge!(source)
|
18
|
+
# Results: {:x => [1,2,3,4,5,'6'], :y => 2}
|
19
|
+
# By default, "deep_merge!" will overwrite any unmergeables and merge everything else.
|
20
|
+
# To avoid this, use "deep_merge" (no bang/exclamation mark)
|
21
|
+
#
|
22
|
+
# Options:
|
23
|
+
# Options are specified in the last parameter passed, which should be in hash format:
|
24
|
+
# hash.deep_merge!({:x => [1,2]}, {:knockout_prefix => '--'})
|
25
|
+
# :preserve_unmergeables DEFAULT: false
|
26
|
+
# Set to true to skip any unmergeable elements from source
|
27
|
+
# :knockout_prefix DEFAULT: nil
|
28
|
+
# Set to string value to signify prefix which deletes elements from existing element
|
29
|
+
# :sort_merged_arrays DEFAULT: false
|
30
|
+
# Set to true to sort all arrays that are merged together
|
31
|
+
# :unpack_arrays DEFAULT: nil
|
32
|
+
# Set to string value to run "Array::join" then "String::split" against all arrays
|
33
|
+
# :merge_hash_arrays DEFAULT: false
|
34
|
+
# Set to true to merge hashes within arrays
|
35
|
+
# :merge_debug DEFAULT: false
|
36
|
+
# Set to true to get console output of merge process for debugging
|
37
|
+
#
|
38
|
+
# Selected Options Details:
|
39
|
+
# :knockout_prefix => The purpose of this is to provide a way to remove elements
|
40
|
+
# from existing Hash by specifying them in a special way in incoming hash
|
41
|
+
# source = {:x => ['--1', '2']}
|
42
|
+
# dest = {:x => ['1', '3']}
|
43
|
+
# dest.ko_deep_merge!(source)
|
44
|
+
# Results: {:x => ['2','3']}
|
45
|
+
# Additionally, if the knockout_prefix is passed alone as a string, it will cause
|
46
|
+
# the entire element to be removed:
|
47
|
+
# source = {:x => '--'}
|
48
|
+
# dest = {:x => [1,2,3]}
|
49
|
+
# dest.ko_deep_merge!(source)
|
50
|
+
# Results: {:x => ""}
|
51
|
+
# :unpack_arrays => The purpose of this is to permit compound elements to be passed
|
52
|
+
# in as strings and to be converted into discrete array elements
|
53
|
+
# irsource = {:x => ['1,2,3', '4']}
|
54
|
+
# dest = {:x => ['5','6','7,8']}
|
55
|
+
# dest.deep_merge!(source, {:unpack_arrays => ','})
|
56
|
+
# Results: {:x => ['1','2','3','4','5','6','7','8'}
|
57
|
+
# Why: If receiving data from an HTML form, this makes it easy for a checkbox
|
58
|
+
# to pass multiple values from within a single HTML element
|
59
|
+
#
|
60
|
+
# :merge_hash_arrays => merge hashes within arrays
|
61
|
+
# source = {:x => [{:y => 1}]}
|
62
|
+
# dest = {:x => [{:z => 2}]}
|
63
|
+
# dest.deep_merge!(source, {:merge_hash_arrays => true})
|
64
|
+
# Results: {:x => [{:y => 1, :z => 2}]}
|
65
|
+
#
|
66
|
+
# There are many tests for this library - and you can learn more about the features
|
67
|
+
# and usages of deep_merge! by just browsing the test examples
|
68
|
+
def self.deep_merge!(source, dest, options = {})
|
69
|
+
# turn on this line for stdout debugging text
|
70
|
+
merge_debug = options[:merge_debug] || false
|
71
|
+
overwrite_unmergeable = !options[:preserve_unmergeables]
|
72
|
+
knockout_prefix = options[:knockout_prefix] || nil
|
73
|
+
raise InvalidParameter, "knockout_prefix cannot be an empty string in deep_merge!" if knockout_prefix == ""
|
74
|
+
raise InvalidParameter, "overwrite_unmergeable must be true if knockout_prefix is specified in deep_merge!" if knockout_prefix && !overwrite_unmergeable
|
75
|
+
# if present: we will split and join arrays on this char before merging
|
76
|
+
array_split_char = options[:unpack_arrays] || false
|
77
|
+
# request that we sort together any arrays when they are merged
|
78
|
+
sort_merged_arrays = options[:sort_merged_arrays] || false
|
79
|
+
# request that arrays of hashes are merged together
|
80
|
+
merge_hash_arrays = options[:merge_hash_arrays] || false
|
81
|
+
di = options[:debug_indent] || ''
|
82
|
+
# do nothing if source is nil
|
83
|
+
return dest if source.nil?
|
84
|
+
# if dest doesn't exist, then simply copy source to it
|
85
|
+
if !(dest) && overwrite_unmergeable
|
86
|
+
dest = source; return dest
|
87
|
+
end
|
88
|
+
|
89
|
+
puts "#{di}Source class: #{source.class.inspect} :: Dest class: #{dest.class.inspect}" if merge_debug
|
90
|
+
if source.kind_of?(Hash)
|
91
|
+
puts "#{di}Hashes: #{source.inspect} :: #{dest.inspect}" if merge_debug
|
92
|
+
source.each do |src_key, src_value|
|
93
|
+
if dest.kind_of?(Hash)
|
94
|
+
puts "#{di} looping: #{src_key.inspect} => #{src_value.inspect} :: #{dest.inspect}" if merge_debug
|
95
|
+
if dest[src_key]
|
96
|
+
puts "#{di} ==>merging: #{src_key.inspect} => #{src_value.inspect} :: #{dest[src_key].inspect}" if merge_debug
|
97
|
+
dest[src_key] = deep_merge!(src_value, dest[src_key], options.merge(:debug_indent => di + ' '))
|
98
|
+
else # dest[src_key] doesn't exist so we want to create and overwrite it (but we do this via deep_merge!)
|
99
|
+
puts "#{di} ==>merging over: #{src_key.inspect} => #{src_value.inspect}" if merge_debug
|
100
|
+
# note: we rescue here b/c some classes respond to "dup" but don't implement it (Numeric, TrueClass, FalseClass, NilClass among maybe others)
|
101
|
+
begin
|
102
|
+
src_dup = src_value.dup # we dup src_value if possible because we're going to merge into it (since dest is empty)
|
103
|
+
rescue TypeError
|
104
|
+
src_dup = src_value
|
105
|
+
end
|
106
|
+
dest[src_key] = deep_merge!(src_value, src_dup, options.merge(:debug_indent => di + ' '))
|
107
|
+
end
|
108
|
+
else # dest isn't a hash, so we overwrite it completely (if permitted)
|
109
|
+
if overwrite_unmergeable
|
110
|
+
puts "#{di} overwriting dest: #{src_key.inspect} => #{src_value.inspect} -over-> #{dest.inspect}" if merge_debug
|
111
|
+
dest = overwrite_unmergeables(source, dest, options)
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
elsif source.kind_of?(Array)
|
116
|
+
puts "#{di}Arrays: #{source.inspect} :: #{dest.inspect}" if merge_debug
|
117
|
+
# if we are instructed, join/split any source arrays before processing
|
118
|
+
if array_split_char
|
119
|
+
puts "#{di} split/join on source: #{source.inspect}" if merge_debug
|
120
|
+
source = source.join(array_split_char).split(array_split_char)
|
121
|
+
if dest.kind_of?(Array)
|
122
|
+
dest = dest.join(array_split_char).split(array_split_char)
|
123
|
+
end
|
124
|
+
end
|
125
|
+
# if there's a naked knockout_prefix in source, that means we are to truncate dest
|
126
|
+
if source.index(knockout_prefix)
|
127
|
+
dest = clear_or_nil(dest); source.delete(knockout_prefix)
|
128
|
+
end
|
129
|
+
if dest.kind_of?(Array)
|
130
|
+
if knockout_prefix
|
131
|
+
print "#{di} knocking out: " if merge_debug
|
132
|
+
# remove knockout prefix items from both source and dest
|
133
|
+
source.delete_if do |ko_item|
|
134
|
+
retval = false
|
135
|
+
item = ko_item.respond_to?(:gsub) ? ko_item.gsub(%r{^#{knockout_prefix}}, "") : ko_item
|
136
|
+
if item != ko_item
|
137
|
+
print "#{ko_item} - " if merge_debug
|
138
|
+
dest.delete(item)
|
139
|
+
dest.delete(ko_item)
|
140
|
+
retval = true
|
141
|
+
end
|
142
|
+
retval
|
143
|
+
end
|
144
|
+
puts if merge_debug
|
145
|
+
end
|
146
|
+
puts "#{di} merging arrays: #{source.inspect} :: #{dest.inspect}" if merge_debug
|
147
|
+
source_all_hashes = source.all? { |i| i.kind_of?(Hash) }
|
148
|
+
dest_all_hashes = dest.all? { |i| i.kind_of?(Hash) }
|
149
|
+
if merge_hash_arrays && source_all_hashes && dest_all_hashes
|
150
|
+
# merge hashes in lists
|
151
|
+
list = []
|
152
|
+
dest.each_index do |i|
|
153
|
+
list[i] = deep_merge!(source[i] || {}, dest[i],
|
154
|
+
options.merge(:debug_indent => di + ' '))
|
155
|
+
end
|
156
|
+
list += source[dest.count..-1] if source.count > dest.count
|
157
|
+
dest = list
|
158
|
+
else
|
159
|
+
dest = dest | source
|
160
|
+
end
|
161
|
+
dest.sort! if sort_merged_arrays
|
162
|
+
elsif overwrite_unmergeable
|
163
|
+
puts "#{di} overwriting dest: #{source.inspect} -over-> #{dest.inspect}" if merge_debug
|
164
|
+
dest = overwrite_unmergeables(source, dest, options)
|
165
|
+
end
|
166
|
+
else # src_hash is not an array or hash, so we'll have to overwrite dest
|
167
|
+
puts "#{di}Others: #{source.inspect} :: #{dest.inspect}" if merge_debug
|
168
|
+
dest = overwrite_unmergeables(source, dest, options)
|
169
|
+
end
|
170
|
+
puts "#{di}Returning #{dest.inspect}" if merge_debug
|
171
|
+
dest
|
172
|
+
end # deep_merge!
|
173
|
+
|
174
|
+
# allows deep_merge! to uniformly handle overwriting of unmergeable entities
|
175
|
+
def self.overwrite_unmergeables(source, dest, options)
|
176
|
+
merge_debug = options[:merge_debug] || false
|
177
|
+
overwrite_unmergeable = !options[:preserve_unmergeables]
|
178
|
+
knockout_prefix = options[:knockout_prefix] || false
|
179
|
+
di = options[:debug_indent] || ''
|
180
|
+
if knockout_prefix && overwrite_unmergeable
|
181
|
+
if source.kind_of?(String) # remove knockout string from source before overwriting dest
|
182
|
+
src_tmp = source.gsub(%r{^#{knockout_prefix}},"")
|
183
|
+
elsif source.kind_of?(Array) # remove all knockout elements before overwriting dest
|
184
|
+
src_tmp = source.delete_if {|ko_item| ko_item.kind_of?(String) && ko_item.match(%r{^#{knockout_prefix}}) }
|
185
|
+
else
|
186
|
+
src_tmp = source
|
187
|
+
end
|
188
|
+
if src_tmp == source # if we didn't find a knockout_prefix then we just overwrite dest
|
189
|
+
puts "#{di}#{src_tmp.inspect} -over-> #{dest.inspect}" if merge_debug
|
190
|
+
dest = src_tmp
|
191
|
+
else # if we do find a knockout_prefix, then we just delete dest
|
192
|
+
puts "#{di}\"\" -over-> #{dest.inspect}" if merge_debug
|
193
|
+
dest = ""
|
194
|
+
end
|
195
|
+
elsif overwrite_unmergeable
|
196
|
+
dest = source
|
197
|
+
end
|
198
|
+
dest
|
199
|
+
end
|
200
|
+
|
201
|
+
def self.clear_or_nil(obj)
|
202
|
+
if obj.respond_to?(:clear)
|
203
|
+
obj.clear
|
204
|
+
else
|
205
|
+
obj = nil
|
206
|
+
end
|
207
|
+
obj
|
208
|
+
end
|
209
|
+
|
210
|
+
end # module DeepMerge
|
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'deep_merge/core'
|
2
|
+
|
3
|
+
module DeepMerge
|
4
|
+
module DeepMergeHash
|
5
|
+
# ko_hash_merge! will merge and knockout elements prefixed with DEFAULT_FIELD_KNOCKOUT_PREFIX
|
6
|
+
def ko_deep_merge!(source, options = {})
|
7
|
+
default_opts = {:knockout_prefix => "--", :preserve_unmergeables => false}
|
8
|
+
DeepMerge::deep_merge!(source, self, default_opts.merge(options))
|
9
|
+
end
|
10
|
+
|
11
|
+
# deep_merge! will merge and overwrite any unmergeables in destination hash
|
12
|
+
def deep_merge!(source, options = {})
|
13
|
+
default_opts = {:preserve_unmergeables => false}
|
14
|
+
DeepMerge::deep_merge!(source, self, default_opts.merge(options))
|
15
|
+
end
|
16
|
+
|
17
|
+
# deep_merge will merge and skip any unmergeables in destination hash
|
18
|
+
def deep_merge(source, options = {})
|
19
|
+
default_opts = {:preserve_unmergeables => true}
|
20
|
+
DeepMerge::deep_merge!(source, self, default_opts.merge(options))
|
21
|
+
end
|
22
|
+
|
23
|
+
end # DeepMergeHashExt
|
24
|
+
end
|
25
|
+
|
26
|
+
class Hash
|
27
|
+
include DeepMerge::DeepMergeHash
|
28
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'deep_merge/core'
|
2
|
+
|
3
|
+
module DeepMerge
|
4
|
+
module RailsCompat
|
5
|
+
# ko_hash_merge! will merge and knockout elements prefixed with DEFAULT_FIELD_KNOCKOUT_PREFIX
|
6
|
+
def ko_deeper_merge!(source, options = {})
|
7
|
+
default_opts = {:knockout_prefix => "--", :preserve_unmergeables => false}
|
8
|
+
DeepMerge::deep_merge!(source, self, default_opts.merge(options))
|
9
|
+
end
|
10
|
+
|
11
|
+
# deep_merge! will merge and overwrite any unmergeables in destination hash
|
12
|
+
def deeper_merge!(source, options = {})
|
13
|
+
default_opts = {:preserve_unmergeables => false}
|
14
|
+
DeepMerge::deep_merge!(source, self, default_opts.merge(options))
|
15
|
+
end
|
16
|
+
|
17
|
+
# deep_merge will merge and skip any unmergeables in destination hash
|
18
|
+
def deeper_merge(source, options = {})
|
19
|
+
default_opts = {:preserve_unmergeables => true}
|
20
|
+
DeepMerge::deep_merge!(source, self, default_opts.merge(options))
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
class Hash
|
26
|
+
include ::DeepMerge::RailsCompat
|
27
|
+
end
|
data/test/test_deep_merge.rb
CHANGED
@@ -1,553 +1,596 @@
|
|
1
|
-
require 'test/unit'
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
hash_src = {'id' =>
|
27
|
-
hash_dest = {'id' => [1,2,3]}
|
28
|
-
assert hash_dest.
|
29
|
-
assert_equal({'id' => [1,2,3]}, hash_dest)
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
hash_src
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
hash_src
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
hash_src
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
hash_src
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
hash_src
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
hash_src
|
82
|
-
hash_dst
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
hash_src
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
hash_src
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
hash_src
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
hash_src
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
hash_src
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
hash_src
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
hash_src
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
hash_src
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
hash_src
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
hash_src
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
hash_src
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
hash_src
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
hash_src
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
hash_src
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
hash_src
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
hash_src
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
hash_src
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
hash_src
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
DeepMerge::deep_merge!(hash_src, hash_dst)
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
hash_dst
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
hash_src
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
hash_src
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
hash_params
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
hash_params
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
hash_params
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
hash_params
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
hash_params
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
hash_src = {"region"=>{"ids"=>["
|
298
|
-
hash_dst = {"region"=>{"ids"=>["227"
|
299
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
300
|
-
assert_equal({"region"=>{"ids"=>["227", "
|
301
|
-
|
302
|
-
hash_src = {"region"=>{"ids"=>["
|
303
|
-
hash_dst = {"region"=>{"ids"=>["227", "233", "324", "230", "230"], "id"=>"230"}}
|
304
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
305
|
-
assert_equal({"region"=>{"ids"=>["227"
|
306
|
-
|
307
|
-
hash_src = {"region"=>{"ids"=>["
|
308
|
-
hash_dst = {"region"=>{"ids"=>["227", "233", "324", "230", "230"], "id"=>"230"}}
|
309
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
310
|
-
assert_equal({"region"=>{"ids"=>["227", "232", "233"], "id"=>"232"}}, hash_dst)
|
311
|
-
|
312
|
-
hash_src = {"region"=>{"ids"=>["--,227"], "id"=>"
|
313
|
-
hash_dst = {"region"=>{"ids"=>["227", "233", "324", "230", "230"], "id"=>"230"}}
|
314
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
315
|
-
assert_equal({"region"=>{"ids"=>["227"], "id"=>"
|
316
|
-
|
317
|
-
hash_src = {"region"=>{"ids"=>["--,227"], "id"=>"
|
318
|
-
hash_dst = {"region"=>{"ids"=>["227", "233", "324", "230", "230"], "id"=>"230"}
|
319
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
320
|
-
assert_equal({"region"=>{"ids"=>["227"
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
hash_params
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
hash_params
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
hash_params
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
hash_params
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
hash_params
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
hash_params
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
hash_params
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
hash_params
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
hash_params
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
hash_params
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
hash_params
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
hash_params
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
hash_params
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
hash_params
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
hash_params
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
hash_params
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
hash_params
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
hash_params
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
hash_params
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
hash_params
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
hash_params
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
hash_params
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
hash_session
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
DeepMerge::deep_merge!(
|
500
|
-
assert_equal({
|
501
|
-
|
502
|
-
hash_src= {'region' =>{'ids'=>['--']}, 'query_uuid' => 'zzz'}
|
503
|
-
hash_dst= {'region' =>{'
|
504
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
505
|
-
assert_equal({'region' =>{'
|
506
|
-
|
507
|
-
hash_src= {'region' =>{'ids'=>['--']
|
508
|
-
hash_dst= {'region' =>{'
|
509
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
510
|
-
assert_equal({'region' =>{'
|
511
|
-
|
512
|
-
hash_src= {'region' =>{'ids'=>['--'
|
513
|
-
hash_dst= {'region' =>{'muni_city_id' => '2244', 'ids'=>['227','2','3','3'], 'id'=>'3'}, 'query_uuid' => 'zzz'}
|
514
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
515
|
-
assert_equal({'region' =>{'muni_city_id' => '2244', 'ids'=>[
|
516
|
-
|
517
|
-
hash_src= {'region' =>{'
|
518
|
-
hash_dst= {'region' =>{'muni_city_id' => '2244', 'ids'=>['227','2','3','3'], 'id'=>'3'}, 'query_uuid' => 'zzz'}
|
519
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
520
|
-
assert_equal({'region' =>{'muni_city_id' => '', 'ids'=>
|
521
|
-
|
522
|
-
hash_src= {'region' =>{'
|
523
|
-
hash_dst= {'region' =>{'muni_city_id' => '2244', 'ids'=>['227','2','3','3'], 'id'=>'3'}, 'query_uuid' => 'zzz'}
|
524
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
525
|
-
assert_equal({'region' =>{'muni_city_id' => '', 'ids'=>[], 'id'=>'5'}, 'query_uuid' => 'zzz'}, hash_dst)
|
526
|
-
|
527
|
-
hash_src= {'region' =>{'muni_city_id' => '--', 'ids'=>
|
528
|
-
hash_dst= {'region' =>{'muni_city_id' => '2244', 'ids'=>['227','2','3','3'], 'id'=>'3'}, 'query_uuid' => 'zzz'}
|
529
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
530
|
-
assert_equal({'region' =>{'muni_city_id' => '', 'ids'=>
|
531
|
-
|
532
|
-
hash_src
|
533
|
-
hash_dst
|
534
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
535
|
-
assert_equal({
|
536
|
-
|
537
|
-
hash_src
|
538
|
-
hash_dst
|
539
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
540
|
-
assert_equal({
|
541
|
-
|
542
|
-
hash_src = {"
|
543
|
-
hash_dst = {"
|
544
|
-
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
545
|
-
assert_equal({"
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
hash_dst
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
1
|
+
require 'test/unit'
|
2
|
+
|
3
|
+
$:.unshift(File.dirname(__FILE__) + '/../lib/')
|
4
|
+
require 'deep_merge'
|
5
|
+
|
6
|
+
# Assume strings have a blank? method
|
7
|
+
# as they do when ActiveSupport is included.
|
8
|
+
module StringBlank
|
9
|
+
def blank?
|
10
|
+
size == 0
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
class TestDeepMerge < Test::Unit::TestCase
|
15
|
+
|
16
|
+
def setup
|
17
|
+
end
|
18
|
+
|
19
|
+
# show that Hash object has deep merge capabilities in form of three methods:
|
20
|
+
# ko_deep_merge! # uses '--' knockout and overwrites unmergeable
|
21
|
+
# deep_merge! # overwrites unmergeable
|
22
|
+
# deep_merge # skips unmergeable
|
23
|
+
def test_hash_deep_merge
|
24
|
+
x = {}
|
25
|
+
assert x.respond_to?('deep_merge!'.to_sym)
|
26
|
+
hash_src = {'id' => [3,4,5]}
|
27
|
+
hash_dest = {'id' => [1,2,3]}
|
28
|
+
assert hash_dest.ko_deep_merge!(hash_src)
|
29
|
+
assert_equal({'id' => [1,2,3,4,5]}, hash_dest)
|
30
|
+
|
31
|
+
hash_src = {'id' => [3,4,5]}
|
32
|
+
hash_dest = {'id' => [1,2,3]}
|
33
|
+
assert hash_dest.deep_merge!(hash_src)
|
34
|
+
assert_equal({'id' => [1,2,3,4,5]}, hash_dest)
|
35
|
+
|
36
|
+
hash_src = {'id' => 'xxx'}
|
37
|
+
hash_dest = {'id' => [1,2,3]}
|
38
|
+
assert hash_dest.deep_merge(hash_src)
|
39
|
+
assert_equal({'id' => [1,2,3]}, hash_dest)
|
40
|
+
end
|
41
|
+
|
42
|
+
FIELD_KNOCKOUT_PREFIX = DeepMerge::DEFAULT_FIELD_KNOCKOUT_PREFIX
|
43
|
+
|
44
|
+
# tests DeepMerge::deep_merge! function
|
45
|
+
def test_deep_merge
|
46
|
+
# merge tests (moving from basic to more complex)
|
47
|
+
|
48
|
+
# test merging an hash w/array into blank hash
|
49
|
+
hash_src = {'id' => '2'}
|
50
|
+
hash_dst = {}
|
51
|
+
DeepMerge::deep_merge!(hash_src.dup, hash_dst, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
52
|
+
assert_equal hash_src, hash_dst
|
53
|
+
|
54
|
+
# test merging an hash w/array into blank hash
|
55
|
+
hash_src = {'region' => {'id' => ['227', '2']}}
|
56
|
+
hash_dst = {}
|
57
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
58
|
+
assert_equal hash_src, hash_dst
|
59
|
+
|
60
|
+
# merge from empty hash
|
61
|
+
hash_src = {}
|
62
|
+
hash_dst = {"property" => ["2","4"]}
|
63
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
64
|
+
assert_equal({"property" => ["2","4"]}, hash_dst)
|
65
|
+
|
66
|
+
# merge to empty hash
|
67
|
+
hash_src = {"property" => ["2","4"]}
|
68
|
+
hash_dst = {}
|
69
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
70
|
+
assert_equal({"property" => ["2","4"]}, hash_dst)
|
71
|
+
|
72
|
+
# simple string overwrite
|
73
|
+
hash_src = {"name" => "value"}
|
74
|
+
hash_dst = {"name" => "value1"}
|
75
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
76
|
+
assert_equal({"name" => "value"}, hash_dst)
|
77
|
+
|
78
|
+
# simple string overwrite of empty hash
|
79
|
+
hash_src = {"name" => "value"}
|
80
|
+
hash_dst = {}
|
81
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
82
|
+
assert_equal(hash_src, hash_dst)
|
83
|
+
|
84
|
+
# hashes holding array
|
85
|
+
hash_src = {"property" => ["1","3"]}
|
86
|
+
hash_dst = {"property" => ["2","4"]}
|
87
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
88
|
+
assert_equal(["2","4","1","3"], hash_dst['property'])
|
89
|
+
|
90
|
+
# hashes holding array (sorted)
|
91
|
+
hash_src = {"property" => ["1","3"]}
|
92
|
+
hash_dst = {"property" => ["2","4"]}
|
93
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:sort_merged_arrays => true})
|
94
|
+
assert_equal(["1","2","3","4"].sort, hash_dst['property'])
|
95
|
+
|
96
|
+
# hashes holding hashes holding arrays (array with duplicate elements is merged with dest then src
|
97
|
+
hash_src = {"property" => {"bedroom_count" => ["1", "2"], "bathroom_count" => ["1", "4+"]}}
|
98
|
+
hash_dst = {"property" => {"bedroom_count" => ["3", "2"], "bathroom_count" => ["2"]}}
|
99
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
100
|
+
assert_equal({"property" => {"bedroom_count" => ["3","2","1"], "bathroom_count" => ["2", "1", "4+"]}}, hash_dst)
|
101
|
+
|
102
|
+
# hash holding hash holding array v string (string is overwritten by array)
|
103
|
+
hash_src = {"property" => {"bedroom_count" => ["1", "2"], "bathroom_count" => ["1", "4+"]}}
|
104
|
+
hash_dst = {"property" => {"bedroom_count" => "3", "bathroom_count" => ["2"]}}
|
105
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
106
|
+
assert_equal({"property" => {"bedroom_count" => ["1", "2"], "bathroom_count" => ["2","1","4+"]}}, hash_dst)
|
107
|
+
|
108
|
+
# hash holding hash holding array v string (string is NOT overwritten by array)
|
109
|
+
hash_src = {"property" => {"bedroom_count" => ["1", "2"], "bathroom_count" => ["1", "4+"]}}
|
110
|
+
hash_dst = {"property" => {"bedroom_count" => "3", "bathroom_count" => ["2"]}}
|
111
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:preserve_unmergeables => true})
|
112
|
+
assert_equal({"property" => {"bedroom_count" => "3", "bathroom_count" => ["2","1","4+"]}}, hash_dst)
|
113
|
+
|
114
|
+
# hash holding hash holding string v array (array is overwritten by string)
|
115
|
+
hash_src = {"property" => {"bedroom_count" => "3", "bathroom_count" => ["1", "4+"]}}
|
116
|
+
hash_dst = {"property" => {"bedroom_count" => ["1", "2"], "bathroom_count" => ["2"]}}
|
117
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
118
|
+
assert_equal({"property" => {"bedroom_count" => "3", "bathroom_count" => ["2","1","4+"]}}, hash_dst)
|
119
|
+
|
120
|
+
# hash holding hash holding string v array (array does NOT overwrite string)
|
121
|
+
hash_src = {"property" => {"bedroom_count" => "3", "bathroom_count" => ["1", "4+"]}}
|
122
|
+
hash_dst = {"property" => {"bedroom_count" => ["1", "2"], "bathroom_count" => ["2"]}}
|
123
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:preserve_unmergeables => true})
|
124
|
+
assert_equal({"property" => {"bedroom_count" => ["1", "2"], "bathroom_count" => ["2","1","4+"]}}, hash_dst)
|
125
|
+
|
126
|
+
# hash holding hash holding hash v array (array is overwritten by hash)
|
127
|
+
hash_src = {"property" => {"bedroom_count" => {"king_bed" => 3, "queen_bed" => 1}, "bathroom_count" => ["1", "4+"]}}
|
128
|
+
hash_dst = {"property" => {"bedroom_count" => ["1", "2"], "bathroom_count" => ["2"]}}
|
129
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
130
|
+
assert_equal({"property" => {"bedroom_count" => {"king_bed" => 3, "queen_bed" => 1}, "bathroom_count" => ["2","1","4+"]}}, hash_dst)
|
131
|
+
|
132
|
+
# hash holding hash holding hash v array (array is NOT overwritten by hash)
|
133
|
+
hash_src = {"property" => {"bedroom_count" => {"king_bed" => 3, "queen_bed" => 1}, "bathroom_count" => ["1", "4+"]}}
|
134
|
+
hash_dst = {"property" => {"bedroom_count" => ["1", "2"], "bathroom_count" => ["2"]}}
|
135
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:preserve_unmergeables => true})
|
136
|
+
assert_equal({"property" => {"bedroom_count" => ["1", "2"], "bathroom_count" => ["2","1","4+"]}}, hash_dst)
|
137
|
+
|
138
|
+
# 3 hash layers holding integers (integers are overwritten by source)
|
139
|
+
hash_src = {"property" => {"bedroom_count" => {"king_bed" => 3, "queen_bed" => 1}, "bathroom_count" => ["1", "4+"]}}
|
140
|
+
hash_dst = {"property" => {"bedroom_count" => {"king_bed" => 2, "queen_bed" => 4}, "bathroom_count" => ["2"]}}
|
141
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
142
|
+
assert_equal({"property" => {"bedroom_count" => {"king_bed" => 3, "queen_bed" => 1}, "bathroom_count" => ["2","1","4+"]}}, hash_dst)
|
143
|
+
|
144
|
+
# 3 hash layers holding arrays of int (arrays are merged)
|
145
|
+
hash_src = {"property" => {"bedroom_count" => {"king_bed" => [3], "queen_bed" => [1]}, "bathroom_count" => ["1", "4+"]}}
|
146
|
+
hash_dst = {"property" => {"bedroom_count" => {"king_bed" => [2], "queen_bed" => [4]}, "bathroom_count" => ["2"]}}
|
147
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
148
|
+
assert_equal({"property" => {"bedroom_count" => {"king_bed" => [2,3], "queen_bed" => [4,1]}, "bathroom_count" => ["2","1","4+"]}}, hash_dst)
|
149
|
+
|
150
|
+
# 1 hash overwriting 3 hash layers holding arrays of int
|
151
|
+
hash_src = {"property" => "1"}
|
152
|
+
hash_dst = {"property" => {"bedroom_count" => {"king_bed" => [2], "queen_bed" => [4]}, "bathroom_count" => ["2"]}}
|
153
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
154
|
+
assert_equal({"property" => "1"}, hash_dst)
|
155
|
+
|
156
|
+
# 1 hash NOT overwriting 3 hash layers holding arrays of int
|
157
|
+
hash_src = {"property" => "1"}
|
158
|
+
hash_dst = {"property" => {"bedroom_count" => {"king_bed" => [2], "queen_bed" => [4]}, "bathroom_count" => ["2"]}}
|
159
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:preserve_unmergeables => true})
|
160
|
+
assert_equal({"property" => {"bedroom_count" => {"king_bed" => [2], "queen_bed" => [4]}, "bathroom_count" => ["2"]}}, hash_dst)
|
161
|
+
|
162
|
+
# 3 hash layers holding arrays of int (arrays are merged) but second hash's array is overwritten
|
163
|
+
hash_src = {"property" => {"bedroom_count" => {"king_bed" => [3], "queen_bed" => [1]}, "bathroom_count" => "1"}}
|
164
|
+
hash_dst = {"property" => {"bedroom_count" => {"king_bed" => [2], "queen_bed" => [4]}, "bathroom_count" => ["2"]}}
|
165
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
166
|
+
assert_equal({"property" => {"bedroom_count" => {"king_bed" => [2,3], "queen_bed" => [4,1]}, "bathroom_count" => "1"}}, hash_dst)
|
167
|
+
|
168
|
+
# 3 hash layers holding arrays of int (arrays are merged) but second hash's array is NOT overwritten
|
169
|
+
hash_src = {"property" => {"bedroom_count" => {"king_bed" => [3], "queen_bed" => [1]}, "bathroom_count" => "1"}}
|
170
|
+
hash_dst = {"property" => {"bedroom_count" => {"king_bed" => [2], "queen_bed" => [4]}, "bathroom_count" => ["2"]}}
|
171
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:preserve_unmergeables => true})
|
172
|
+
assert_equal({"property" => {"bedroom_count" => {"king_bed" => [2,3], "queen_bed" => [4,1]}, "bathroom_count" => ["2"]}}, hash_dst)
|
173
|
+
|
174
|
+
# 3 hash layers holding arrays of int, but one holds int. This one overwrites, but the rest merge
|
175
|
+
hash_src = {"property" => {"bedroom_count" => {"king_bed" => 3, "queen_bed" => [1]}, "bathroom_count" => ["1"]}}
|
176
|
+
hash_dst = {"property" => {"bedroom_count" => {"king_bed" => [2], "queen_bed" => [4]}, "bathroom_count" => ["2"]}}
|
177
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
178
|
+
assert_equal({"property" => {"bedroom_count" => {"king_bed" => 3, "queen_bed" => [4,1]}, "bathroom_count" => ["2","1"]}}, hash_dst)
|
179
|
+
|
180
|
+
# 3 hash layers holding arrays of int, but source is incomplete.
|
181
|
+
hash_src = {"property" => {"bedroom_count" => {"king_bed" => [3]}, "bathroom_count" => ["1"]}}
|
182
|
+
hash_dst = {"property" => {"bedroom_count" => {"king_bed" => [2], "queen_bed" => [4]}, "bathroom_count" => ["2"]}}
|
183
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
184
|
+
assert_equal({"property" => {"bedroom_count" => {"king_bed" => [2,3], "queen_bed" => [4]}, "bathroom_count" => ["2","1"]}}, hash_dst)
|
185
|
+
|
186
|
+
# 3 hash layers holding arrays of int, but source is shorter and has new 2nd level ints.
|
187
|
+
hash_src = {"property" => {"bedroom_count" => {2=>3, "king_bed" => [3]}, "bathroom_count" => ["1"]}}
|
188
|
+
hash_dst = {"property" => {"bedroom_count" => {"king_bed" => [2], "queen_bed" => [4]}, "bathroom_count" => ["2"]}}
|
189
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
190
|
+
assert_equal({"property" => {"bedroom_count" => {2=>3, "king_bed" => [2,3], "queen_bed" => [4]}, "bathroom_count" => ["2","1"]}}, hash_dst)
|
191
|
+
|
192
|
+
# 3 hash layers holding arrays of int, but source is empty
|
193
|
+
hash_src = {}
|
194
|
+
hash_dst = {"property" => {"bedroom_count" => {"king_bed" => [2], "queen_bed" => [4]}, "bathroom_count" => ["2"]}}
|
195
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
196
|
+
assert_equal({"property" => {"bedroom_count" => {"king_bed" => [2], "queen_bed" => [4]}, "bathroom_count" => ["2"]}}, hash_dst)
|
197
|
+
|
198
|
+
# 3 hash layers holding arrays of int, but dest is empty
|
199
|
+
hash_src = {"property" => {"bedroom_count" => {2=>3, "king_bed" => [3]}, "bathroom_count" => ["1"]}}
|
200
|
+
hash_dst = {}
|
201
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
202
|
+
assert_equal({"property" => {"bedroom_count" => {2=>3, "king_bed" => [3]}, "bathroom_count" => ["1"]}}, hash_dst)
|
203
|
+
|
204
|
+
# test parameter management for knockout_prefix and overwrite unmergable
|
205
|
+
assert_raise(DeepMerge::InvalidParameter) {DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => ""})}
|
206
|
+
assert_raise(DeepMerge::InvalidParameter) {DeepMerge::deep_merge!(hash_src, hash_dst, {:preserve_unmergeables => true, :knockout_prefix => ""})}
|
207
|
+
assert_raise(DeepMerge::InvalidParameter) {DeepMerge::deep_merge!(hash_src, hash_dst, {:preserve_unmergeables => true, :knockout_prefix => "--"})}
|
208
|
+
assert_nothing_raised(DeepMerge::InvalidParameter) {DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => "--"})}
|
209
|
+
assert_nothing_raised(DeepMerge::InvalidParameter) {DeepMerge::deep_merge!(hash_src, hash_dst)}
|
210
|
+
assert_nothing_raised(DeepMerge::InvalidParameter) {DeepMerge::deep_merge!(hash_src, hash_dst, {:preserve_unmergeables => true})}
|
211
|
+
|
212
|
+
# hash holding arrays of arrays
|
213
|
+
hash_src = {["1", "2", "3"] => ["1", "2"]}
|
214
|
+
hash_dst = {["4", "5"] => ["3"]}
|
215
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
216
|
+
assert_equal({["1","2","3"] => ["1", "2"], ["4", "5"] => ["3"]}, hash_dst)
|
217
|
+
|
218
|
+
# test merging of hash with blank hash, and make sure that source array split still functions
|
219
|
+
hash_src = {'property' => {'bedroom_count' => ["1","2,3"]}}
|
220
|
+
hash_dst = {}
|
221
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
222
|
+
assert_equal({'property' => {'bedroom_count' => ["1","2","3"]}}, hash_dst)
|
223
|
+
|
224
|
+
# test merging of hash with blank hash, and make sure that source array split does not function when turned off
|
225
|
+
hash_src = {'property' => {'bedroom_count' => ["1","2,3"]}}
|
226
|
+
hash_dst = {}
|
227
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX})
|
228
|
+
assert_equal({'property' => {'bedroom_count' => ["1","2,3"]}}, hash_dst)
|
229
|
+
|
230
|
+
# test merging into a blank hash with overwrite_unmergeables turned on
|
231
|
+
hash_src = {"action"=>"browse", "controller"=>"results"}
|
232
|
+
hash_dst = {}
|
233
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
234
|
+
assert_equal hash_src, hash_dst
|
235
|
+
|
236
|
+
# KNOCKOUT_PREFIX testing
|
237
|
+
# the next few tests are looking for correct behavior from specific real-world params/session merges
|
238
|
+
# using the custom modifiers built for param/session merges
|
239
|
+
|
240
|
+
[nil, ","].each do |ko_split|
|
241
|
+
# typical params/session style hash with knockout_merge elements
|
242
|
+
hash_params = {"property"=>{"bedroom_count"=>[FIELD_KNOCKOUT_PREFIX+"1", "2", "3"]}}
|
243
|
+
hash_session = {"property"=>{"bedroom_count"=>["1", "2", "3"]}}
|
244
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ko_split})
|
245
|
+
assert_equal({"property"=>{"bedroom_count"=>["2", "3"]}}, hash_session)
|
246
|
+
|
247
|
+
# typical params/session style hash with knockout_merge elements
|
248
|
+
hash_params = {"property"=>{"bedroom_count"=>[FIELD_KNOCKOUT_PREFIX+"1", "2", "3"]}}
|
249
|
+
hash_session = {"property"=>{"bedroom_count"=>["3"]}}
|
250
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ko_split})
|
251
|
+
assert_equal({"property"=>{"bedroom_count"=>["3","2"]}}, hash_session)
|
252
|
+
|
253
|
+
# typical params/session style hash with knockout_merge elements
|
254
|
+
hash_params = {"property"=>{"bedroom_count"=>[FIELD_KNOCKOUT_PREFIX+"1", "2", "3"]}}
|
255
|
+
hash_session = {"property"=>{"bedroom_count"=>["4"]}}
|
256
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ko_split})
|
257
|
+
assert_equal({"property"=>{"bedroom_count"=>["4","2","3"]}}, hash_session)
|
258
|
+
|
259
|
+
# typical params/session style hash with knockout_merge elements
|
260
|
+
hash_params = {"property"=>{"bedroom_count"=>[FIELD_KNOCKOUT_PREFIX+"1", "2", "3"]}}
|
261
|
+
hash_session = {"property"=>{"bedroom_count"=>[FIELD_KNOCKOUT_PREFIX+"1", "4"]}}
|
262
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ko_split})
|
263
|
+
assert_equal({"property"=>{"bedroom_count"=>["4","2","3"]}}, hash_session)
|
264
|
+
|
265
|
+
# typical params/session style hash with knockout_merge elements
|
266
|
+
hash_params = {"amenity"=>{"id"=>[FIELD_KNOCKOUT_PREFIX+"1", FIELD_KNOCKOUT_PREFIX+"2", "3", "4"]}}
|
267
|
+
hash_session = {"amenity"=>{"id"=>["1", "2"]}}
|
268
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ko_split})
|
269
|
+
assert_equal({"amenity"=>{"id"=>["3","4"]}}, hash_session)
|
270
|
+
end
|
271
|
+
|
272
|
+
# special params/session style hash with knockout_merge elements in form src: ["1","2"] dest:["--1,--2", "3,4"]
|
273
|
+
hash_params = {"amenity"=>{"id"=>[FIELD_KNOCKOUT_PREFIX+"1,"+FIELD_KNOCKOUT_PREFIX+"2", "3,4"]}}
|
274
|
+
hash_session = {"amenity"=>{"id"=>["1", "2"]}}
|
275
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
276
|
+
assert_equal({"amenity"=>{"id"=>["3","4"]}}, hash_session)
|
277
|
+
|
278
|
+
# same as previous but without ko_split value, this merge should fail
|
279
|
+
hash_params = {"amenity"=>{"id"=>[FIELD_KNOCKOUT_PREFIX+"1,"+FIELD_KNOCKOUT_PREFIX+"2", "3,4"]}}
|
280
|
+
hash_session = {"amenity"=>{"id"=>["1", "2"]}}
|
281
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX})
|
282
|
+
assert_equal({"amenity"=>{"id"=>["1","2","3,4"]}}, hash_session)
|
283
|
+
|
284
|
+
# special params/session style hash with knockout_merge elements in form src: ["1","2"] dest:["--1,--2", "3,4"]
|
285
|
+
hash_params = {"amenity"=>{"id"=>[FIELD_KNOCKOUT_PREFIX+"1,2", "3,4", "--5", "6"]}}
|
286
|
+
hash_session = {"amenity"=>{"id"=>["1", "2"]}}
|
287
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
288
|
+
assert_equal({"amenity"=>{"id"=>["2","3","4","6"]}}, hash_session)
|
289
|
+
|
290
|
+
# special params/session style hash with knockout_merge elements in form src: ["--1,--2", "3,4", "--5", "6"] dest:["1,2", "3,4"]
|
291
|
+
hash_params = {"amenity"=>{"id"=>["#{FIELD_KNOCKOUT_PREFIX}1,#{FIELD_KNOCKOUT_PREFIX}2", "3,4", "#{FIELD_KNOCKOUT_PREFIX}5", "6"]}}
|
292
|
+
hash_session = {"amenity"=>{"id"=>["1", "2", "3", "4"]}}
|
293
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
294
|
+
assert_equal({"amenity"=>{"id"=>["3","4","6"]}}, hash_session)
|
295
|
+
|
296
|
+
|
297
|
+
hash_src = {"url_regions"=>[], "region"=>{"ids"=>["227,233"]}, "action"=>"browse", "task"=>"browse", "controller"=>"results"}
|
298
|
+
hash_dst = {"region"=>{"ids"=>["227"]}}
|
299
|
+
DeepMerge::deep_merge!(hash_src.dup, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
300
|
+
assert_equal({"url_regions"=>[], "region"=>{"ids"=>["227","233"]}, "action"=>"browse", "task"=>"browse", "controller"=>"results"}, hash_dst)
|
301
|
+
|
302
|
+
hash_src = {"region"=>{"ids"=>["--","227"], "id"=>"230"}}
|
303
|
+
hash_dst = {"region"=>{"ids"=>["227", "233", "324", "230", "230"], "id"=>"230"}}
|
304
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
305
|
+
assert_equal({"region"=>{"ids"=>["227"], "id"=>"230"}}, hash_dst)
|
306
|
+
|
307
|
+
hash_src = {"region"=>{"ids"=>["--","227", "232", "233"], "id"=>"232"}}
|
308
|
+
hash_dst = {"region"=>{"ids"=>["227", "233", "324", "230", "230"], "id"=>"230"}}
|
309
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
310
|
+
assert_equal({"region"=>{"ids"=>["227", "232", "233"], "id"=>"232"}}, hash_dst)
|
311
|
+
|
312
|
+
hash_src = {"region"=>{"ids"=>["--,227,232,233"], "id"=>"232"}}
|
313
|
+
hash_dst = {"region"=>{"ids"=>["227", "233", "324", "230", "230"], "id"=>"230"}}
|
314
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
315
|
+
assert_equal({"region"=>{"ids"=>["227", "232", "233"], "id"=>"232"}}, hash_dst)
|
316
|
+
|
317
|
+
hash_src = {"region"=>{"ids"=>["--,227,232","233"], "id"=>"232"}}
|
318
|
+
hash_dst = {"region"=>{"ids"=>["227", "233", "324", "230", "230"], "id"=>"230"}}
|
319
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
320
|
+
assert_equal({"region"=>{"ids"=>["227", "232", "233"], "id"=>"232"}}, hash_dst)
|
321
|
+
|
322
|
+
hash_src = {"region"=>{"ids"=>["--,227"], "id"=>"230"}}
|
323
|
+
hash_dst = {"region"=>{"ids"=>["227", "233", "324", "230", "230"], "id"=>"230"}}
|
324
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
325
|
+
assert_equal({"region"=>{"ids"=>["227"], "id"=>"230"}}, hash_dst)
|
326
|
+
|
327
|
+
hash_src = {"region"=>{"ids"=>["--,227"], "id"=>"230"}}
|
328
|
+
hash_dst = {"region"=>{"ids"=>["227", "233", "324", "230", "230"], "id"=>"230"}, "action"=>"browse", "task"=>"browse", "controller"=>"results", "property_order_by"=>"property_type.descr"}
|
329
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
330
|
+
assert_equal({"region"=>{"ids"=>["227"], "id"=>"230"}, "action"=>"browse", "task"=>"browse",
|
331
|
+
"controller"=>"results", "property_order_by"=>"property_type.descr"}, hash_dst)
|
332
|
+
|
333
|
+
hash_src = {"query_uuid"=>"6386333d-389b-ab5c-8943-6f3a2aa914d7", "region"=>{"ids"=>["--,227"], "id"=>"230"}}
|
334
|
+
hash_dst = {"query_uuid"=>"6386333d-389b-ab5c-8943-6f3a2aa914d7", "url_regions"=>[], "region"=>{"ids"=>["227", "233", "324", "230", "230"], "id"=>"230"}, "action"=>"browse", "task"=>"browse", "controller"=>"results", "property_order_by"=>"property_type.descr"}
|
335
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:overwrite_unmergeables => true, :knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
336
|
+
assert_equal({"query_uuid" => "6386333d-389b-ab5c-8943-6f3a2aa914d7", "url_regions"=>[],
|
337
|
+
"region"=>{"ids"=>["227"], "id"=>"230"}, "action"=>"browse", "task"=>"browse",
|
338
|
+
"controller"=>"results", "property_order_by"=>"property_type.descr"}, hash_dst)
|
339
|
+
|
340
|
+
# knock out entire dest hash if "--" is passed for source
|
341
|
+
hash_params = {'amenity' => "--"}
|
342
|
+
hash_session = {"amenity" => "1"}
|
343
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => "--", :unpack_arrays => ","})
|
344
|
+
assert_equal({'amenity' => ""}, hash_session)
|
345
|
+
|
346
|
+
# knock out entire dest hash if "--" is passed for source
|
347
|
+
hash_params = {'amenity' => ["--"]}
|
348
|
+
hash_session = {"amenity" => "1"}
|
349
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => "--", :unpack_arrays => ","})
|
350
|
+
assert_equal({'amenity' => []}, hash_session)
|
351
|
+
|
352
|
+
# knock out entire dest hash if "--" is passed for source
|
353
|
+
hash_params = {'amenity' => "--"}
|
354
|
+
hash_session = {"amenity" => ["1"]}
|
355
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => "--", :unpack_arrays => ","})
|
356
|
+
assert_equal({'amenity' => ""}, hash_session)
|
357
|
+
|
358
|
+
# knock out entire dest hash if "--" is passed for source
|
359
|
+
hash_params = {'amenity' => ["--"]}
|
360
|
+
hash_session = {"amenity" => ["1"]}
|
361
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => "--", :unpack_arrays => ","})
|
362
|
+
assert_equal({'amenity' => []}, hash_session)
|
363
|
+
|
364
|
+
# knock out entire dest hash if "--" is passed for source
|
365
|
+
hash_params = {'amenity' => ["--"]}
|
366
|
+
hash_session = {"amenity" => "1"}
|
367
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => "--", :unpack_arrays => ","})
|
368
|
+
assert_equal({'amenity' => []}, hash_session)
|
369
|
+
|
370
|
+
# knock out entire dest hash if "--" is passed for source
|
371
|
+
hash_params = {'amenity' => ["--", "2"]}
|
372
|
+
hash_session = {'amenity' => ["1", "3", "7+"]}
|
373
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => "--", :unpack_arrays => ","})
|
374
|
+
assert_equal({'amenity' => ["2"]}, hash_session)
|
375
|
+
|
376
|
+
# knock out entire dest hash if "--" is passed for source
|
377
|
+
hash_params = {'amenity' => ["--", "2"]}
|
378
|
+
hash_session = {'amenity' => "5"}
|
379
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => "--", :unpack_arrays => ","})
|
380
|
+
assert_equal({'amenity' => ['2']}, hash_session)
|
381
|
+
|
382
|
+
# knock out entire dest hash if "--" is passed for source
|
383
|
+
hash_params = {'amenity' => "--"}
|
384
|
+
hash_session = {"amenity"=>{"id"=>["1", "2", "3", "4"]}}
|
385
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => "--", :unpack_arrays => ","})
|
386
|
+
assert_equal({'amenity' => ""}, hash_session)
|
387
|
+
|
388
|
+
# knock out entire dest hash if "--" is passed for source
|
389
|
+
hash_params = {'amenity' => ["--"]}
|
390
|
+
hash_session = {"amenity"=>{"id"=>["1", "2", "3", "4"]}}
|
391
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => "--", :unpack_arrays => ","})
|
392
|
+
assert_equal({'amenity' => []}, hash_session)
|
393
|
+
|
394
|
+
# knock out dest array if "--" is passed for source
|
395
|
+
hash_params = {"region" => {'ids' => FIELD_KNOCKOUT_PREFIX}}
|
396
|
+
hash_session = {"region"=>{"ids"=>["1", "2", "3", "4"]}}
|
397
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
398
|
+
assert_equal({'region' => {'ids' => ""}}, hash_session)
|
399
|
+
|
400
|
+
# knock out dest array but leave other elements of hash intact
|
401
|
+
hash_params = {"region" => {'ids' => FIELD_KNOCKOUT_PREFIX}}
|
402
|
+
hash_session = {"region"=>{"ids"=>["1", "2", "3", "4"], 'id'=>'11'}}
|
403
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
404
|
+
assert_equal({'region' => {'ids' => "", 'id'=>'11'}}, hash_session)
|
405
|
+
|
406
|
+
# knock out entire tree of dest hash
|
407
|
+
hash_params = {"region" => FIELD_KNOCKOUT_PREFIX}
|
408
|
+
hash_session = {"region"=>{"ids"=>["1", "2", "3", "4"], 'id'=>'11'}}
|
409
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
410
|
+
assert_equal({'region' => ""}, hash_session)
|
411
|
+
|
412
|
+
# knock out entire tree of dest hash - retaining array format
|
413
|
+
hash_params = {"region" => {'ids' => [FIELD_KNOCKOUT_PREFIX]}}
|
414
|
+
hash_session = {"region"=>{"ids"=>["1", "2", "3", "4"], 'id'=>'11'}}
|
415
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
416
|
+
assert_equal({'region' => {'ids' => [], 'id'=>'11'}}, hash_session)
|
417
|
+
|
418
|
+
# knock out entire tree of dest hash & replace with new content
|
419
|
+
hash_params = {"region" => {'ids' => ["2", FIELD_KNOCKOUT_PREFIX, "6"]}}
|
420
|
+
hash_session = {"region"=>{"ids"=>["1", "2", "3", "4"], 'id'=>'11'}}
|
421
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
422
|
+
assert_equal({'region' => {'ids' => ["2", "6"], 'id'=>'11'}}, hash_session)
|
423
|
+
|
424
|
+
# knock out entire tree of dest hash & replace with new content
|
425
|
+
hash_params = {"region" => {'ids' => ["7", FIELD_KNOCKOUT_PREFIX, "6"]}}
|
426
|
+
hash_session = {"region"=>{"ids"=>["1", "2", "3", "4"], 'id'=>'11'}}
|
427
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
428
|
+
assert_equal({'region' => {'ids' => ["7", "6"], 'id'=>'11'}}, hash_session)
|
429
|
+
|
430
|
+
# edge test: make sure that when we turn off knockout_prefix that all values are processed correctly
|
431
|
+
hash_params = {"region" => {'ids' => ["7", "--", "2", "6,8"]}}
|
432
|
+
hash_session = {"region"=>{"ids"=>["1", "2", "3", "4"], 'id'=>'11'}}
|
433
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:unpack_arrays => ","})
|
434
|
+
assert_equal({'region' => {'ids' => ["1", "2", "3", "4", "7", "--", "6", "8"], 'id'=>'11'}}, hash_session)
|
435
|
+
|
436
|
+
# edge test 2: make sure that when we turn off source array split that all values are processed correctly
|
437
|
+
hash_params = {"region" => {'ids' => ["7", "3", "--", "6,8"]}}
|
438
|
+
hash_session = {"region"=>{"ids"=>["1", "2", "3", "4"], 'id'=>'11'}}
|
439
|
+
DeepMerge::deep_merge!(hash_params, hash_session)
|
440
|
+
assert_equal({'region' => {'ids' => ["1", "2", "3", "4", "7", "--", "6,8"], 'id'=>'11'}}, hash_session)
|
441
|
+
|
442
|
+
# Example: src = {'key' => "--1"}, dst = {'key' => "1"} -> merges to {'key' => ""}
|
443
|
+
hash_params = {"amenity"=>"--1"}
|
444
|
+
hash_session = {"amenity"=>"1"}
|
445
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX})
|
446
|
+
assert_equal({"amenity"=>""}, hash_session)
|
447
|
+
|
448
|
+
# Example: src = {'key' => "--1"}, dst = {'key' => "2"} -> merges to {'key' => ""}
|
449
|
+
hash_params = {"amenity"=>"--1"}
|
450
|
+
hash_session = {"amenity"=>"2"}
|
451
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX})
|
452
|
+
assert_equal({"amenity"=>""}, hash_session)
|
453
|
+
|
454
|
+
# Example: src = {'key' => "--1"}, dst = {'key' => "1"} -> merges to {'key' => ""}
|
455
|
+
hash_params = {"amenity"=>["--1"]}
|
456
|
+
hash_session = {"amenity"=>"1"}
|
457
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX})
|
458
|
+
assert_equal({"amenity"=>[]}, hash_session)
|
459
|
+
|
460
|
+
# Example: src = {'key' => "--1"}, dst = {'key' => "1"} -> merges to {'key' => ""}
|
461
|
+
hash_params = {"amenity"=>["--1"]}
|
462
|
+
hash_session = {"amenity"=>["1"]}
|
463
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX})
|
464
|
+
assert_equal({"amenity"=>[]}, hash_session)
|
465
|
+
|
466
|
+
# Example: src = {'key' => "--1"}, dst = {'key' => "1"} -> merges to {'key' => ""}
|
467
|
+
hash_params = {"amenity"=>"--1"}
|
468
|
+
hash_session = {}
|
469
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX})
|
470
|
+
assert_equal({"amenity"=>""}, hash_session)
|
471
|
+
|
472
|
+
|
473
|
+
# Example: src = {'key' => "--1"}, dst = {'key' => "1"} -> merges to {'key' => ""}
|
474
|
+
hash_params = {"amenity"=>"--1"}
|
475
|
+
hash_session = {"amenity"=>["1"]}
|
476
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX})
|
477
|
+
assert_equal({"amenity"=>""}, hash_session)
|
478
|
+
|
479
|
+
#are unmerged hashes passed unmodified w/out :unpack_arrays?
|
480
|
+
hash_params = {"amenity"=>{"id"=>["26,27"]}}
|
481
|
+
hash_session = {}
|
482
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX})
|
483
|
+
assert_equal({"amenity"=>{"id"=>["26,27"]}}, hash_session)
|
484
|
+
|
485
|
+
#hash should be merged
|
486
|
+
hash_params = {"amenity"=>{"id"=>["26,27"]}}
|
487
|
+
hash_session = {}
|
488
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
489
|
+
assert_equal({"amenity"=>{"id"=>["26","27"]}}, hash_session)
|
490
|
+
|
491
|
+
# second merge of same values should result in no change in output
|
492
|
+
hash_params = {"amenity"=>{"id"=>["26,27"]}}
|
493
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
494
|
+
assert_equal({"amenity"=>{"id"=>["26","27"]}}, hash_session)
|
495
|
+
|
496
|
+
#hashes with knockout values are suppressed
|
497
|
+
hash_params = {"amenity"=>{"id"=>["#{FIELD_KNOCKOUT_PREFIX}26,#{FIELD_KNOCKOUT_PREFIX}27,28"]}}
|
498
|
+
hash_session = {}
|
499
|
+
DeepMerge::deep_merge!(hash_params, hash_session, {:knockout_prefix => FIELD_KNOCKOUT_PREFIX, :unpack_arrays => ","})
|
500
|
+
assert_equal({"amenity"=>{"id"=>["28"]}}, hash_session)
|
501
|
+
|
502
|
+
hash_src= {'region' =>{'ids'=>['--']}, 'query_uuid' => 'zzz'}
|
503
|
+
hash_dst= {'region' =>{'ids'=>['227','2','3','3']}, 'query_uuid' => 'zzz'}
|
504
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
505
|
+
assert_equal({'region' =>{'ids'=>[]}, 'query_uuid' => 'zzz'}, hash_dst)
|
506
|
+
|
507
|
+
hash_src= {'region' =>{'ids'=>['--']}, 'query_uuid' => 'zzz'}
|
508
|
+
hash_dst= {'region' =>{'ids'=>['227','2','3','3'], 'id' => '3'}, 'query_uuid' => 'zzz'}
|
509
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
510
|
+
assert_equal({'region' =>{'ids'=>[], 'id'=>'3'}, 'query_uuid' => 'zzz'}, hash_dst)
|
511
|
+
|
512
|
+
hash_src= {'region' =>{'ids'=>['--']}, 'query_uuid' => 'zzz'}
|
513
|
+
hash_dst= {'region' =>{'muni_city_id' => '2244', 'ids'=>['227','2','3','3'], 'id'=>'3'}, 'query_uuid' => 'zzz'}
|
514
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
515
|
+
assert_equal({'region' =>{'muni_city_id' => '2244', 'ids'=>[], 'id'=>'3'}, 'query_uuid' => 'zzz'}, hash_dst)
|
516
|
+
|
517
|
+
hash_src= {'region' =>{'ids'=>['--'], 'id' => '5'}, 'query_uuid' => 'zzz'}
|
518
|
+
hash_dst= {'region' =>{'muni_city_id' => '2244', 'ids'=>['227','2','3','3'], 'id'=>'3'}, 'query_uuid' => 'zzz'}
|
519
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
520
|
+
assert_equal({'region' =>{'muni_city_id' => '2244', 'ids'=>[], 'id'=>'5'}, 'query_uuid' => 'zzz'}, hash_dst)
|
521
|
+
|
522
|
+
hash_src= {'region' =>{'ids'=>['--', '227'], 'id' => '5'}, 'query_uuid' => 'zzz'}
|
523
|
+
hash_dst= {'region' =>{'muni_city_id' => '2244', 'ids'=>['227','2','3','3'], 'id'=>'3'}, 'query_uuid' => 'zzz'}
|
524
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
525
|
+
assert_equal({'region' =>{'muni_city_id' => '2244', 'ids'=>['227'], 'id'=>'5'}, 'query_uuid' => 'zzz'}, hash_dst)
|
526
|
+
|
527
|
+
hash_src= {'region' =>{'muni_city_id' => '--', 'ids'=>'--', 'id'=>'5'}, 'query_uuid' => 'zzz'}
|
528
|
+
hash_dst= {'region' =>{'muni_city_id' => '2244', 'ids'=>['227','2','3','3'], 'id'=>'3'}, 'query_uuid' => 'zzz'}
|
529
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
530
|
+
assert_equal({'region' =>{'muni_city_id' => '', 'ids'=>'', 'id'=>'5'}, 'query_uuid' => 'zzz'}, hash_dst)
|
531
|
+
|
532
|
+
hash_src= {'region' =>{'muni_city_id' => '--', 'ids'=>['--'], 'id'=>'5'}, 'query_uuid' => 'zzz'}
|
533
|
+
hash_dst= {'region' =>{'muni_city_id' => '2244', 'ids'=>['227','2','3','3'], 'id'=>'3'}, 'query_uuid' => 'zzz'}
|
534
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
535
|
+
assert_equal({'region' =>{'muni_city_id' => '', 'ids'=>[], 'id'=>'5'}, 'query_uuid' => 'zzz'}, hash_dst)
|
536
|
+
|
537
|
+
hash_src= {'region' =>{'muni_city_id' => '--', 'ids'=>['--','227'], 'id'=>'5'}, 'query_uuid' => 'zzz'}
|
538
|
+
hash_dst= {'region' =>{'muni_city_id' => '2244', 'ids'=>['227','2','3','3'], 'id'=>'3'}, 'query_uuid' => 'zzz'}
|
539
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
540
|
+
assert_equal({'region' =>{'muni_city_id' => '', 'ids'=>['227'], 'id'=>'5'}, 'query_uuid' => 'zzz'}, hash_dst)
|
541
|
+
|
542
|
+
hash_src = {"muni_city_id"=>"--", "id"=>""}
|
543
|
+
hash_dst = {"muni_city_id"=>"", "id"=>""}
|
544
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
545
|
+
assert_equal({"muni_city_id"=>"", "id"=>""}, hash_dst)
|
546
|
+
|
547
|
+
hash_src = {"region"=>{"muni_city_id"=>"--", "id"=>""}}
|
548
|
+
hash_dst = {"region"=>{"muni_city_id"=>"", "id"=>""}}
|
549
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
550
|
+
assert_equal({"region"=>{"muni_city_id"=>"", "id"=>""}}, hash_dst)
|
551
|
+
|
552
|
+
hash_src = {"query_uuid"=>"a0dc3c84-ec7f-6756-bdb0-fff9157438ab", "url_regions"=>[], "region"=>{"muni_city_id"=>"--", "id"=>""}, "property"=>{"property_type_id"=>"", "search_rate_min"=>"", "search_rate_max"=>""}, "task"=>"search", "run_query"=>"Search"}
|
553
|
+
hash_dst = {"query_uuid"=>"a0dc3c84-ec7f-6756-bdb0-fff9157438ab", "url_regions"=>[], "region"=>{"muni_city_id"=>"", "id"=>""}, "property"=>{"property_type_id"=>"", "search_rate_min"=>"", "search_rate_max"=>""}, "task"=>"search", "run_query"=>"Search"}
|
554
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:knockout_prefix => '--', :unpack_arrays => ","})
|
555
|
+
assert_equal({"query_uuid"=>"a0dc3c84-ec7f-6756-bdb0-fff9157438ab", "url_regions"=>[], "region"=>{"muni_city_id"=>"", "id"=>""}, "property"=>{"property_type_id"=>"", "search_rate_min"=>"", "search_rate_max"=>""}, "task"=>"search", "run_query"=>"Search"}, hash_dst)
|
556
|
+
|
557
|
+
# hash of array of hashes
|
558
|
+
hash_src = {"item" => [{"1" => "3"}, {"2" => "4"}]}
|
559
|
+
hash_dst = {"item" => [{"3" => "5"}]}
|
560
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
561
|
+
assert_equal({"item" => [{"3" => "5"}, {"1" => "3"}, {"2" => "4"}]}, hash_dst)
|
562
|
+
|
563
|
+
######################################
|
564
|
+
# tests for "merge_hash_arrays" option
|
565
|
+
|
566
|
+
hash_src = {"item" => [{"1" => "3"}]}
|
567
|
+
hash_dst = {"item" => [{"3" => "5"}]}
|
568
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:merge_hash_arrays => true})
|
569
|
+
assert_equal({"item" => [{"3" => "5", "1" => "3"}]}, hash_dst)
|
570
|
+
|
571
|
+
hash_src = {"item" => [{"1" => "3"}, {"2" => "4"}]}
|
572
|
+
hash_dst = {"item" => [{"3" => "5"}]}
|
573
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:merge_hash_arrays => true})
|
574
|
+
assert_equal({"item" => [{"3" => "5", "1" => "3"}, {"2" => "4"}]}, hash_dst)
|
575
|
+
|
576
|
+
hash_src = {"item" => [{"1" => "3"}]}
|
577
|
+
hash_dst = {"item" => [{"3" => "5"}, {"2" => "4"}]}
|
578
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:merge_hash_arrays => true})
|
579
|
+
assert_equal({"item" => [{"3" => "5", "1" => "3"}, {"2" => "4"}]}, hash_dst)
|
580
|
+
|
581
|
+
# if arrays contain non-hash objects, the :merge_hash_arrays option has
|
582
|
+
# no effect.
|
583
|
+
hash_src = {"item" => [{"1" => "3"}, "str"]} # contains "str", non-hash
|
584
|
+
hash_dst = {"item" => [{"3" => "5"}]}
|
585
|
+
DeepMerge::deep_merge!(hash_src, hash_dst, {:merge_hash_arrays => true})
|
586
|
+
assert_equal({"item" => [{"3" => "5"}, {"1" => "3"}, "str"]}, hash_dst)
|
587
|
+
|
588
|
+
# Merging empty strings
|
589
|
+
s1, s2 = "hello", ""
|
590
|
+
[s1, s2].each { |s| s.extend StringBlank }
|
591
|
+
hash_dst = {"item" => s1 }
|
592
|
+
hash_src = {"item" => s2 }
|
593
|
+
DeepMerge::deep_merge!(hash_src, hash_dst)
|
594
|
+
assert_equal({"item" => ""}, hash_dst)
|
595
|
+
end # test_deep_merge
|
596
|
+
end
|