]> git.openstreetmap.org Git - rails.git/blob - test/models/node_test.rb
Use the user factory to generate login details.
[rails.git] / test / models / node_test.rb
1 require "test_helper"
2
3 class NodeTest < ActiveSupport::TestCase
4   api_fixtures
5
6   def test_node_too_far_north
7     node = build(:node, :latitude => 90.01 * OldNode::SCALE)
8     assert_equal false, node.valid?
9   end
10
11   def test_node_north_limit
12     node = build(:node, :latitude => 90 * OldNode::SCALE)
13     assert node.valid?
14   end
15
16   def test_node_too_far_south
17     node = build(:node, :latitude => -90.01 * OldNode::SCALE)
18     assert_equal false, node.valid?
19   end
20
21   def test_node_south_limit
22     node = build(:node, :latitude => -90 * OldNode::SCALE)
23     assert node.valid?
24   end
25
26   def test_node_too_far_west
27     node = build(:node, :longitude => -180.01 * OldNode::SCALE)
28     assert_equal false, node.valid?
29   end
30
31   def test_node_west_limit
32     node = build(:node, :longitude => -180 * OldNode::SCALE)
33     assert node.valid?
34   end
35
36   def test_node_too_far_east
37     node = build(:node, :longitude => 180.01 * OldNode::SCALE)
38     assert_equal false, node.valid?
39   end
40
41   def test_node_east_limit
42     node = build(:node, :longitude => 180 * OldNode::SCALE)
43     assert node.valid?
44   end
45
46   def test_totally_wrong
47     node = build(:node, :latitude => 200 * OldNode::SCALE, :longitude => 200 * OldNode::SCALE)
48     assert_equal false, node.valid?
49   end
50
51   def test_lat_lon
52     node = build(:node, :latitude => 12.345 * OldNode::SCALE, :longitude => 34.567 * OldNode::SCALE)
53
54     assert_in_delta 12.345, node.lat, 0.0000001
55     assert_in_delta 34.567, node.lon, 0.0000001
56
57     node.lat = 54.321
58     node.lon = 76.543
59
60     assert_in_delta 54.321 * OldNode::SCALE, node.latitude, 0.000001
61     assert_in_delta 76.543 * OldNode::SCALE, node.longitude, 0.000001
62   end
63
64   # Ensure the lat/lon is formatted as a decimal e.g. not 4.0e-05
65   def test_lat_lon_xml_format
66     node = build(:node, :latitude => 0.00004 * OldNode::SCALE, :longitude => 0.00008 * OldNode::SCALE)
67
68     assert_match /lat="0.0000400"/, node.to_xml.to_s
69     assert_match /lon="0.0000800"/, node.to_xml.to_s
70   end
71
72   # Check that you can create a node and store it
73   def test_create
74     changeset = create(:changeset)
75     node_template = Node.new(
76       :latitude => 12.3456,
77       :longitude => 65.4321,
78       :changeset_id => changeset.id,
79       :visible => 1,
80       :version => 1
81     )
82     assert node_template.create_with_history(changeset.user)
83
84     node = Node.find(node_template.id)
85     assert_not_nil node
86     assert_equal node_template.latitude, node.latitude
87     assert_equal node_template.longitude, node.longitude
88     assert_equal node_template.changeset_id, node.changeset_id
89     assert_equal node_template.visible, node.visible
90     assert_equal node_template.timestamp.to_i, node.timestamp.to_i
91
92     assert_equal OldNode.where(:node_id => node_template.id).count, 1
93     old_node = OldNode.where(:node_id => node_template.id).first
94     assert_not_nil old_node
95     assert_equal node_template.latitude, old_node.latitude
96     assert_equal node_template.longitude, old_node.longitude
97     assert_equal node_template.changeset_id, old_node.changeset_id
98     assert_equal node_template.visible, old_node.visible
99     assert_equal node_template.tags, old_node.tags
100     assert_equal node_template.timestamp.to_i, old_node.timestamp.to_i
101   end
102
103   def test_update
104     node = create(:node)
105     create(:old_node, :node_id => node.id, :version => 1)
106     node_template = Node.find(node.id)
107
108     assert_not_nil node_template
109     assert_equal OldNode.where(:node_id => node_template.id).count, 1
110     assert_not_nil node
111
112     node_template.latitude = 12.3456
113     node_template.longitude = 65.4321
114     # node_template.tags = "updated=yes"
115     assert node.update_from(node_template, node.changeset.user)
116
117     node = Node.find(node_template.id)
118     assert_not_nil node
119     assert_equal node_template.latitude, node.latitude
120     assert_equal node_template.longitude, node.longitude
121     assert_equal node_template.changeset_id, node.changeset_id
122     assert_equal node_template.visible, node.visible
123     # assert_equal node_template.tags, node.tags
124
125     assert_equal OldNode.where(:node_id => node_template.id).count, 2
126     old_node = OldNode.where(:node_id => node_template.id, :version => 2).first
127     assert_not_nil old_node
128     assert_equal node_template.latitude, old_node.latitude
129     assert_equal node_template.longitude, old_node.longitude
130     assert_equal node_template.changeset_id, old_node.changeset_id
131     assert_equal node_template.visible, old_node.visible
132     # assert_equal node_template.tags, old_node.tags
133   end
134
135   def test_delete
136     node = create(:node)
137     create(:old_node, :node_id => node.id, :version => 1)
138     node_template = Node.find(node.id)
139
140     assert_not_nil node_template
141     assert_equal OldNode.where(:node_id => node_template.id).count, 1
142     assert_not_nil node
143
144     assert node.delete_with_history!(node_template, node.changeset.user)
145
146     node = Node.find(node_template.id)
147     assert_not_nil node
148     assert_equal node_template.latitude, node.latitude
149     assert_equal node_template.longitude, node.longitude
150     assert_equal node_template.changeset_id, node.changeset_id
151     assert_equal false, node.visible
152     # assert_equal node_template.tags, node.tags
153
154     assert_equal OldNode.where(:node_id => node_template.id).count, 2
155     old_node = OldNode.where(:node_id => node_template.id, :version => 2).first
156     assert_not_nil old_node
157     assert_equal node_template.latitude, old_node.latitude
158     assert_equal node_template.longitude, old_node.longitude
159     assert_equal node_template.changeset_id, old_node.changeset_id
160     assert_equal false, old_node.visible
161     # assert_equal node_template.tags, old_node.tags
162   end
163
164   def test_from_xml_no_id
165     lat = 56.7
166     lon = -2.3
167     changeset = 2
168     version = 1
169     noid = "<osm><node lat='#{lat}' lon='#{lon}' changeset='#{changeset}' version='#{version}' /></osm>"
170     # First try a create which doesn't need the id
171     assert_nothing_raised(OSM::APIBadXMLError) do
172       Node.from_xml(noid, true)
173     end
174     # Now try an update with no id, and make sure that it gives the appropriate exception
175     message = assert_raise(OSM::APIBadXMLError) do
176       Node.from_xml(noid, false)
177     end
178     assert_match /ID is required when updating./, message.message
179   end
180
181   def test_from_xml_no_lat
182     nolat = "<osm><node id='1' lon='23.3' changeset='2' version='23' /></osm>"
183     message_create = assert_raise(OSM::APIBadXMLError) do
184       Node.from_xml(nolat, true)
185     end
186     assert_match /lat missing/, message_create.message
187     message_update = assert_raise(OSM::APIBadXMLError) do
188       Node.from_xml(nolat, false)
189     end
190     assert_match /lat missing/, message_update.message
191   end
192
193   def test_from_xml_no_lon
194     nolon = "<osm><node id='1' lat='23.1' changeset='2' version='23' /></osm>"
195     message_create = assert_raise(OSM::APIBadXMLError) do
196       Node.from_xml(nolon, true)
197     end
198     assert_match /lon missing/, message_create.message
199     message_update = assert_raise(OSM::APIBadXMLError) do
200       Node.from_xml(nolon, false)
201     end
202     assert_match /lon missing/, message_update.message
203   end
204
205   def test_from_xml_no_changeset_id
206     nocs = "<osm><node id='123' lon='23.23' lat='23.1' version='23' /></osm>"
207     message_create = assert_raise(OSM::APIBadXMLError) do
208       Node.from_xml(nocs, true)
209     end
210     assert_match /Changeset id is missing/, message_create.message
211     message_update = assert_raise(OSM::APIBadXMLError) do
212       Node.from_xml(nocs, false)
213     end
214     assert_match /Changeset id is missing/, message_update.message
215   end
216
217   def test_from_xml_no_version
218     no_version = "<osm><node id='123' lat='23' lon='23' changeset='23' /></osm>"
219     assert_nothing_raised(OSM::APIBadXMLError) do
220       Node.from_xml(no_version, true)
221     end
222     message_update = assert_raise(OSM::APIBadXMLError) do
223       Node.from_xml(no_version, false)
224     end
225     assert_match /Version is required when updating/, message_update.message
226   end
227
228   def test_from_xml_double_lat
229     nocs = "<osm><node id='123' lon='23.23' lat='23.1' lat='12' changeset='23' version='23' /></osm>"
230     message_create = assert_raise(OSM::APIBadXMLError) do
231       Node.from_xml(nocs, true)
232     end
233     assert_match /Fatal error: Attribute lat redefined at/, message_create.message
234     message_update = assert_raise(OSM::APIBadXMLError) do
235       Node.from_xml(nocs, false)
236     end
237     assert_match /Fatal error: Attribute lat redefined at/, message_update.message
238   end
239
240   def test_from_xml_id_zero
241     id_list = ["", "0", "00", "0.0", "a"]
242     id_list.each do |id|
243       zero_id = "<osm><node id='#{id}' lat='12.3' lon='12.3' changeset='33' version='23' /></osm>"
244       assert_nothing_raised(OSM::APIBadUserInput) do
245         Node.from_xml(zero_id, true)
246       end
247       message_update = assert_raise(OSM::APIBadUserInput) do
248         Node.from_xml(zero_id, false)
249       end
250       assert_match /ID of node cannot be zero when updating/, message_update.message
251     end
252   end
253
254   def test_from_xml_no_text
255     no_text = ""
256     message_create = assert_raise(OSM::APIBadXMLError) do
257       Node.from_xml(no_text, true)
258     end
259     assert_match /Must specify a string with one or more characters/, message_create.message
260     message_update = assert_raise(OSM::APIBadXMLError) do
261       Node.from_xml(no_text, false)
262     end
263     assert_match /Must specify a string with one or more characters/, message_update.message
264   end
265
266   def test_from_xml_no_node
267     no_node = "<osm></osm>"
268     message_create = assert_raise(OSM::APIBadXMLError) do
269       Node.from_xml(no_node, true)
270     end
271     assert_match %r{XML doesn't contain an osm/node element}, message_create.message
272     message_update = assert_raise(OSM::APIBadXMLError) do
273       Node.from_xml(no_node, false)
274     end
275     assert_match %r{XML doesn't contain an osm/node element}, message_update.message
276   end
277
278   def test_from_xml_no_k_v
279     nokv = "<osm><node id='23' lat='12.3' lon='23.4' changeset='12' version='23'><tag /></node></osm>"
280     message_create = assert_raise(OSM::APIBadXMLError) do
281       Node.from_xml(nokv, true)
282     end
283     assert_match /tag is missing key/, message_create.message
284     message_update = assert_raise(OSM::APIBadXMLError) do
285       Node.from_xml(nokv, false)
286     end
287     assert_match /tag is missing key/, message_update.message
288   end
289
290   def test_from_xml_no_v
291     no_v = "<osm><node id='23' lat='23.43' lon='23.32' changeset='23' version='32'><tag k='key' /></node></osm>"
292     message_create = assert_raise(OSM::APIBadXMLError) do
293       Node.from_xml(no_v, true)
294     end
295     assert_match /tag is missing value/, message_create.message
296     message_update = assert_raise(OSM::APIBadXMLError) do
297       Node.from_xml(no_v, false)
298     end
299     assert_match /tag is missing value/, message_update.message
300   end
301
302   def test_from_xml_duplicate_k
303     dupk = "<osm><node id='23' lat='23.2' lon='23' changeset='34' version='23'><tag k='dup' v='test' /><tag k='dup' v='tester' /></node></osm>"
304     message_create = assert_raise(OSM::APIDuplicateTagsError) do
305       Node.from_xml(dupk, true)
306     end
307     assert_equal "Element node/ has duplicate tags with key dup", message_create.message
308     message_update = assert_raise(OSM::APIDuplicateTagsError) do
309       Node.from_xml(dupk, false)
310     end
311     assert_equal "Element node/23 has duplicate tags with key dup", message_update.message
312   end
313
314   def test_node_tags
315     node = create(:node)
316     taglist = create_list(:node_tag, 2, :node => node)
317     tags = Node.find(node.id).node_tags.order(:k)
318     assert_equal taglist.count, tags.count
319     taglist.sort_by!(&:k).each_index do |i|
320       assert_equal taglist[i].k, tags[i].k
321       assert_equal taglist[i].v, tags[i].v
322     end
323   end
324
325   def test_tags
326     node = create(:node)
327     taglist = create_list(:node_tag, 2, :node => node)
328     tags = Node.find(node.id).tags
329     assert_equal taglist.count, tags.count
330     taglist.each do |tag|
331       assert_equal tag.v, tags[tag.k]
332     end
333   end
334
335   def test_containing_relation_members
336     node = create(:node)
337     relation_member1 = create(:relation_member, :member => node)
338     relation_member2 = create(:relation_member, :member => node)
339     relation_member3 = create(:relation_member, :member => node)
340     crm = Node.find(node.id).containing_relation_members.order(:relation_id)
341     #    assert_equal 3, crm.size
342     assert_equal relation_member1.relation_id, crm.first.relation_id
343     assert_equal "Node", crm.first.member_type
344     assert_equal node.id, crm.first.member_id
345     assert_equal relation_member1.relation_id, crm.first.relation.id
346     assert_equal relation_member2.relation_id, crm.second.relation_id
347     assert_equal "Node", crm.second.member_type
348     assert_equal node.id, crm.second.member_id
349     assert_equal relation_member2.relation_id, crm.second.relation.id
350     assert_equal relation_member3.relation_id, crm.third.relation_id
351     assert_equal "Node", crm.third.member_type
352     assert_equal node.id, crm.third.member_id
353     assert_equal relation_member3.relation_id, crm.third.relation.id
354   end
355
356   def test_containing_relations
357     node = create(:node)
358     relation_member1 = create(:relation_member, :member => node)
359     relation_member2 = create(:relation_member, :member => node)
360     relation_member3 = create(:relation_member, :member => node)
361     cr = Node.find(node.id).containing_relations.order(:id)
362
363     assert_equal 3, cr.size
364     assert_equal relation_member1.relation.id, cr.first.id
365     assert_equal relation_member2.relation.id, cr.second.id
366     assert_equal relation_member3.relation.id, cr.third.id
367   end
368 end