Why is our testing fixtures such a mess? It took me half an hour to find a useable node. And I'm still not sure if it's ok, since I want to get to bed. kthxbye
id: 4
node_id: 15
sequence_id: 1
id: 4
node_id: 15
sequence_id: 1
+
+w5_n1:
+ id: 5
+ node_id: 4
+ sequence_id: 1
+
+w5_n2:
+ id: 5
+ node_id: 4
+ sequence_id: 2
timestamp: 2008-01-01 00:04:00
visible: true
version: 4
timestamp: 2008-01-01 00:04:00
visible: true
version: 4
+
+way_with_duplicate_nodes:
+ id: 5
+ changeset_id: 2
+ timestamp: 2007-01-01 00:00:00
+ visible: true
+ version: 1
node_id: 15
sequence_id: 1
version: 4
node_id: 15
sequence_id: 1
version: 4
+
+w5_n1:
+ id: 5
+ node_id: 4
+ sequence_id: 1
+ version: 1
+
+w5_n2:
+ id: 5
+ node_id: 4
+ sequence_id: 2
+ version: 1
+way_with_duplicate_nodes:
+ id: 5
+ changeset_id: 2
+ timestamp: 2007-01-01 00:00:00
+ visible: true
+ version: 1
assert_select "osm way[id=#{way.id}][version=#{way.version}][visible=#{way.visible}]", 1
# check that each node in the way appears once in the output as a
assert_select "osm way[id=#{way.id}][version=#{way.version}][visible=#{way.visible}]", 1
# check that each node in the way appears once in the output as a
- # reference and as the node element. note the slightly dodgy assumption
- # that nodes appear only once. this is currently the case with the
- # fixtures, but it doesn't have to be.
+ # reference and as the node element.
- assert_select "osm way nd[ref=#{n.id}]", 1
+ count = (way.nodes - (way.nodes - [n])).length
+ assert_select "osm way nd[ref=#{n.id}]", count
assert_select "osm node[id=#{n.id}][version=#{n.version}][lat=#{n.lat}][lon=#{n.lon}]", 1
end
end
assert_select "osm node[id=#{n.id}][version=#{n.version}][lat=#{n.lat}][lon=#{n.lon}]", 1
end
end
api_fixtures
def test_way_nodes_count
api_fixtures
def test_way_nodes_count
- assert_equal 4, WayNode.count
+ assert_equal 6, WayNode.count
# Check that we have the correct number of currnet ways in the db
# This will need to updated whenever the current_ways.yml is updated
def test_db_count
# Check that we have the correct number of currnet ways in the db
# This will need to updated whenever the current_ways.yml is updated
def test_db_count
- assert_equal 4, Way.count
+ assert_equal 5, Way.count