X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/02fbcf5f06917d7dea546b90932da82b8ed29d2a..c8b70c1c7279b4ddaf4910c77b6dbc237c0c67e1:/test/unit/way_test.rb diff --git a/test/unit/way_test.rb b/test/unit/way_test.rb index cd565fd27..584a30daa 100644 --- a/test/unit/way_test.rb +++ b/test/unit/way_test.rb @@ -3,6 +3,13 @@ require File.dirname(__FILE__) + '/../test_helper' class WayTest < Test::Unit::TestCase api_fixtures + + # 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 + end + def test_bbox node = current_nodes(:used_node_1) [ :visible_way, @@ -13,4 +20,21 @@ class WayTest < Test::Unit::TestCase end end + # Check that the preconditions fail when you are over the defined limit of + # the maximum number of nodes in each way. + def test_max_nodes_per_way_limit + # Take one of the current ways and add nodes to it until we are near the limit + way = Way.find(current_ways(:visible_way).id) + assert way.valid? + # it already has 1 node + 1.upto((APP_CONFIG['max_number_of_way_nodes'])/2) { + way.add_nd_num(current_nodes(:used_node_1).id) + way.add_nd_num(current_nodes(:used_node_2).id) + } + way.save + #print way.nds.size + assert way.valid? + way.add_nd_num(current_nodes(:visible_node).id) + assert way.valid? + end end