1 require File.dirname(__FILE__) + '/../test_helper'
3 class NodeTest < ActiveSupport::TestCase
7 assert_equal 16, Node.count
10 def test_node_too_far_north
11 invalid_node_test(:node_too_far_north)
14 def test_node_north_limit
15 valid_node_test(:node_north_limit)
18 def test_node_too_far_south
19 invalid_node_test(:node_too_far_south)
22 def test_node_south_limit
23 valid_node_test(:node_south_limit)
26 def test_node_too_far_west
27 invalid_node_test(:node_too_far_west)
30 def test_node_west_limit
31 valid_node_test(:node_west_limit)
34 def test_node_too_far_east
35 invalid_node_test(:node_too_far_east)
38 def test_node_east_limit
39 valid_node_test(:node_east_limit)
42 def test_totally_wrong
43 invalid_node_test(:node_totally_wrong)
46 # This helper method will check to make sure that a node is within the world, and
47 # has the the same lat, lon and timestamp than what was put into the db by
49 def valid_node_test(nod)
50 node = current_nodes(nod)
51 dbnode = Node.find(node.id)
52 assert_equal dbnode.lat, node.latitude.to_f/SCALE
53 assert_equal dbnode.lon, node.longitude.to_f/SCALE
54 assert_equal dbnode.changeset_id, node.changeset_id
55 assert_equal dbnode.timestamp, node.timestamp
56 assert_equal dbnode.version, node.version
57 assert_equal dbnode.visible, node.visible
58 #assert_equal node.tile, QuadTile.tile_for_point(node.lat, node.lon)
62 # This helper method will check to make sure that a node is outwith the world,
63 # and has the same lat, lon and timesamp than what was put into the db by the
65 def invalid_node_test(nod)
66 node = current_nodes(nod)
67 dbnode = Node.find(node.id)
68 assert_equal dbnode.lat, node.latitude.to_f/SCALE
69 assert_equal dbnode.lon, node.longitude.to_f/SCALE
70 assert_equal dbnode.changeset_id, node.changeset_id
71 assert_equal dbnode.timestamp, node.timestamp
72 assert_equal dbnode.version, node.version
73 assert_equal dbnode.visible, node.visible
74 #assert_equal node.tile, QuadTile.tile_for_point(node.lat, node.lon)
75 assert_equal false, dbnode.valid?
78 # Check that you can create a node and store it
80 node_template = Node.new(:latitude => 12.3456,
81 :longitude => 65.4321,
82 :changeset_id => changesets(:normal_user_first_change).id,
85 assert node_template.create_with_history(users(:normal_user))
87 node = Node.find(node_template.id)
89 assert_equal node_template.latitude, node.latitude
90 assert_equal node_template.longitude, node.longitude
91 assert_equal node_template.changeset_id, node.changeset_id
92 assert_equal node_template.visible, node.visible
93 assert_equal node_template.timestamp.to_i, node.timestamp.to_i
95 assert_equal OldNode.find(:all, :conditions => [ "id = ?", node_template.id ]).length, 1
96 old_node = OldNode.find(:first, :conditions => [ "id = ?", node_template.id ])
97 assert_not_nil old_node
98 assert_equal node_template.latitude, old_node.latitude
99 assert_equal node_template.longitude, old_node.longitude
100 assert_equal node_template.changeset_id, old_node.changeset_id
101 assert_equal node_template.visible, old_node.visible
102 assert_equal node_template.tags, old_node.tags
103 assert_equal node_template.timestamp.to_i, old_node.timestamp.to_i
107 node_template = Node.find(current_nodes(:visible_node).id)
108 assert_not_nil node_template
110 assert_equal OldNode.find(:all, :conditions => [ "id = ?", node_template.id ]).length, 1
111 old_node_template = OldNode.find(:first, :conditions => [ "id = ?", node_template.id ])
112 assert_not_nil old_node_template
114 node_template.latitude = 12.3456
115 node_template.longitude = 65.4321
116 #node_template.tags = "updated=yes"
117 assert node_template.update_from(old_node_template, users(:normal_user))
119 node = Node.find(node_template.id)
121 assert_equal node_template.latitude, node.latitude
122 assert_equal node_template.longitude, node.longitude
123 assert_equal node_template.changeset_id, node.changeset_id
124 assert_equal node_template.visible, node.visible
125 #assert_equal node_template.tags, node.tags
126 assert_equal node_template.timestamp.to_i, node.timestamp.to_i
128 assert_equal OldNode.find(:all, :conditions => [ "id = ?", node_template.id ]).length, 2
129 assert_equal OldNode.find(:all, :conditions => [ "id = ? and timestamp = ?", node_template.id, node_template.timestamp ]).length, 1
130 old_node = OldNode.find(:first, :conditions => [ "id = ? and timestamp = ?", node_template.id, node_template.timestamp ])
131 assert_not_nil old_node
132 assert_equal node_template.latitude, old_node.latitude
133 assert_equal node_template.longitude, old_node.longitude
134 assert_equal node_template.changeset_id, old_node.changeset_id
135 assert_equal node_template.visible, old_node.visible
136 #assert_equal node_template.tags, old_node.tags
137 assert_equal node_template.timestamp.to_i, old_node.timestamp.to_i
141 node_template = Node.find(current_nodes(:visible_node))
142 assert_not_nil node_template
144 assert_equal OldNode.find(:all, :conditions => [ "id = ?", node_template.id ]).length, 1
145 old_node_template = OldNode.find(:first, :conditions => [ "id = ?", node_template.id ])
146 assert_not_nil old_node_template
148 assert node_template.delete_with_history!(old_node_template, users(:normal_user))
150 node = Node.find(node_template.id)
152 assert_equal node_template.latitude, node.latitude
153 assert_equal node_template.longitude, node.longitude
154 assert_equal node_template.changeset_id, node.changeset_id
155 assert_equal node_template.visible, node.visible
156 #assert_equal node_template.tags, node.tags
157 assert_equal node_template.timestamp.to_i, node.timestamp.to_i
159 assert_equal OldNode.find(:all, :conditions => [ "id = ?", node_template.id ]).length, 2
160 assert_equal OldNode.find(:all, :conditions => [ "id = ? and timestamp = ?", node_template.id, node_template.timestamp ]).length, 1
161 old_node = OldNode.find(:first, :conditions => [ "id = ? and timestamp = ?", node_template.id, node_template.timestamp ])
162 assert_not_nil old_node
163 assert_equal node_template.latitude, old_node.latitude
164 assert_equal node_template.longitude, old_node.longitude
165 assert_equal node_template.changeset_id, old_node.changeset_id
166 assert_equal node_template.visible, old_node.visible
167 #assert_equal node_template.tags, old_node.tags
168 assert_equal node_template.timestamp.to_i, old_node.timestamp.to_i
171 def test_from_xml_no_id
176 noid = "<osm><node lat='#{lat}' lon='#{lon}' changeset='#{changeset}' version='#{version}' /></osm>"
177 # First try a create which doesn't need the id
178 assert_nothing_raised(OSM::APIBadXMLError) {
179 Node.from_xml(noid, true)
181 # Now try an update with no id, and make sure that it gives the appropriate exception
182 message = assert_raise(OSM::APIBadXMLError) {
183 Node.from_xml(noid, false)
185 assert_match /ID is required when updating./, message.message
188 def test_from_xml_no_lat
189 nolat = "<osm><node id='1' lon='23.3' changeset='2' version='23' /></osm>"
190 message_create = assert_raise(OSM::APIBadXMLError) {
191 Node.from_xml(nolat, true)
193 assert_match /lat missing/, message_create.message
194 message_update = assert_raise(OSM::APIBadXMLError) {
195 Node.from_xml(nolat, false)
197 assert_match /lat missing/, message_update.message
200 def test_from_xml_no_lon
201 nolon = "<osm><node id='1' lat='23.1' changeset='2' version='23' /></osm>"
202 message_create = assert_raise(OSM::APIBadXMLError) {
203 Node.from_xml(nolon, true)
205 assert_match /lon missing/, message_create.message
206 message_update = assert_raise(OSM::APIBadXMLError) {
207 Node.from_xml(nolon, false)
209 assert_match /lon missing/, message_update.message
212 def test_from_xml_no_changeset_id
213 nocs = "<osm><node id='123' lon='23.23' lat='23.1' version='23' /></osm>"
214 message_create = assert_raise(OSM::APIBadXMLError) {
215 Node.from_xml(nocs, true)
217 assert_match /Changeset id is missing/, message_create.message
218 message_update = assert_raise(OSM::APIBadXMLError) {
219 Node.from_xml(nocs, false)
221 assert_match /Changeset id is missing/, message_update.message
224 def test_from_xml_no_version
225 no_version = "<osm><node id='123' lat='23' lon='23' changeset='23' /></osm>"
226 assert_nothing_raised(OSM::APIBadXMLError) {
227 Node.from_xml(no_version, true)
229 message_update = assert_raise(OSM::APIBadXMLError) {
230 Node.from_xml(no_version, false)
232 assert_match /Version is required when updating/, message_update.message
235 def test_from_xml_double_lat
236 nocs = "<osm><node id='123' lon='23.23' lat='23.1' lat='12' changeset='23' version='23' /></osm>"
237 message_create = assert_raise(OSM::APIBadXMLError) {
238 Node.from_xml(nocs, true)
240 assert_match /Fatal error: Attribute lat redefined at/, message_create.message
241 message_update = assert_raise(OSM::APIBadXMLError) {
242 Node.from_xml(nocs, false)
244 assert_match /Fatal error: Attribute lat redefined at/, message_update.message
247 def test_from_xml_id_zero
248 id_list = ["", "0", "00", "0.0", "a"]
250 zero_id = "<osm><node id='#{id}' lat='12.3' lon='12.3' changeset='33' version='23' /></osm>"
251 assert_nothing_raised(OSM::APIBadUserInput) {
252 Node.from_xml(zero_id, true)
254 message_update = assert_raise(OSM::APIBadUserInput) {
255 Node.from_xml(zero_id, false)
257 assert_match /ID of node cannot be zero when updating/, message_update.message
261 def test_from_xml_no_text
263 message_create = assert_raise(OSM::APIBadXMLError) {
264 Node.from_xml(no_text, true)
266 assert_match /Must specify a string with one or more characters/, message_create.message
267 message_update = assert_raise(OSM::APIBadXMLError) {
268 Node.from_xml(no_text, false)
270 assert_match /Must specify a string with one or more characters/, message_update.message
273 def test_from_xml_no_node
274 no_node = "<osm></osm>"
275 message_create = assert_raise(OSM::APIBadXMLError) {
276 Node.from_xml(no_node, true)
278 assert_match /XML doesn't contain an osm\/node element/, message_create.message
279 message_update = assert_raise(OSM::APIBadXMLError) {
280 Node.from_xml(no_node, false)
282 assert_match /XML doesn't contain an osm\/node element/, message_update.message
285 def test_from_xml_no_k_v
286 nokv = "<osm><node id='23' lat='12.3' lon='23.4' changeset='12' version='23'><tag /></node></osm>"
287 message_create = assert_raise(OSM::APIBadXMLError) {
288 Node.from_xml(nokv, true)
290 assert_match /tag is missing key/, message_create.message
291 message_update = assert_raise(OSM::APIBadXMLError) {
292 Node.from_xml(nokv, false)
294 assert_match /tag is missing key/, message_update.message
297 def test_from_xml_no_v
298 no_v = "<osm><node id='23' lat='23.43' lon='23.32' changeset='23' version='32'><tag k='key' /></node></osm>"
299 message_create = assert_raise(OSM::APIBadXMLError) {
300 Node.from_xml(no_v, true)
302 assert_match /tag is missing value/, message_create.message
303 message_update = assert_raise(OSM::APIBadXMLError) {
304 Node.from_xml(no_v, false)
306 assert_match /tag is missing value/, message_update.message
309 def test_from_xml_duplicate_k
310 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>"
311 message_create = assert_raise(OSM::APIDuplicateTagsError) {
312 Node.from_xml(dupk, true)
314 assert_equal "Element node/ has duplicate tags with key dup", message_create.message
315 message_update = assert_raise(OSM::APIDuplicateTagsError) {
316 Node.from_xml(dupk, false)
318 assert_equal "Element node/23 has duplicate tags with key dup", message_update.message