Adding some more unit test stubs that need filling out. Adding changeset tags fixture. Indentation fix in way model.

This commit is contained in:
Shaun McDonald 2008-11-14 02:06:04 +00:00
parent bdd5c317a7
commit c8b70c1c72
7 changed files with 74 additions and 1 deletions

4
test/fixtures/changeset_tags.yml vendored Normal file
View file

@ -0,0 +1,4 @@
changeset_1_tag_1:
id: 1
k: created_by
v: test suite yml

View file

@ -0,0 +1,11 @@
require File.dirname(__FILE__) + '/../test_helper'
class ChangesetTagTest < Test::Unit::TestCase
fixtures :changeset_tags
def test_changeset_tags_count
assert_equal 1, ChangesetTag.count
end
end

View file

@ -0,0 +1,11 @@
require File.dirname(__FILE__) + '/../test_helper'
class ChangesetTest < Test::Unit::TestCase
fixtures :changesets
def test_changeset_count
assert_equal 5, Changeset.count
end
end

View file

@ -0,0 +1,12 @@
require File.dirname(__FILE__) + '/../test_helper'
class WayNodeTest < Test::Unit::TestCase
fixtures :way_nodes
set_fixture_class :way_nodes=>OldWayNode
set_fixture_class :current_way_nodes=>WayNode
def test_way_nodes_count
assert_equal 4, WayNode.count
end
end

11
test/unit/way_tag_test.rb Normal file
View file

@ -0,0 +1,11 @@
require File.dirname(__FILE__) + '/../test_helper'
class WayTagTest < Test::Unit::TestCase
fixtures :way_tags
def test_way_tag_count
assert_equal 3, WayTag.count
end
end

View file

@ -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